-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Login] Use magic link for suspicious emails #15444
Merged
Merged
Changes from 9 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6ad5374
Add a new screen for requesting magic links
hichamboushaba 34791fe
Allow specifying the fallback button type
hichamboushaba bc9fdf7
Handle navigation to fallback screens
hichamboushaba d23499e
Fix username/password login to wordpress.com
hichamboushaba f52b0f5
Move logic to separate function
hichamboushaba 0176033
Handle requesting magic link and navigation
hichamboushaba 6274d23
Align button text on magic link sent screen
hichamboushaba 34df201
Add tracking
hichamboushaba e033e5f
Add release note
hichamboushaba be06d43
Allow magic link fallback button to use multiple lines when needed
hichamboushaba 83193e5
Remove the unused extra private statements
hichamboushaba 699fd7b
Use a specific intructions label for wpcom login
hichamboushaba 06e288a
Avoid prefilling the username field when signing in to WordPress.com
hichamboushaba f14aed8
Move layout dimensions to constants class
hichamboushaba 8d1b07d
Merge branch 'trunk' into issue/14878-login-suspicious-email-p1
hichamboushaba 533e08b
Merge branch 'trunk' into issue/14878-login-suspicious-email-p1
hichamboushaba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...erce/WordPressAuthenticator/Unified Auth/View Related/Login/MagicLinkFallbackAction.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// Defines the action of the fallback button in the Magic Link screens. | ||
/// | ||
enum MagicLinkFallbackAction { | ||
case password | ||
case wpcomUsernamePassword | ||
} |
230 changes: 230 additions & 0 deletions
230
...rdPressAuthenticator/Unified Auth/View Related/Login/MagicLinkRequestViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,230 @@ | ||
import UIKit | ||
import WordPressUI | ||
import SwiftUI | ||
import WordPressShared | ||
|
||
class MagicLinkRequestViewController: LoginViewController { | ||
private let stackView = UIStackView() | ||
let fallbackAction: MagicLinkFallbackAction | ||
|
||
init(fallbackAction: MagicLinkFallbackAction) { | ||
self.fallbackAction = fallbackAction | ||
super.init(nibName: nil, bundle: nil) | ||
} | ||
|
||
required init?(coder: NSCoder) { | ||
fatalError("init(coder:) has not been implemented") | ||
} | ||
|
||
override var sourceTag: WordPressSupportSourceTag { | ||
get { | ||
return .loginMagicLink | ||
} | ||
} | ||
|
||
override func viewDidLoad() { | ||
super.viewDidLoad() | ||
|
||
let email = loginFields.username | ||
if !email.isValidEmail() { | ||
assert(email.isValidEmail(), "The value of loginFields.username was not a valid email address.") | ||
} | ||
|
||
tracker.set(flow: .loginWithMagicLink) | ||
tracker.track(step: .start) | ||
|
||
configureStackView() | ||
} | ||
|
||
override func viewDidAppear(_ animated: Bool) { | ||
super.viewDidAppear(animated) | ||
WordPressAuthenticator.track(.loginMagicLinkRequestFormViewed) | ||
} | ||
} | ||
|
||
// MARK: Actions | ||
private extension MagicLinkRequestViewController { | ||
func sendMagicLink() { | ||
Task { @MainActor in | ||
tracker.track(click: .requestMagicLink) | ||
configureSubmitButton(animating: true) | ||
|
||
let result = await MagicLinkRequester().requestMagicLink(email: loginFields.username, jetpackLogin: loginFields.meta.jetpackLogin) | ||
|
||
configureSubmitButton(animating: false) | ||
|
||
switch result { | ||
case .success: | ||
let vc = MagicLinkRequestedViewController(email: loginFields.username, | ||
fallbackAction: fallbackAction) { [weak self] in | ||
self?.openFallbackScreen() | ||
} | ||
|
||
vc.loginFields = loginFields | ||
navigationController?.pushViewController(vc, animated: true) | ||
|
||
case .failure(let error): | ||
WordPressAuthenticator.track(.loginMagicLinkFailed, error: error) | ||
displayErrorAlert(Localization.magicLinkError, sourceTag: self.sourceTag) | ||
} | ||
} | ||
} | ||
|
||
func openFallbackScreen() { | ||
let vc: LoginViewController? | ||
switch self.fallbackAction { | ||
case .password: | ||
tracker.track(click: .loginWithAccountPassword) | ||
vc = PasswordViewController.instantiate(from: .password) | ||
case .wpcomUsernamePassword: | ||
tracker.track(click: .loginWithWPComUsernamePassword) | ||
vc = SiteCredentialsViewController.instantiate(from: .siteAddress) | ||
} | ||
|
||
guard let vc else { return } | ||
|
||
vc.loginFields = self.loginFields | ||
if fallbackAction == .wpcomUsernamePassword { | ||
vc.loginFields.siteAddress = "https://wordpress.com" | ||
} | ||
|
||
self.navigationController?.pushViewController(vc, animated: true) | ||
} | ||
} | ||
|
||
// MARK: UI Setup | ||
private extension MagicLinkRequestViewController { | ||
private func configureStackView() { | ||
stackView.axis = .vertical | ||
stackView.alignment = .leading | ||
stackView.spacing = 16 | ||
stackView.layoutMargins = UIEdgeInsets(top: 16, left: 16, bottom: 16, right: 16) | ||
stackView.isLayoutMarginsRelativeArrangement = true | ||
stackView.translatesAutoresizingMaskIntoConstraints = false | ||
view.addSubview(stackView) | ||
stackView.pinSubviewToAllEdges(view, insets: view.safeAreaInsets) | ||
|
||
let header = createHeader() | ||
stackView.addArrangedSubview(header) | ||
pinSubviewToHorizontalEdges(header) | ||
|
||
let message = UILabel() | ||
message.text = Localization.description | ||
message.font = .preferredFont(forTextStyle: .body) | ||
message.numberOfLines = 0 | ||
stackView.addArrangedSubview(message) | ||
pinSubviewToHorizontalEdges(message) | ||
|
||
let fallbackButton = createFallbackButton() | ||
stackView.addArrangedSubview(fallbackButton) | ||
|
||
let spacer = UIView() | ||
spacer.setContentHuggingPriority(.defaultLow, for: .vertical) | ||
stackView.addArrangedSubview(spacer) | ||
|
||
let primaryButton = createPrimaryButton() | ||
stackView.addArrangedSubview(primaryButton) | ||
pinSubviewToHorizontalEdges(primaryButton) | ||
} | ||
|
||
private func createHeader() -> UIView { | ||
hichamboushaba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
let headerStackView = UIStackView() | ||
headerStackView.spacing = 16 | ||
headerStackView.layoutMargins = UIEdgeInsets(top: 24, left: 16, bottom: 24, right: 16) | ||
hichamboushaba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
headerStackView.isLayoutMarginsRelativeArrangement = true | ||
headerStackView.axis = .horizontal | ||
|
||
let gravatar = UIImageView() | ||
gravatar.addConstraints([ | ||
gravatar.widthAnchor.constraint(equalToConstant: 32), | ||
gravatar.heightAnchor.constraint(equalToConstant: 32) | ||
]) | ||
let placeholder = UIImage.gridicon(.userCircle, size: CGSize(width: 32, height: 32)) | ||
gravatar.downloadGravatarWithEmail(loginFields.username, placeholderImage: placeholder) | ||
gravatar.tintColor = WordPressAuthenticator.shared.unifiedStyle?.borderColor ?? WordPressAuthenticator.shared.style.primaryNormalBorderColor | ||
headerStackView.addArrangedSubview(gravatar) | ||
|
||
|
||
let emailLabel = UILabel() | ||
emailLabel.text = loginFields.username | ||
emailLabel.font = .preferredFont(forTextStyle: .body) | ||
emailLabel.textColor = WordPressAuthenticator.shared.unifiedStyle?.gravatarEmailTextColor ?? WordPressAuthenticator.shared.unifiedStyle?.textSubtleColor ?? WordPressAuthenticator.shared.style.subheadlineColor | ||
headerStackView.addArrangedSubview(emailLabel) | ||
|
||
headerStackView.layer.cornerRadius = 8 | ||
headerStackView.layer.borderWidth = 1 | ||
headerStackView.layer.borderColor = UIColor.systemGray3.cgColor | ||
|
||
return headerStackView | ||
} | ||
|
||
private func createFallbackButton() -> UIButton { | ||
let fallbackButton = NUXButton() | ||
fallbackButton.contentInsets = .zero | ||
fallbackButton.buttonStyle = .linkButtonStyle | ||
fallbackButton.customizeFont(.preferredFont(forTextStyle: .body)) | ||
|
||
fallbackButton.setTitle(fallbackButtonTitle(), for: .normal) | ||
fallbackButton.on(.touchUpInside) { [weak self] _ in | ||
self?.openFallbackScreen() | ||
} | ||
return fallbackButton | ||
} | ||
|
||
private func createPrimaryButton() -> UIButton { | ||
let primaryButton = NUXButton() | ||
primaryButton.isPrimary = true | ||
submitButton = primaryButton | ||
primaryButton.setTitle(Localization.sendMagicLink, for: .normal) | ||
primaryButton.on(.touchUpInside) { [weak self] _ in | ||
self?.sendMagicLink() | ||
} | ||
|
||
return primaryButton | ||
} | ||
|
||
private func pinSubviewToHorizontalEdges(_ subView: UIView) { | ||
subView.translatesAutoresizingMaskIntoConstraints = false | ||
subView.leadingAnchor.constraint(equalTo: stackView.leadingAnchor, constant: stackView.layoutMargins.left).isActive = true | ||
subView.trailingAnchor.constraint(equalTo: stackView.trailingAnchor, constant: -stackView.layoutMargins.right).isActive = true | ||
} | ||
} | ||
|
||
private extension MagicLinkRequestViewController { | ||
struct Localization { | ||
static let description = NSLocalizedString( | ||
"login.magicLinkRequest.description", | ||
value: "We'll email you a link that'll log you in instantly, no password needed.", | ||
comment: "Description text for the magic link request form." | ||
) | ||
static let sendMagicLink = NSLocalizedString( | ||
"login.magicLinkRequest.sendMagicLink", | ||
value: "Send link by email", | ||
comment: "Button title to send the magic link." | ||
) | ||
static let passwordFallback = NSLocalizedString( | ||
"login.magicLinkRequest.passwordFallback", | ||
value: "Use your password instead", | ||
comment: "Button title to fallback to password login." | ||
) | ||
static let wpcomUsernamePasswordFallback = NSLocalizedString( | ||
"login.magicLinkRequest.wpcomUsernamePasswordFallback", | ||
value: "Use username and password instead", | ||
comment: "Button title to fallback to WordPress.com username and password login." | ||
) | ||
static let magicLinkError = NSLocalizedString( | ||
"login.magicLinkRequest.error", | ||
value: "Something went wrong. Please try again.", | ||
comment: "Error message when magic link request fails." | ||
) | ||
} | ||
|
||
private func fallbackButtonTitle() -> String { | ||
hichamboushaba marked this conversation as resolved.
Show resolved
Hide resolved
|
||
switch fallbackAction { | ||
case .password: | ||
return Localization.passwordFallback | ||
case .wpcomUsernamePassword: | ||
return Localization.wpcomUsernamePasswordFallback | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't use a xib file, as I still don't feel familiar with XCode UI for them, and I didn't use SwiftUI just to make sure the content is correctly styled to match the other screens. If you have any remarks about this please share them.