// File created from ScreenTemplate // $ createScreen.sh Secrets/Reset SecretsReset /* Copyright 2020 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import Foundation import UIKit final class SecretsResetCoordinator: SecretsResetCoordinatorType { // MARK: - Properties // MARK: Private private let session: MXSession private var secretsResetViewModel: SecretsResetViewModelType private let secretsResetViewController: SecretsResetViewController // MARK: Public // Must be used only internally var childCoordinators: [Coordinator] = [] weak var delegate: SecretsResetCoordinatorDelegate? // MARK: - Setup init(session: MXSession) { self.session = session let secretsResetViewModel = SecretsResetViewModel(session: self.session) let secretsResetViewController = SecretsResetViewController.instantiate(with: secretsResetViewModel) self.secretsResetViewModel = secretsResetViewModel self.secretsResetViewController = secretsResetViewController } // MARK: - Public methods func start() { self.secretsResetViewModel.coordinatorDelegate = self } func toPresentable() -> UIViewController { return self.secretsResetViewController } // MARK: - Private private func showAuthentication(with request: AuthenticatedEndpointRequest) { let reauthenticationCoordinatorParameters = ReauthenticationCoordinatorParameters(session: self.session, presenter: self.toPresentable(), title: nil, message: BWIL10n.secretsResetAuthenticationMessage, authenticatedEndpointRequest: request) let coordinator = ReauthenticationCoordinator(parameters: reauthenticationCoordinatorParameters) coordinator.delegate = self coordinator.start() self.add(childCoordinator: coordinator) } // bwi 7295 need to do authentication with session on an 401 error private func showAuthentication(with session: MXAuthenticationSession) { let reauthenticationCoordinatorParameters = ReauthenticationCoordinatorParameters(session: self.session, presenter: self.toPresentable(), title: nil, message: BWIL10n.secretsResetAuthenticationMessage, authenticationSession: session) let coordinator = ReauthenticationCoordinator(parameters: reauthenticationCoordinatorParameters) coordinator.delegate = self coordinator.start() self.add(childCoordinator: coordinator) } // bwi 7295 end } // MARK: - SecretsResetViewModelCoordinatorDelegate extension SecretsResetCoordinator: SecretsResetViewModelCoordinatorDelegate { func secretsResetViewModel(_ viewModel: SecretsResetViewModelType, needsToAuthenticateWith request: AuthenticatedEndpointRequest) { self.showAuthentication(with: request) } // bwi 7295 need to do authentication with session on an 401 error func secretsResetViewModel(_ viewModel: SecretsResetViewModelType, needsToAuthenticateWith session: MXAuthenticationSession) { self.showAuthentication(with: session) } // bwi 7295 end func secretsResetViewModelDidResetSecrets(_ viewModel: SecretsResetViewModelType) { self.delegate?.secretsResetCoordinatorDidResetSecrets(self) } func secretsResetViewModelDidCancel(_ viewModel: SecretsResetViewModelType) { self.delegate?.secretsResetCoordinatorDidCancel(self) } } // MARK: - ReauthenticationCoordinatorDelegate extension SecretsResetCoordinator: ReauthenticationCoordinatorDelegate { func reauthenticationCoordinatorDidComplete(_ coordinator: ReauthenticationCoordinatorType, withAuthenticationParameters authenticationParameters: [String: Any]?) { self.secretsResetViewModel.process(viewAction: .authenticationInfoEntered(authenticationParameters ?? [:])) } func reauthenticationCoordinatorDidCancel(_ coordinator: ReauthenticationCoordinatorType) { self.secretsResetViewModel.process(viewAction: .authenticationCancelled) self.remove(childCoordinator: coordinator) } func reauthenticationCoordinator(_ coordinator: ReauthenticationCoordinatorType, didFailWithError error: Error) { self.secretsResetViewModel.update(viewState: .error(error)) self.remove(childCoordinator: coordinator) } }