element-ios/Riot/Modules/SecretsRecovery/RecoverWithKey/SecretsRecoveryWithKeyViewModel.swift
2020-06-10 17:06:47 +02:00

87 lines
2.6 KiB
Swift

/*
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
final class SecretsRecoveryWithKeyViewModel: SecretsRecoveryWithKeyViewModelType {
// MARK: - Properties
// MARK: Private
private let recoveryService: MXRecoveryService
// MARK: Public
var recoveryKey: String?
var isFormValid: Bool {
return self.recoveryKey?.isEmpty == false
}
weak var viewDelegate: SecretsRecoveryWithKeyViewModelViewDelegate?
weak var coordinatorDelegate: SecretsRecoveryWithKeyViewModelCoordinatorDelegate?
// MARK: - Setup
init(recoveryService: MXRecoveryService) {
self.recoveryService = recoveryService
}
// MARK: - Public
func process(viewAction: SecretsRecoveryWithKeyViewAction) {
switch viewAction {
case .recover:
self.recover()
case .cancel:
self.coordinatorDelegate?.secretsRecoveryWithKeyViewModelDidCancel(self)
}
}
// MARK: - Private
private func recover() {
guard let recoveryKey = self.recoveryKey else {
return
}
self.update(viewState: .loading)
do {
let privateKey = try self.recoveryService.privateKey(fromRecoveryKey: recoveryKey)
self.recoveryService.recoverSecrets(nil, withPrivateKey: privateKey, recoverServices: true, success: { [weak self] _ in
guard let self = self else {
return
}
self.update(viewState: .loaded)
self.coordinatorDelegate?.secretsRecoveryWithKeyViewModelDidRecover(self)
}, failure: { [weak self] error in
guard let self = self else {
return
}
self.update(viewState: .error(error))
})
} catch {
self.update(viewState: .error(error))
}
}
private func update(viewState: SecretsRecoveryWithKeyViewState) {
self.viewDelegate?.secretsRecoveryWithKeyViewModel(self, didUpdateViewState: viewState)
}
}