mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-13 20:11:00 +00:00
68 lines
2 KiB
Swift
68 lines
2 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct Identity: Codable, Hashable, Identifiable {
|
|
let id: String
|
|
let url: URL
|
|
let lastUsedAt: Date
|
|
let preferences: Identity.Preferences
|
|
let instance: Identity.Instance?
|
|
let account: Identity.Account?
|
|
}
|
|
|
|
extension Identity {
|
|
struct Instance: Codable, Hashable {
|
|
let uri: String
|
|
let streamingAPI: URL
|
|
let title: String
|
|
let thumbnail: URL?
|
|
}
|
|
|
|
struct Account: Codable, Hashable {
|
|
let id: String
|
|
let identityID: String
|
|
let username: String
|
|
let url: URL
|
|
let avatar: URL
|
|
let avatarStatic: URL
|
|
let header: URL
|
|
let headerStatic: URL
|
|
}
|
|
|
|
struct Preferences: Codable, Hashable {
|
|
var useServerPostingReadingPreferences = true
|
|
var postingDefaultVisibility = Status.Visibility.public
|
|
var postingDefaultSensitive = false
|
|
var postingDefaultLanguage: String?
|
|
var readingExpandMedia = MastodonPreferences.ExpandMedia.default
|
|
var readingExpandSpoilers = false
|
|
}
|
|
}
|
|
|
|
extension Identity {
|
|
var handle: String {
|
|
if let account = account, let host = account.url.host {
|
|
return account.url.lastPathComponent + "@" + host
|
|
}
|
|
|
|
return instance?.title ?? url.host ?? url.absoluteString
|
|
}
|
|
|
|
var image: URL? { account?.avatar ?? instance?.thumbnail }
|
|
}
|
|
|
|
extension Identity.Preferences {
|
|
func updated(from serverPreferences: MastodonPreferences) -> Self {
|
|
var mutable = self
|
|
|
|
if useServerPostingReadingPreferences {
|
|
mutable.postingDefaultVisibility = serverPreferences.postingDefaultVisibility
|
|
mutable.postingDefaultSensitive = serverPreferences.postingDefaultSensitive
|
|
mutable.readingExpandMedia = serverPreferences.readingExpandMedia
|
|
mutable.readingExpandSpoilers = serverPreferences.readingExpandSpoilers
|
|
}
|
|
|
|
return mutable
|
|
}
|
|
}
|