-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetDeviceInformationUseCaseImpl.swift
53 lines (43 loc) · 1.35 KB
/
GetDeviceInformationUseCaseImpl.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
//
// Nevis Mobile Authentication SDK Example App
//
// Copyright © 2022. Nevis Security AG. All rights reserved.
//
import NevisMobileAuthentication
import RxSwift
/// Default implementation of ``GetDeviceInformationUseCase`` protocol.
class GetDeviceInformationUseCaseImpl {
// MARK: - Properties
/// The client provider.
private let clientProvider: ClientProvider
/// The logger.
private let logger: SDKLogger
// MARK: - Initialization
/// Creates a new instance.
///
/// - Parameter clientProvider: The client provider.
init(clientProvider: ClientProvider,
logger: SDKLogger) {
self.clientProvider = clientProvider
self.logger = logger
}
}
// MARK: - GetDeviceInformationUseCase
extension GetDeviceInformationUseCaseImpl: GetDeviceInformationUseCase {
func execute() -> Observable<DeviceInformation> {
Observable.create { [unowned self] observer in
let client = clientProvider.get()
let deviceInformation = client?.localData.deviceInformation
let disposable = Disposables.create()
guard let deviceInformation else {
logger.log("Get device information failed.", color: .red)
observer.onError(BusinessError.deviceInformationNotFound)
return disposable
}
logger.log("Get device information succeeded.", color: .green)
observer.onNext(deviceInformation)
observer.onCompleted()
return disposable
}
}
}