107 lines
3.6 KiB
Swift
107 lines
3.6 KiB
Swift
/*
|
|
Copyright 2020-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
@objc protocol SecretsRecoveryCoordinatorBridgePresenterDelegate {
|
|
func secretsRecoveryCoordinatorBridgePresenterDelegateDidComplete(_ coordinatorBridgePresenter: SecretsRecoveryCoordinatorBridgePresenter)
|
|
func secretsRecoveryCoordinatorBridgePresenterDelegateDidCancel(_ coordinatorBridgePresenter: SecretsRecoveryCoordinatorBridgePresenter)
|
|
}
|
|
|
|
/// SecretsRecoveryCoordinatorBridgePresenter enables to start SecretsRecoveryCoordinator from a view controller.
|
|
/// This bridge is used while waiting for global usage of coordinator pattern.
|
|
@objcMembers
|
|
final class SecretsRecoveryCoordinatorBridgePresenter: NSObject {
|
|
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
private let session: MXSession
|
|
private let recoveryMode: SecretsRecoveryMode
|
|
let recoveryGoal: SecretsRecoveryGoalBridge
|
|
|
|
private var coordinator: SecretsRecoveryCoordinator?
|
|
|
|
// MARK: Public
|
|
|
|
weak var delegate: SecretsRecoveryCoordinatorBridgePresenterDelegate?
|
|
|
|
var isPresenting: Bool {
|
|
return self.coordinator != nil
|
|
}
|
|
|
|
// MARK: - Setup
|
|
|
|
init(session: MXSession, recoveryMode: SecretsRecoveryMode, recoveryGoal: SecretsRecoveryGoalBridge) {
|
|
self.session = session
|
|
self.recoveryMode = recoveryMode
|
|
self.recoveryGoal = recoveryGoal
|
|
super.init()
|
|
}
|
|
|
|
init(session: MXSession, recoveryGoal: SecretsRecoveryGoalBridge) {
|
|
self.session = session
|
|
|
|
if case SecretsRecoveryAvailability.available(let secretMode) = session.crypto.recoveryService.vc_availability {
|
|
self.recoveryMode = secretMode
|
|
} else {
|
|
fatalError("[SecretsRecoveryCoordinatorBridgePresenter] recoveryService should be available when presenting recovery")
|
|
}
|
|
|
|
self.recoveryGoal = recoveryGoal
|
|
super.init()
|
|
}
|
|
|
|
// MARK: - Public
|
|
|
|
func toPresentable() -> UIViewController? {
|
|
return self.coordinator?.toPresentable()
|
|
}
|
|
|
|
func present(from viewController: UIViewController, animated: Bool) {
|
|
|
|
let coordinator = SecretsRecoveryCoordinator(session: self.session, recoveryMode: self.recoveryMode, recoveryGoal: self.recoveryGoal.goal, cancellable: true)
|
|
coordinator.delegate = self
|
|
|
|
let presentable = coordinator.toPresentable()
|
|
presentable.modalPresentationStyle = .formSheet
|
|
viewController.present(presentable, animated: animated, completion: nil)
|
|
|
|
coordinator.start()
|
|
|
|
self.coordinator = coordinator
|
|
}
|
|
|
|
func dismiss(animated: Bool, completion: (() -> Void)?) {
|
|
guard let coordinator = self.coordinator else {
|
|
return
|
|
}
|
|
|
|
MXLog.debug("[SecretsRecoveryCoordinatorBridgePresenter] Dismiss")
|
|
|
|
coordinator.toPresentable().dismiss(animated: animated) {
|
|
self.coordinator = nil
|
|
|
|
if let completion = completion {
|
|
completion()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - KeyVerificationCoordinatorDelegate
|
|
extension SecretsRecoveryCoordinatorBridgePresenter: SecretsRecoveryCoordinatorDelegate {
|
|
func secretsRecoveryCoordinatorDidRecover(_ coordinator: SecretsRecoveryCoordinatorType) {
|
|
self.delegate?.secretsRecoveryCoordinatorBridgePresenterDelegateDidComplete(self)
|
|
}
|
|
|
|
func secretsRecoveryCoordinatorDidCancel(_ coordinator: SecretsRecoveryCoordinatorType) {
|
|
self.delegate?.secretsRecoveryCoordinatorBridgePresenterDelegateDidCancel(self)
|
|
}
|
|
}
|