66 lines
1.6 KiB
Swift
66 lines
1.6 KiB
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
import Amplify
|
|
|
|
public class AWSAuthRememberDeviceOperation: AmplifyOperation<
|
|
AuthRememberDeviceRequest,
|
|
Void,
|
|
AuthError
|
|
>, AuthRememberDeviceOperation {
|
|
|
|
let deviceService: AuthDeviceServiceBehavior
|
|
|
|
init(_ request: AuthRememberDeviceRequest,
|
|
deviceService: AuthDeviceServiceBehavior,
|
|
resultListener: ResultListener?) {
|
|
|
|
self.deviceService = deviceService
|
|
super.init(categoryType: .auth,
|
|
eventName: HubPayload.EventName.Auth.rememberDeviceAPI,
|
|
request: request,
|
|
resultListener: resultListener)
|
|
}
|
|
|
|
override public func main() {
|
|
if isCancelled {
|
|
finish()
|
|
return
|
|
}
|
|
|
|
deviceService.rememberDevice(request: request) { [weak self] result in
|
|
guard let self = self else { return }
|
|
|
|
defer {
|
|
self.finish()
|
|
}
|
|
|
|
if self.isCancelled {
|
|
return
|
|
}
|
|
|
|
switch result {
|
|
case .failure(let error):
|
|
self.dispatch(error)
|
|
case .success:
|
|
self.dispatchSuccess()
|
|
}
|
|
}
|
|
}
|
|
|
|
private func dispatchSuccess() {
|
|
let result = OperationResult.success(())
|
|
dispatch(result: result)
|
|
}
|
|
|
|
private func dispatch(_ error: AuthError) {
|
|
let result = OperationResult.failure(error)
|
|
dispatch(result: result)
|
|
}
|
|
}
|