-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeleteAuthenticatorsUseCaseImpl.swift
86 lines (73 loc) · 2.49 KB
/
DeleteAuthenticatorsUseCaseImpl.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//
// Nevis Mobile Authentication SDK Example App
//
// Copyright © 2022. Nevis Security AG. All rights reserved.
//
import NevisMobileAuthentication
import RxSwift
/// Default implementation of ``DeleteAuthenticatorsUseCase`` protocol.
class DeleteAuthenticatorsUseCaseImpl {
// MARK: - Properties
/// The client provider.
private let provider: ClientProvider
/// The logger.
private let logger: SDKLogger
// MARK: - Initialization
/// Creates a new instance.
///
/// - Parameters:
/// - clientProvider: The client provider.
/// - logger: The logger.
init(provider: ClientProvider,
logger: SDKLogger) {
self.provider = provider
self.logger = logger
}
}
// MARK: - DeleteAuthenticatorsUseCase
extension DeleteAuthenticatorsUseCaseImpl: DeleteAuthenticatorsUseCase {
func execute(accounts: [any Account]) -> Observable<OperationResponse> {
guard !accounts.isEmpty else {
logger.log("Accounts not found.", color: .red)
return .error(BusinessError.accountsNotFound)
}
var responses: [Observable<OperationResponse>] = []
accounts.forEach { account in
responses.append(deleteAuthenticators(of: account.username))
}
return Observable.create { [weak self] observer in
Observable.concat(responses)
.observe(on: MainScheduler.instance)
.subscribe(on: SerialDispatchQueueScheduler(qos: .background))
.subscribe(onError: {
self?.logger.log("Delete authenticators failed.", color: .green)
observer.onError(OperationError(operation: .localData,
underlyingError: $0))
},
onCompleted: {
self?.logger.log("Delete authenticators succeeded.", color: .green)
observer.onNext(CompletedResponse(operation: .localData))
observer.onCompleted()
})
}
}
}
private extension DeleteAuthenticatorsUseCaseImpl {
/// Deletes all local authenticators of an account.
///
/// - Parameter username: The username of the enrolled account.
func deleteAuthenticators(of username: Username) -> Observable<OperationResponse> {
Observable.create { [unowned self] observer in
do {
try provider.get()?.localData.deleteAuthenticator(username: username, aaid: nil)
logger.log("Delete authenticators succeeded for user \(username).", color: .green)
observer.onNext(CompletedResponse(operation: .localData))
observer.onCompleted()
}
catch {
observer.onError(error)
}
return Disposables.create()
}
}
}