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
|
//
// LoginViewController.swift
// MullvadVPN
//
// Created by pronebird on 19/03/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import Combine
import UIKit
import os
private let kMinimumAccountTokenLength = 10
private let kValidAccountTokenCharacterSet = CharacterSet(charactersIn: "01234567890")
class LoginViewController: UIViewController, UITextFieldDelegate, RootContainment {
@IBOutlet var keyboardToolbar: UIToolbar!
@IBOutlet var keyboardToolbarLoginButton: UIBarButtonItem!
@IBOutlet var accountInputGroup: AccountInputGroupView!
@IBOutlet var accountTextField: UITextField!
@IBOutlet var titleLabel: UILabel!
@IBOutlet var messageLabel: UILabel!
@IBOutlet var loginForm: UIView!
@IBOutlet var loginFormWrapperBottomConstraint: NSLayoutConstraint!
@IBOutlet var activityIndicator: SpinnerActivityIndicatorView!
@IBOutlet var statusImageView: UIImageView!
private var loginSubscriber: AnyCancellable?
private var loginState = LoginState.default {
didSet {
loginStateDidChange()
}
}
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
var preferredHeaderBarStyle: HeaderBarStyle {
return .transparent
}
override func viewDidLoad() {
super.viewDidLoad()
accountTextField.inputAccessoryView = keyboardToolbar
accountTextField.attributedPlaceholder = NSAttributedString(
string: "0000 0000 0000 0000",
attributes: [.foregroundColor: UIColor.lightGray])
updateDisplayedMessage()
updateStatusIcon()
updateKeyboardToolbar()
let notificationCenter = NotificationCenter.default
notificationCenter.addObserver(self,
selector: #selector(keyboardWillShow(_:)),
name: UIWindow.keyboardWillShowNotification,
object: nil)
notificationCenter.addObserver(self,
selector: #selector(keyboardWillChangeFrame(_:)),
name: UIWindow.keyboardWillChangeFrameNotification,
object: nil)
notificationCenter.addObserver(self,
selector: #selector(keyboardWillHide(_:)),
name: UIWindow.keyboardWillHideNotification,
object: nil)
notificationCenter.addObserver(self,
selector: #selector(textDidBeginEditing(_:)),
name: UITextField.textDidBeginEditingNotification,
object: accountTextField)
notificationCenter.addObserver(self,
selector: #selector(textDidEndEditing(_:)),
name: UITextField.textDidEndEditingNotification,
object: accountTextField)
notificationCenter.addObserver(self,
selector: #selector(textDidChange(_:)),
name: UITextField.textDidChangeNotification,
object: accountTextField)
}
// MARK: - Keyboard notifications
@objc private func keyboardWillShow(_ notification: Notification) {
guard let keyboardFrameValue = notification.userInfo?[UIWindow.keyboardFrameEndUserInfoKey] as? NSValue else { return }
makeLoginFormVisible(keyboardFrame: keyboardFrameValue.cgRectValue)
}
@objc private func keyboardWillChangeFrame(_ notification: Notification) {
guard let keyboardFrameValue = notification.userInfo?[UIWindow.keyboardFrameEndUserInfoKey] as? NSValue else { return }
makeLoginFormVisible(keyboardFrame: keyboardFrameValue.cgRectValue)
}
@objc private func keyboardWillHide(_ notification: Notification) {
loginFormWrapperBottomConstraint.constant = 0
view.layoutIfNeeded()
}
// MARK: - UITextField notifications
@objc func textDidBeginEditing(_ notification: Notification) {
updateStatusIcon()
}
@objc func textDidEndEditing(_ notification: Notification) {
updateStatusIcon()
}
@objc func textDidChange(_ notification: Notification) {
// Reset the text style as user start typing
if case .failure = loginState {
loginState = .default
}
// Enable the log in button in the keyboard toolbar
updateKeyboardToolbar()
}
// MARK: - UITextFieldDelegate
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
// prevent the change if the replacement string contains disallowed characters
return string.unicodeScalars.allSatisfy { kValidAccountTokenCharacterSet.contains($0) }
}
// MARK: - Actions
@IBAction func unwindFromAccount(segue: UIStoryboardSegue) {
loginState = .default
accountTextField.text = ""
updateKeyboardToolbar()
}
@IBAction func cancelLogin() {
view.endEditing(true)
}
@IBAction func doLogin() {
let accountToken = accountTextField.text ?? ""
beginLogin()
loginSubscriber = Account.shared.login(with: accountToken)
.receive(on: DispatchQueue.main)
.sink(receiveCompletion: { (completionResult) in
switch completionResult {
case .finished:
self.endLogin(.success)
case .failure(let error):
self.endLogin(.failure(error))
}
}, receiveValue: { _ in })
}
@IBAction func openCreateAccount() {
UIApplication.shared.open(WebLinks.createAccountURL, options: [:])
}
// MARK: - Private
private func loginStateDidChange() {
accountInputGroup.loginState = loginState
// Keep the settings button disabled to prevent user from going to settings while
// authentication or during the delay after the successful login and transition to the main
// controller.
switch loginState {
case .authenticating:
activityIndicator.startAnimating()
// Fallthrough to make sure that the settings button is disabled
// in .authenticating and .success cases.
fallthrough
case .success:
rootContainerController?.headerBarSettingsButton.isEnabled = false
case .default, .failure:
rootContainerController?.headerBarSettingsButton.isEnabled = true
activityIndicator.stopAnimating()
}
updateDisplayedMessage()
updateStatusIcon()
}
private func updateStatusIcon() {
switch loginState {
case .failure:
let opacity: CGFloat = self.accountTextField.isEditing ? 0 : 1
statusImageView.image = UIImage(imageLiteralResourceName: "IconFail")
animateStatusImage(to: opacity)
case .success:
statusImageView.image = UIImage(imageLiteralResourceName: "IconSuccess")
animateStatusImage(to: 1)
case .default, .authenticating:
animateStatusImage(to: 0)
}
}
private func animateStatusImage(to alpha: CGFloat) {
UIView.animate(withDuration: 0.25) {
self.statusImageView.alpha = alpha
}
}
private func beginLogin() {
loginState = .authenticating
view.endEditing(true)
}
private func endLogin(_ nextLoginState: LoginState) {
loginState = nextLoginState
if case .failure = loginState {
accountTextField.becomeFirstResponder()
} else if case .success = loginState {
// Navigate to the main view after 1s delay
DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(1)) {
self.rootContainerController?.headerBarSettingsButton.isEnabled = true
self.performSegue(withIdentifier: SegueIdentifier.Login.showConnect.rawValue,
sender: self)
}
}
}
private func updateDisplayedMessage() {
titleLabel.text = loginState.localizedTitle
messageLabel.text = loginState.localizedMessage
}
private func updateKeyboardToolbar() {
let accountTokenLength = accountTextField.text?.count ?? 0
let enableButton = accountTokenLength >= kMinimumAccountTokenLength
keyboardToolbarLoginButton.isEnabled = enableButton
}
private func makeLoginFormVisible(keyboardFrame: CGRect) {
let convertedKeyboardFrame = view.convert(keyboardFrame, from: nil)
let (_, remainder) = view.frame.divided(atDistance: convertedKeyboardFrame.minY, from: CGRectEdge.minYEdge)
loginFormWrapperBottomConstraint.constant = remainder.height
view.layoutIfNeeded()
}
}
/// Private extension that brings localizable messages displayed in the Login view controller
private extension LoginState {
var localizedTitle: String {
switch self {
case .default:
return NSLocalizedString("Login", comment: "")
case .authenticating:
return NSLocalizedString("Logging in...", comment: "")
case .failure:
return NSLocalizedString("Login failed", comment: "")
case .success:
return NSLocalizedString("Logged in", comment: "")
}
}
var localizedMessage: String {
switch self {
case .default:
return NSLocalizedString("Enter your account number", comment: "")
case .authenticating:
return NSLocalizedString("Checking account number", comment: "")
case .failure(let error):
return error.failureReason ?? ""
case .success:
return NSLocalizedString("Correct account number", comment: "")
}
}
}
|