mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-18 22:31:01 +00:00
43 lines
1,019 B
Swift
43 lines
1,019 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct Identity: Codable, Hashable, Identifiable {
|
|
let id: String
|
|
let url: URL
|
|
let lastUsedAt: Date
|
|
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
|
|
}
|
|
}
|
|
|
|
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 }
|
|
}
|