yattee/Model/Accounts/Instance.swift

76 lines
2.0 KiB
Swift
Raw Normal View History

2021-09-25 08:18:22 +00:00
import Defaults
import Foundation
struct Instance: Defaults.Serializable, Hashable, Identifiable {
static var bridge = InstancesBridge()
2021-10-20 22:21:50 +00:00
let app: VideosApp
let id: String
2021-09-25 08:18:22 +00:00
let name: String
2022-12-09 00:15:19 +00:00
let apiURLString: String
2021-10-27 21:11:38 +00:00
var frontendURL: String?
var proxiesVideos: Bool
2021-09-25 08:18:22 +00:00
2022-12-09 00:15:19 +00:00
init(app: VideosApp, id: String? = nil, name: String? = nil, apiURLString: String, frontendURL: String? = nil, proxiesVideos: Bool = false) {
2021-10-16 22:48:58 +00:00
self.app = app
self.id = id ?? UUID().uuidString
2022-12-09 00:15:19 +00:00
self.name = name ?? app.rawValue
self.apiURLString = apiURLString
2021-10-27 21:11:38 +00:00
self.frontendURL = frontendURL
self.proxiesVideos = proxiesVideos
2021-09-25 08:18:22 +00:00
}
2022-12-09 00:15:19 +00:00
var apiURL: URL! {
URL(string: apiURLString)
}
var anonymous: VideosAPI! {
2021-10-20 22:21:50 +00:00
switch app {
case .invidious:
return InvidiousAPI(account: anonymousAccount)
case .piped:
return PipedAPI(account: anonymousAccount)
2022-12-09 00:15:19 +00:00
case .peerTube:
return PeerTubeAPI(account: anonymousAccount)
case .local:
return nil
2021-10-20 22:21:50 +00:00
}
}
2021-09-25 08:18:22 +00:00
var description: String {
2021-10-16 22:48:58 +00:00
"\(app.name) - \(shortDescription)"
}
var longDescription: String {
2022-12-12 18:46:45 +00:00
name.isEmpty ? "\(app.name) - \(apiURLString)" : "\(app.name) - \(name) (\(apiURLString))"
2021-09-25 08:18:22 +00:00
}
var shortDescription: String {
2022-12-09 00:15:19 +00:00
name.isEmpty ? apiURLString : name
2021-09-25 08:18:22 +00:00
}
var anonymousAccount: Account {
2022-12-09 00:15:19 +00:00
Account(instanceID: id, name: "Anonymous".localized(), urlString: apiURLString, anonymous: true)
2021-09-25 08:18:22 +00:00
}
2021-10-26 22:59:59 +00:00
var urlComponents: URLComponents {
2022-12-09 00:15:19 +00:00
URLComponents(url: apiURL, resolvingAgainstBaseURL: false)!
2021-10-26 22:59:59 +00:00
}
2021-10-28 17:14:55 +00:00
var frontendHost: String? {
2022-12-09 00:15:19 +00:00
guard let url = app == .invidious ? apiURLString : frontendURL else {
2021-10-28 17:14:55 +00:00
return nil
}
return URLComponents(string: url)?.host
2021-10-26 22:59:59 +00:00
}
2021-09-25 08:18:22 +00:00
func hash(into hasher: inout Hasher) {
2021-10-27 21:11:38 +00:00
hasher.combine(apiURL)
2021-09-25 08:18:22 +00:00
}
2024-02-01 22:54:16 +00:00
var accounts: [Account] {
AccountsModel.shared.all.filter { $0.instanceID == id }
}
2021-09-25 08:18:22 +00:00
}