mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
150 lines
5.7 KiB
Swift
150 lines
5.7 KiB
Swift
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import PromiseKit
|
|
import SignalServiceKit
|
|
|
|
/**
|
|
* Signal is actually two services - textSecure for messages and red phone (for calls).
|
|
* AccountManager delegates to both.
|
|
*/
|
|
@objc
|
|
public class AccountManager: NSObject {
|
|
|
|
// MARK: - Dependencies
|
|
|
|
var profileManager: OWSProfileManager {
|
|
return OWSProfileManager.shared()
|
|
}
|
|
|
|
private var networkManager: TSNetworkManager {
|
|
return SSKEnvironment.shared.networkManager
|
|
}
|
|
|
|
private var preferences: OWSPreferences {
|
|
return Environment.shared.preferences
|
|
}
|
|
|
|
private var tsAccountManager: TSAccountManager {
|
|
return TSAccountManager.sharedInstance()
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
@objc
|
|
public override init() {
|
|
super.init()
|
|
|
|
SwiftSingletons.register(self)
|
|
}
|
|
|
|
// MARK: registration
|
|
|
|
@objc func registerObjc(verificationCode: String,
|
|
pin: String?) -> AnyPromise {
|
|
return AnyPromise(register(verificationCode: verificationCode, pin: pin))
|
|
}
|
|
|
|
func register(verificationCode: String,
|
|
pin: String?) -> Promise<Void> {
|
|
guard verificationCode.count > 0 else {
|
|
let error = OWSErrorWithCodeDescription(.userError,
|
|
NSLocalizedString("REGISTRATION_ERROR_BLANK_VERIFICATION_CODE",
|
|
comment: "alert body during registration"))
|
|
return Promise(error: error)
|
|
}
|
|
|
|
Logger.debug("registering with signal server")
|
|
let registrationPromise: Promise<Void> = firstly {
|
|
return self.registerForTextSecure(verificationCode: verificationCode, pin: pin)
|
|
}
|
|
// Loki: Original code
|
|
// ========
|
|
// .then { _ -> Promise<Void> in
|
|
// return self.syncPushTokens().recover { (error) -> Promise<Void> in
|
|
// switch error {
|
|
// case PushRegistrationError.pushNotSupported(let description):
|
|
// // This can happen with:
|
|
// // - simulators, none of which support receiving push notifications
|
|
// // - on iOS11 devices which have disabled "Allow Notifications" and disabled "Enable Background Refresh" in the system settings.
|
|
// Logger.info("Recovered push registration error. Registering for manual message fetcher because push not supported: \(description)")
|
|
// return self.enableManualMessageFetching()
|
|
// default:
|
|
// throw error
|
|
// }
|
|
// }
|
|
// }
|
|
// ========
|
|
.done { (_) -> Void in
|
|
self.completeRegistration()
|
|
}
|
|
|
|
registrationPromise.retainUntilComplete()
|
|
|
|
return registrationPromise
|
|
}
|
|
|
|
private func registerForTextSecure(verificationCode: String,
|
|
pin: String?) -> Promise<Void> {
|
|
return Promise { resolver in
|
|
tsAccountManager.verifyAccount(withCode: verificationCode,
|
|
pin: pin,
|
|
success: { resolver.fulfill(()) },
|
|
failure: resolver.reject)
|
|
}
|
|
}
|
|
|
|
private func syncPushTokens() -> Promise<Void> {
|
|
Logger.info("")
|
|
let job = SyncPushTokensJob(accountManager: self, preferences: self.preferences)
|
|
job.uploadOnlyIfStale = false
|
|
return job.run()
|
|
}
|
|
|
|
private func completeRegistration() {
|
|
Logger.info("")
|
|
tsAccountManager.didRegister()
|
|
}
|
|
|
|
// MARK: Message Delivery
|
|
|
|
func updatePushTokens(pushToken: String, voipToken: String) -> Promise<Void> {
|
|
return Promise { resolver in
|
|
tsAccountManager.registerForPushNotifications(pushToken: pushToken,
|
|
voipToken: voipToken,
|
|
success: { resolver.fulfill(()) },
|
|
failure: resolver.reject)
|
|
}
|
|
}
|
|
|
|
func enableManualMessageFetching() -> Promise<Void> {
|
|
let anyPromise = tsAccountManager.setIsManualMessageFetchEnabled(true)
|
|
return Promise(anyPromise).asVoid()
|
|
}
|
|
|
|
// MARK: Turn Server
|
|
|
|
func getTurnServerInfo() -> Promise<TurnServerInfo> {
|
|
return Promise { resolver in
|
|
self.networkManager.makeRequest(OWSRequestFactory.turnServerInfoRequest(),
|
|
success: { (_: URLSessionDataTask, responseObject: Any?) in
|
|
guard responseObject != nil else {
|
|
return resolver.reject(OWSErrorMakeUnableToProcessServerResponseError())
|
|
}
|
|
|
|
if let responseDictionary = responseObject as? [String: AnyObject] {
|
|
if let turnServerInfo = TurnServerInfo(attributes: responseDictionary) {
|
|
return resolver.fulfill(turnServerInfo)
|
|
}
|
|
Logger.error("unexpected server response:\(responseDictionary)")
|
|
}
|
|
return resolver.reject(OWSErrorMakeUnableToProcessServerResponseError())
|
|
},
|
|
failure: { (_: URLSessionDataTask, error: Error) in
|
|
return resolver.reject(error)
|
|
})
|
|
}
|
|
}
|
|
}
|