-
Notifications
You must be signed in to change notification settings - Fork 11
/
GoogleAuthenticator.swift
495 lines (394 loc) · 19.2 KB
/
GoogleAuthenticator.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
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
import Foundation
import GoogleSignIn
import WordPressKit
import SVProgressHUD
/// Contains delegate methods for Google authentication unified auth flow.
/// Both Login and Signup are handled via this delegate.
///
protocol GoogleAuthenticatorDelegate: AnyObject {
// Google account login was successful.
func googleFinishedLogin(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account login was successful, but a WP 2FA code is required.
func googleNeedsMultifactorCode(loginFields: LoginFields)
// Google account login was successful, but a WP password is required.
func googleExistingUserNeedsConnection(loginFields: LoginFields)
// Google account login failed.
func googleLoginFailed(errorTitle: String, errorDescription: String, loginFields: LoginFields, unknownUser: Bool)
// Google account selection cancelled by user.
func googleAuthCancelled()
// Google account signup was successful.
func googleFinishedSignup(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account signup redirected to login was successful.
func googleLoggedInInstead(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account signup failed.
func googleSignupFailed(error: Error, loginFields: LoginFields)
}
/// Indicate which type of authentication is initiated.
/// Utilized by ViewControllers that handle separate Google Login and Signup flows.
/// This is needed as long as:
/// Separate Google Login and Signup flows are utilized.
/// Tracking is specific to separate Login and Signup flows.
/// When separate Google Login and Signup flows are no longer used, this no longer needed.
///
enum GoogleAuthType {
case login
case signup
}
/// Contains delegate methods for Google login specific flow.
/// When separate Google Login and Signup flows are no longer used, this no longer needed.
///
protocol GoogleAuthenticatorLoginDelegate: AnyObject {
// Google account login was successful.
func googleFinishedLogin(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account login was successful, but a WP 2FA code is required.
func googleNeedsMultifactorCode(loginFields: LoginFields)
// Google account login was successful, but a WP password is required.
func googleExistingUserNeedsConnection(loginFields: LoginFields)
// Google account login failed.
func googleLoginFailed(errorTitle: String, errorDescription: String, loginFields: LoginFields)
}
/// Contains delegate methods for Google signup specific flow.
/// When separate Google Login and Signup flows are no longer used, this no longer needed.
///
protocol GoogleAuthenticatorSignupDelegate: AnyObject {
// Google account signup was successful.
func googleFinishedSignup(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account signup redirected to login was successful.
func googleLoggedInInstead(credentials: AuthenticatorCredentials, loginFields: LoginFields)
// Google account signup failed.
func googleSignupFailed(error: Error, loginFields: LoginFields)
// Google account signup cancelled by user.
func googleSignupCancelled()
}
class GoogleAuthenticator: NSObject {
// MARK: - Properties
static var sharedInstance: GoogleAuthenticator = GoogleAuthenticator()
weak var loginDelegate: GoogleAuthenticatorLoginDelegate?
weak var signupDelegate: GoogleAuthenticatorSignupDelegate?
weak var delegate: GoogleAuthenticatorDelegate?
private var loginFields = LoginFields()
private let authConfig = WordPressAuthenticator.shared.configuration
private var authType: GoogleAuthType = .login
private var tracker: AuthenticatorAnalyticsTracker {
AuthenticatorAnalyticsTracker.shared
}
private lazy var loginFacade: LoginFacade = {
let facade = LoginFacade(dotcomClientID: authConfig.wpcomClientId,
dotcomSecret: authConfig.wpcomSecret,
userAgent: authConfig.userAgent)
facade.delegate = self
return facade
}()
private weak var authenticationDelegate: WordPressAuthenticatorDelegate? = {
guard let delegate = WordPressAuthenticator.shared.delegate else {
fatalError()
}
return delegate
}()
// MARK: - Start Authentication
/// Public method to initiate the Google auth process.
/// - Parameters:
/// - viewController: The UIViewController that Google is being presented from.
/// Required by Google SDK.
/// - loginFields: LoginFields from the calling view controller.
/// The values are updated during the Google process,
/// and returned to the calling view controller via delegate methods.
/// - authType: Indicates the type of authentication (login or signup)
func showFrom(
viewController: UIViewController,
loginFields: LoginFields,
for authType: GoogleAuthType = .login
) {
// The fact that we set `loginFields`, then reset its `meta.socialService` property doesn't
// seem ideal...
self.loginFields = loginFields
self.loginFields.meta.socialService = SocialServiceName.google
self.authType = authType
guard authConfig.googleLoginWithoutSDK else {
// Use method that depends on SDK
requestAuthorization(from: viewController)
return
}
Task {
do {
let token = try await requestAuthorization(
for: authType,
from: viewController,
loginFields: loginFields
)
didSignIn(token: token.token.rawValue, email: token.email)
} catch {
failedToSignIn(error: error)
}
}
}
/// Public method to create a WP account with a Google account.
/// - Parameters:
/// - loginFields: LoginFields from the calling view controller.
/// The values are updated during the Google process,
/// and returned to the calling view controller via delegate methods.
func createGoogleAccount(loginFields: LoginFields) {
self.loginFields = loginFields
guard let token = loginFields.meta.socialServiceIDToken else {
WPAuthenticatorLogError("GoogleAuthenticator - createGoogleAccount: Failed to get Google account information.")
return
}
createWordPressComUser(token: token, email: loginFields.emailAddress)
}
}
// MARK: - Private Extension
private extension GoogleAuthenticator {
/// Initiates the Google authentication flow.
/// - viewController: The UIViewController that Google is being presented from.
/// Required by Google SDK.
func requestAuthorization(from viewController: UIViewController) {
trackRequestAuthorizitation(type: authType)
let googleInstance = GIDSignIn.sharedInstance
let configuration = GIDConfiguration(clientID: authConfig.googleLoginClientId, serverClientID: authConfig.googleLoginServerClientId)
googleInstance.disconnect()
// Start the Google auth process. This presents the Google account selection view.
// Assigning the view controller has no effect since we don't use Google UI, but it's is required, so here we are.
googleInstance.signIn(with: configuration, presenting: viewController) { user, error in
self.didSignIn(for: user, error: error)
}
}
private func trackRequestAuthorizitation(type: GoogleAuthType) {
switch type {
case .login:
tracker.set(flow: .loginWithGoogle)
tracker.track(step: .start) {
track(.loginSocialButtonClick)
}
case .signup:
track(.createAccountInitiated)
}
}
func track(_ event: WPAnalyticsStat, properties: [AnyHashable: Any] = [:]) {
var trackProperties = properties
trackProperties["source"] = "google"
WordPressAuthenticator.track(event, properties: trackProperties)
}
/// Handles when the sign in process is either succeeded or failed.
/// This is invoked after signing in through `GIDSignIn`'s `signIn` method.
func didSignIn(for user: GIDGoogleUser?, error: Error?) {
// Get account information
guard let user = user,
let token = user.authentication.idToken,
let email = user.profile?.email else {
failedToSignIn(error: error)
return
}
// Set `googleUser` here, `didSignIn(token:, email:)` will do the rest.
loginFields.meta.googleUser = user
didSignIn(token: token, email: email)
}
private func failedToSignIn(error: Error?) {
// The Google SignIn may have been cancelled.
//
// FIXME: Is `error == .none` how we distinguish between user cancellation and legit error?
let failure = error?.localizedDescription ?? "Unknown error"
tracker.track(failure: failure, ifTrackingNotEnabled: {
let properties = ["error": failure]
switch authType {
case .login:
track(.loginSocialButtonFailure, properties: properties)
case .signup:
track(.signupSocialButtonFailure, properties: properties)
}
})
// Notify the delegates so the Google Auth view can be dismissed.
//
// FIXME: Shouldn't we be calling a method to report error, if there was one?
signupDelegate?.googleSignupCancelled()
delegate?.googleAuthCancelled()
}
private func didSignIn(token: String, email: String) {
// Save account information to pass back to delegate later.
loginFields.emailAddress = email
loginFields.username = email
loginFields.meta.socialServiceIDToken = token
guard authConfig.enableUnifiedAuth else {
// Initiate separate WP login / signup paths.
switch authType {
case .login:
SVProgressHUD.show()
loginFacade.loginToWordPressDotCom(withSocialIDToken: token, service: SocialServiceName.google.rawValue)
case .signup:
createWordPressComUser(token: token, email: email)
}
return
}
// Initiate unified path by attempting to login first.
//
// `SVProgressHUD.show()` will crash in an app that doesn't have a window property in its
// `UIApplicationDelegate`, such as those created via the Xcode templates circa version 12
// onwards.
SVProgressHUD.show()
loginFacade.loginToWordPressDotCom(withSocialIDToken: token, service: SocialServiceName.google.rawValue)
}
enum LocalizedText {
static let googleConnected = NSLocalizedString("Connected But…", comment: "Title shown when a user logs in with Google but no matching WordPress.com account is found")
static let googleConnectedError = NSLocalizedString("The Google account \"%@\" doesn't match any account on WordPress.com", comment: "Description shown when a user logs in with Google but no matching WordPress.com account is found")
static let googleUnableToConnect = NSLocalizedString("Unable To Connect", comment: "Shown when a user logs in with Google but it subsequently fails to work as login to WordPress.com")
}
}
// MARK: - SDK-less flow
extension GoogleAuthenticator {
private func requestAuthorization(
for authType: GoogleAuthType,
from viewController: UIViewController,
loginFields: LoginFields
) async throws -> IDToken {
// Intentionally duplicated from the callsite, so we don't forget about this when removing
// the SDK.
//
// The fact that we set `loginFields`, then reset its `meta.socialService` property doesn't
// seem ideal...
self.loginFields = loginFields
self.loginFields.meta.socialService = SocialServiceName.google
self.authType = authType
trackRequestAuthorizitation(type: authType)
// We might want to change this in subsequent iterations, perhaps by moving the
// `contextProvider` to the `getOAuthToken()` method so to allow it to be stored
// as a `lazy` property?
let sdkLessGoogleAuthenticator = NewGoogleAuthenticator(
clientId: authConfig.googleClientId,
scheme: authConfig.googleLoginScheme,
audience: authConfig.googleLoginServerClientId,
contextProvider: WebAuthenticationPresentationContext(viewController: viewController),
urlSession: .shared
)
await SVProgressHUD.show()
return try await sdkLessGoogleAuthenticator.getOAuthToken()
}
}
// MARK: - LoginFacadeDelegate
extension GoogleAuthenticator: LoginFacadeDelegate {
// Google account login was successful.
func finishedLogin(withGoogleIDToken googleIDToken: String, authToken: String) {
SVProgressHUD.dismiss()
GIDSignIn.sharedInstance.disconnect()
// This stat is part of a funnel that provides critical information. Please
// consult with your lead before removing this event.
track(.signedIn)
if tracker.shouldUseLegacyTracker() {
track(.loginSocialSuccess)
}
let wpcom = WordPressComCredentials(authToken: authToken,
isJetpackLogin: loginFields.meta.jetpackLogin,
multifactor: false,
siteURL: loginFields.siteAddress)
let credentials = AuthenticatorCredentials(wpcom: wpcom)
loginDelegate?.googleFinishedLogin(credentials: credentials, loginFields: loginFields)
delegate?.googleFinishedLogin(credentials: credentials, loginFields: loginFields)
}
// Google account login was successful, but a WP 2FA code is required.
func needsMultifactorCode(forUserID userID: Int, andNonceInfo nonceInfo: SocialLogin2FANonceInfo) {
SVProgressHUD.dismiss()
GIDSignIn.sharedInstance.disconnect()
loginFields.nonceInfo = nonceInfo
loginFields.nonceUserID = userID
if tracker.shouldUseLegacyTracker() {
track(.loginSocial2faNeeded)
}
loginDelegate?.googleNeedsMultifactorCode(loginFields: loginFields)
delegate?.googleNeedsMultifactorCode(loginFields: loginFields)
}
// Google account login was successful, but a WP password is required.
func existingUserNeedsConnection(_ email: String) {
SVProgressHUD.dismiss()
GIDSignIn.sharedInstance.disconnect()
loginFields.username = email
loginFields.emailAddress = email
if tracker.shouldUseLegacyTracker() {
track(.loginSocialAccountsNeedConnecting)
}
loginDelegate?.googleExistingUserNeedsConnection(loginFields: loginFields)
delegate?.googleExistingUserNeedsConnection(loginFields: loginFields)
}
// Google account login failed.
func displayRemoteError(_ error: Error) {
SVProgressHUD.dismiss()
GIDSignIn.sharedInstance.disconnect()
var errorTitle = LocalizedText.googleUnableToConnect
var errorDescription = error.localizedDescription
let unknownUser = (error as NSError).code == WordPressComOAuthError.unknownUser.rawValue
if unknownUser {
errorTitle = LocalizedText.googleConnected
errorDescription = String(format: LocalizedText.googleConnectedError, loginFields.username)
if tracker.shouldUseLegacyTracker() {
track(.loginSocialErrorUnknownUser)
}
} else {
// Don't track unknown user for unified Auth.
tracker.track(failure: errorDescription)
}
loginDelegate?.googleLoginFailed(errorTitle: errorTitle, errorDescription: errorDescription, loginFields: loginFields)
delegate?.googleLoginFailed(errorTitle: errorTitle, errorDescription: errorDescription, loginFields: loginFields, unknownUser: unknownUser)
}
}
// MARK: - Sign Up Methods
private extension GoogleAuthenticator {
/// Creates a WordPress.com account with the associated Google token and email.
///
func createWordPressComUser(token: String, email: String) {
SVProgressHUD.show()
let service = SignupService()
service.createWPComUserWithGoogle(token: token, success: { [weak self] accountCreated, wpcomUsername, wpcomToken in
let wpcom = WordPressComCredentials(authToken: wpcomToken, isJetpackLogin: false, multifactor: false, siteURL: self?.loginFields.siteAddress ?? "")
let credentials = AuthenticatorCredentials(wpcom: wpcom)
// New Account
if accountCreated {
SVProgressHUD.dismiss()
// Notify the host app
self?.authenticationDelegate?.createdWordPressComAccount(username: wpcomUsername, authToken: wpcomToken)
// Notify the delegate
self?.accountCreated(credentials: credentials)
return
}
// Existing Account
// Sync host app
self?.authenticationDelegate?.sync(credentials: credentials) {
SVProgressHUD.dismiss()
// Notify delegate
self?.logInInstead(credentials: credentials)
}
}, failure: { [weak self] error in
SVProgressHUD.dismiss()
// Notify delegate
self?.signupFailed(error: error)
})
}
func accountCreated(credentials: AuthenticatorCredentials) {
// This stat is part of a funnel that provides critical information. Before
// making ANY modification to this stat please refer to: p4qSXL-35X-p2
track(.createdAccount)
// This stat is part of a funnel that provides critical information. Please
// consult with your lead before removing this event.
track(.signedIn)
tracker.track(step: .success, ifTrackingNotEnabled: {
track(.signupSocialSuccess)
})
signupDelegate?.googleFinishedSignup(credentials: credentials, loginFields: loginFields)
delegate?.googleFinishedSignup(credentials: credentials, loginFields: loginFields)
}
func logInInstead(credentials: AuthenticatorCredentials) {
tracker.set(flow: .loginWithGoogle)
// This stat is part of a funnel that provides critical information. Please
// consult with your lead before removing this event.
track(.signedIn)
tracker.track(step: .start) {
track(.signupSocialToLogin)
track(.loginSocialSuccess)
}
signupDelegate?.googleLoggedInInstead(credentials: credentials, loginFields: loginFields)
delegate?.googleLoggedInInstead(credentials: credentials, loginFields: loginFields)
}
func signupFailed(error: Error) {
tracker.track(failure: error.localizedDescription, ifTrackingNotEnabled: {
track(.signupSocialFailure, properties: ["error": error.localizedDescription])
})
signupDelegate?.googleSignupFailed(error: error, loginFields: loginFields)
delegate?.googleSignupFailed(error: error, loginFields: loginFields)
}
}