2020-07-29 23:50:30 +00:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Combine
|
|
|
|
|
|
|
|
class AddIdentityViewModel: ObservableObject {
|
|
|
|
@Published var urlFieldText = ""
|
|
|
|
@Published var alertItem: AlertItem?
|
|
|
|
@Published private(set) var loading = false
|
2020-08-14 01:24:53 +00:00
|
|
|
let addedIdentityID: AnyPublisher<UUID, Never>
|
2020-07-29 23:50:30 +00:00
|
|
|
|
2020-08-09 11:27:38 +00:00
|
|
|
private let identitiesService: IdentitiesService
|
2020-08-14 01:24:53 +00:00
|
|
|
private let addedIdentityIDInput = PassthroughSubject<UUID, Never>()
|
2020-08-03 15:20:51 +00:00
|
|
|
private var cancellables = Set<AnyCancellable>()
|
2020-07-29 23:50:30 +00:00
|
|
|
|
2020-08-09 11:27:38 +00:00
|
|
|
init(identitiesService: IdentitiesService) {
|
|
|
|
self.identitiesService = identitiesService
|
2020-08-14 01:24:53 +00:00
|
|
|
addedIdentityID = addedIdentityIDInput.eraseToAnyPublisher()
|
2020-07-29 23:50:30 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 11:27:38 +00:00
|
|
|
func logInTapped() {
|
|
|
|
let identityID = UUID()
|
|
|
|
let instanceURL: URL
|
|
|
|
|
|
|
|
do {
|
|
|
|
try instanceURL = urlFieldText.url()
|
|
|
|
} catch {
|
|
|
|
alertItem = AlertItem(error: error)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
identitiesService.authorizeIdentity(id: identityID, instanceURL: instanceURL)
|
|
|
|
.map { (identityID, instanceURL) }
|
|
|
|
.flatMap(identitiesService.createIdentity(id:instanceURL:))
|
2020-08-14 01:24:53 +00:00
|
|
|
.map { identityID }
|
2020-07-29 23:50:30 +00:00
|
|
|
.assignErrorsToAlertItem(to: \.alertItem, on: self)
|
2020-08-02 07:02:03 +00:00
|
|
|
.receive(on: RunLoop.main)
|
2020-07-29 23:50:30 +00:00
|
|
|
.handleEvents(
|
|
|
|
receiveSubscription: { [weak self] _ in self?.loading = true },
|
|
|
|
receiveCompletion: { [weak self] _ in self?.loading = false })
|
2020-08-14 01:24:53 +00:00
|
|
|
.sink(receiveValue: addedIdentityIDInput.send)
|
2020-08-03 15:20:51 +00:00
|
|
|
.store(in: &cancellables)
|
2020-07-29 23:50:30 +00:00
|
|
|
}
|
2020-08-09 11:27:38 +00:00
|
|
|
|
|
|
|
func browseAnonymouslyTapped() {
|
|
|
|
let identityID = UUID()
|
|
|
|
let instanceURL: URL
|
|
|
|
|
|
|
|
do {
|
|
|
|
try instanceURL = urlFieldText.url()
|
|
|
|
} catch {
|
|
|
|
alertItem = AlertItem(error: error)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-09 20:40:14 +00:00
|
|
|
// TODO: Ensure instance has not disabled public preview
|
2020-08-09 11:27:38 +00:00
|
|
|
identitiesService.createIdentity(id: identityID, instanceURL: instanceURL)
|
2020-08-14 01:24:53 +00:00
|
|
|
.map { identityID }
|
2020-08-09 11:27:38 +00:00
|
|
|
.assignErrorsToAlertItem(to: \.alertItem, on: self)
|
2020-08-14 01:24:53 +00:00
|
|
|
.sink(receiveValue: addedIdentityIDInput.send)
|
2020-08-09 11:27:38 +00:00
|
|
|
.store(in: &cancellables)
|
|
|
|
}
|
2020-07-29 23:50:30 +00:00
|
|
|
}
|