yattee/Model/Accounts/AccountsModel.swift

96 lines
2.3 KiB
Swift
Raw Normal View History

2021-10-16 22:48:58 +00:00
import Combine
import Defaults
import Foundation
final class AccountsModel: ObservableObject {
2021-10-20 22:21:50 +00:00
@Published private(set) var current: Account!
2021-10-16 22:48:58 +00:00
2021-10-20 22:21:50 +00:00
@Published private var invidious = InvidiousAPI()
@Published private var piped = PipedAPI()
2021-10-16 22:48:58 +00:00
private var cancellables = [AnyCancellable]()
2021-10-20 22:21:50 +00:00
var all: [Account] {
Defaults[.accounts]
}
2021-10-20 22:21:50 +00:00
var lastUsed: Account? {
guard let id = Defaults[.lastAccountID] else {
return nil
}
return AccountsModel.find(id)
2021-10-16 22:48:58 +00:00
}
2021-10-20 22:21:50 +00:00
var app: VideosApp {
2021-11-12 20:46:15 +00:00
current?.instance?.app ?? .invidious
2021-10-20 22:21:50 +00:00
}
var api: VideosAPI {
app == .piped ? piped : invidious
}
2021-10-17 23:06:00 +00:00
var isEmpty: Bool {
current.isNil
2021-10-17 23:06:00 +00:00
}
2021-10-16 22:48:58 +00:00
var signedIn: Bool {
!isEmpty && !current.anonymous && api.signedIn
2021-10-16 22:48:58 +00:00
}
init() {
cancellables.append(
invidious.objectWillChange.sink { [weak self] _ in self?.objectWillChange.send() }
)
cancellables.append(
piped.objectWillChange.sink { [weak self] _ in self?.objectWillChange.send() }
)
}
2021-10-20 22:21:50 +00:00
func setCurrent(_ account: Account! = nil) {
guard account != current else {
2021-10-16 22:48:58 +00:00
return
}
current = account
2021-10-16 22:48:58 +00:00
2021-10-17 23:06:00 +00:00
guard !account.isNil else {
return
}
2021-10-16 22:48:58 +00:00
switch account.instance.app {
case .invidious:
invidious.setAccount(account)
case .piped:
piped.setAccount(account)
}
Defaults[.lastAccountID] = account.anonymous ? nil : account.id
Defaults[.lastInstanceID] = account.instanceID
}
2021-10-20 22:21:50 +00:00
static func find(_ id: Account.ID) -> Account? {
Defaults[.accounts].first { $0.id == id }
}
static func add(instance: Instance, name: String, username: String, password: String? = nil) -> Account {
let account = Account(
instanceID: instance.id,
name: name,
url: instance.apiURL,
username: username,
password: password
)
Defaults[.accounts].append(account)
return account
}
2021-10-20 22:21:50 +00:00
static func remove(_ account: Account) {
if let accountIndex = Defaults[.accounts].firstIndex(where: { $0.id == account.id }) {
Defaults[.accounts].remove(at: accountIndex)
}
2021-10-16 22:48:58 +00:00
}
}