-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathAWSCognitoAuthPlugin+ClientBehavior.swift
More file actions
269 lines (245 loc) · 9.34 KB
/
Copy pathAWSCognitoAuthPlugin+ClientBehavior.swift
File metadata and controls
269 lines (245 loc) · 9.34 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Amplify
import AuthenticationServices
import Foundation
// swiftlint:disable force_cast
extension AWSCognitoAuthPlugin: AuthCategoryBehavior {
public func signUp(
username: String,
password: String? = nil,
options: AuthSignUpRequest.Options?
) async throws -> AuthSignUpResult {
let options = options ?? AuthSignUpRequest.Options()
let request = AuthSignUpRequest(
username: username,
password: password,
options: options
)
let task = AWSAuthSignUpTask(request, authStateMachine: authStateMachine, authEnvironment: authEnvironment)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignUpResult
}
public func confirmSignUp(
for username: String,
confirmationCode: String,
options: AuthConfirmSignUpRequest.Options?
)
async throws -> AuthSignUpResult {
let options = options ?? AuthConfirmSignUpRequest.Options()
let request = AuthConfirmSignUpRequest(
username: username,
code: confirmationCode,
options: options
)
let task = AWSAuthConfirmSignUpTask(request, authStateMachine: authStateMachine, authEnvironment: authEnvironment)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignUpResult
}
public func resendSignUpCode(for username: String, options: AuthResendSignUpCodeRequest.Options?) async throws -> AuthCodeDeliveryDetails {
let options = options ?? AuthResendSignUpCodeRequest.Options()
let request = AuthResendSignUpCodeRequest(username: username, options: options)
let task = AWSAuthResendSignUpCodeTask(request, environment: authEnvironment, authConfiguration: authConfiguration)
return try await taskQueue.sync {
return try await task.value
} as! AuthCodeDeliveryDetails
}
#if os(iOS) || os(macOS) || os(visionOS)
public func signInWithWebUI(
presentationAnchor: AuthUIPresentationAnchor? = nil,
options: AuthWebUISignInRequest.Options?
) async throws -> AuthSignInResult {
let options = options ?? AuthWebUISignInRequest.Options()
let request = AuthWebUISignInRequest(
presentationAnchor: presentationAnchor,
options: options
)
let task = AWSAuthWebUISignInTask(
request,
authConfiguration: authConfiguration,
authStateMachine: authStateMachine,
eventName: HubPayload.EventName.Auth.webUISignInAPI
)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignInResult
}
public func signInWithWebUI(
for authProvider: AuthProvider,
presentationAnchor: AuthUIPresentationAnchor? = nil,
options: AuthWebUISignInRequest.Options?
) async throws -> AuthSignInResult {
let options = options ?? AuthWebUISignInRequest.Options()
let request = AuthWebUISignInRequest(
presentationAnchor: presentationAnchor,
authProvider: authProvider,
options: options
)
let task = AWSAuthWebUISignInTask(
request,
authConfiguration: authConfiguration,
authStateMachine: authStateMachine,
eventName: HubPayload.EventName.Auth.socialWebUISignInAPI
)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignInResult
}
#endif
public func confirmSignIn(
challengeResponse: String,
options: AuthConfirmSignInRequest.Options? = nil
) async throws -> AuthSignInResult {
let options = options ?? AuthConfirmSignInRequest.Options()
let request = AuthConfirmSignInRequest(
challengeResponse: challengeResponse,
options: options
)
let task = AWSAuthConfirmSignInTask(
request,
stateMachine: authStateMachine,
configuration: authConfiguration
)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignInResult
}
public func signOut(options: AuthSignOutRequest.Options? = nil) async -> AuthSignOutResult {
clearCachedSession()
let options = options ?? AuthSignOutRequest.Options()
let request = AuthSignOutRequest(options: options)
let task = AWSAuthSignOutTask(request, authStateMachine: authStateMachine)
do {
return try await taskQueue.sync {
return await task.value
} as! AuthSignOutResult
} catch {
fatalError("AWSAuthSignOutTask should not throw error: \(error)")
}
}
public func fetchAuthSession(options: AuthFetchSessionRequest.Options?) async throws -> AuthSession {
let options = options ?? AuthFetchSessionRequest.Options()
if !options.forceRefresh,
let cached = cachedSession,
cached.areTokensValid() {
return cached
}
let request = AuthFetchSessionRequest(options: options)
let forceReconfigure = secureStoragePreferences?.accessGroup?.name != nil
let task = AWSAuthFetchSessionTask(
request,
authStateMachine: authStateMachine,
configuration: authConfiguration,
environment: authEnvironment,
forceReconfigure: forceReconfigure
)
let session = try await taskQueue.sync {
return try await task.value
} as! AuthSession
if let cognitoSession = session as? AWSAuthCognitoSession {
cachedSession = cognitoSession
}
return session
}
public func resetPassword(for username: String, options: AuthResetPasswordRequest.Options?) async throws -> AuthResetPasswordResult {
let options = options ?? AuthResetPasswordRequest.Options()
let request = AuthResetPasswordRequest(username: username, options: options)
let task = AWSAuthResetPasswordTask(request, environment: authEnvironment, authConfiguration: authConfiguration)
return try await taskQueue.sync {
return try await task.value
} as! AuthResetPasswordResult
}
public func confirmResetPassword(
for username: String,
with newPassword: String,
confirmationCode: String,
options: AuthConfirmResetPasswordRequest.Options?
) async throws {
let options = options ?? AuthConfirmResetPasswordRequest.Options()
let request = AuthConfirmResetPasswordRequest(
username: username,
newPassword: newPassword,
confirmationCode: confirmationCode,
options: options
)
let task = AWSAuthConfirmResetPasswordTask(request, environment: authEnvironment, authConfiguration: authConfiguration)
_ = try await taskQueue.sync {
return try await task.value
}
}
public func signIn(
username: String?,
password: String?,
options: AuthSignInRequest.Options?
) async throws -> AuthSignInResult {
let options = options ?? AuthSignInRequest.Options()
let request = AuthSignInRequest(
username: username,
password: password,
options: options
)
let task = AWSAuthSignInTask(
request,
authStateMachine: authStateMachine,
configuration: authConfiguration
)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignInResult
}
public func autoSignIn() async throws -> AuthSignInResult {
let options = AuthAutoSignInRequest.Options()
let request = AuthAutoSignInRequest(options: options)
let task = AWSAuthAutoSignInTask(
request,
authStateMachine: authStateMachine,
authEnvironment: authEnvironment
)
return try await taskQueue.sync {
return try await task.value
} as! AuthSignInResult
}
public func deleteUser() async throws {
let task = AWSAuthDeleteUserTask(
authStateMachine: authStateMachine,
authConfiguraiton: authConfiguration
)
_ = try await taskQueue.sync {
return try await task.value
}
}
public func setUpTOTP() async throws -> TOTPSetupDetails {
let task = SetUpTOTPTask(
authStateMachine: authStateMachine,
userPoolFactory: authEnvironment.cognitoUserPoolFactory
)
return try await taskQueue.sync {
return try await task.value
} as! TOTPSetupDetails
}
public func verifyTOTPSetup(
code: String,
options: VerifyTOTPSetupRequest.Options?
) async throws {
let options = options ?? VerifyTOTPSetupRequest.Options()
let request = VerifyTOTPSetupRequest(
code: code,
options: options
)
let task = VerifyTOTPSetupTask(
request,
authStateMachine: authStateMachine,
userPoolFactory: authEnvironment.cognitoUserPoolFactory
)
_ = try await taskQueue.sync {
return try await task.value
}
}
}
// swiftlint:enable force_cast