55 lines
1.8 KiB
Swift
55 lines
1.8 KiB
Swift
//
|
|
// MastodonConfirmEmailViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by sxiaojian on 2021/2/23.
|
|
//
|
|
|
|
import Combine
|
|
import Foundation
|
|
import MastodonCore
|
|
import MastodonSDK
|
|
|
|
final class MastodonConfirmEmailViewModel {
|
|
var disposeBag = Set<AnyCancellable>()
|
|
|
|
// input
|
|
let context: AppContext
|
|
var email: String
|
|
let authenticateInfo: AuthenticationViewModel.AuthenticateInfo
|
|
let userToken: Mastodon.Entity.Token
|
|
let updateCredentialQuery: Mastodon.API.Account.UpdateCredentialQuery
|
|
|
|
let timestampUpdatePublisher = Timer.publish(every: 4.0, on: .main, in: .common)
|
|
.autoconnect()
|
|
.share()
|
|
.eraseToAnyPublisher()
|
|
|
|
init(
|
|
context: AppContext,
|
|
email: String,
|
|
authenticateInfo: AuthenticationViewModel.AuthenticateInfo,
|
|
userToken: Mastodon.Entity.Token,
|
|
updateCredentialQuery: Mastodon.API.Account.UpdateCredentialQuery
|
|
) {
|
|
self.context = context
|
|
self.email = email
|
|
self.authenticateInfo = authenticateInfo
|
|
self.userToken = userToken
|
|
self.updateCredentialQuery = updateCredentialQuery
|
|
}
|
|
|
|
#if DEBUG || SNAPSHOT
|
|
init() {
|
|
self.context = AppContext.shared
|
|
self.email = "example.com"
|
|
self.authenticateInfo = AuthenticationViewModel.AuthenticateInfo(
|
|
domain: "",
|
|
application: Mastodon.Entity.Application(name: "", website: nil, vapidKey: nil, redirectURI: nil, clientID: "clientID", clientSecret: "clientSecret")
|
|
)!
|
|
self.userToken = Mastodon.Entity.Token(accessToken: "", tokenType: "", scope: "", createdAt: Date())
|
|
self.updateCredentialQuery = Mastodon.API.Account.UpdateCredentialQuery(discoverable: nil, bot: nil, displayName: nil, note: nil, avatar: nil, header: nil, locked: nil, source: nil, fieldsAttributes: nil)
|
|
}
|
|
#endif
|
|
}
|