summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/LoginViewController.swift
blob: 56df3fcfb384eef3311b5d316bf3d5a3bda6a26c (plain)
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
//
//  LoginViewController.swift
//  MullvadVPN
//
//  Created by pronebird on 19/03/2019.
//  Copyright © 2019 Mullvad VPN AB. All rights reserved.
//

import UIKit
import Logging

enum AuthenticationMethod {
    case existingAccount, newAccount
}

enum LoginState {
    case `default`
    case authenticating(AuthenticationMethod)
    case failure(Account.Error)
    case success(AuthenticationMethod)
}

protocol LoginViewControllerDelegate: AnyObject {
    func loginViewController(_ controller: LoginViewController, loginWithAccountToken accountToken: String, completion: @escaping (Result<REST.AccountResponse, Account.Error>) -> Void)
    func loginViewControllerLoginWithNewAccount(_ controller: LoginViewController, completion: @escaping (Result<REST.AccountResponse, Account.Error>) -> Void)
    func loginViewControllerDidLogin(_ controller: LoginViewController)
}

class LoginViewController: UIViewController, RootContainment {

    private lazy var contentView: LoginContentView = {
        let view = LoginContentView(frame: self.view.bounds)
        view.translatesAutoresizingMaskIntoConstraints = false
        return view
    }()

    private lazy var accountInputAccessoryCancelButton: UIBarButtonItem = {
        return UIBarButtonItem(barButtonSystemItem: .cancel, target: self, action: #selector(cancelLogin))
    }()

    private lazy var accountInputAccessoryLoginButton: UIBarButtonItem = {
        let barButtonItem = UIBarButtonItem(
            title: NSLocalizedString(
                "LOGIN_ACCESSORY_TOOLBAR_BUTTON_TITLE",
                tableName: "Login",
                comment: "Title for 'Log in' button displayed in toolbar above keyboard on iPhone."
            ),
            style: .done,
            target: self,
            action: #selector(doLogin)
        )
        barButtonItem.accessibilityIdentifier = "LoginBarButtonItem"

        return barButtonItem
    }()

    private lazy var accountInputAccessoryToolbar: UIToolbar = {
        let toolbar = UIToolbar(frame: CGRect(x: 0, y: 0, width: 320, height: 44))
        toolbar.items = [
            self.accountInputAccessoryCancelButton,
            UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil),
            self.accountInputAccessoryLoginButton
        ]
        toolbar.sizeToFit()
        return toolbar
    }()

    private let logger = Logger(label: "LoginViewController")

    private var loginState = LoginState.default {
        didSet {
            loginStateDidChange()
        }
    }

    weak var delegate: LoginViewControllerDelegate?

    override var preferredStatusBarStyle: UIStatusBarStyle {
        return .lightContent
    }

    var preferredHeaderBarPresentation: HeaderBarPresentation {
        return HeaderBarPresentation(style: .transparent, showsDivider: false)
    }

    var prefersHeaderBarHidden: Bool {
        return false
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        view.addSubview(contentView)
        NSLayoutConstraint.activate([
            contentView.topAnchor.constraint(equalTo: view.topAnchor),
            contentView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
            contentView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
            contentView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
        ])

        contentView.accountInputGroup.onSendButton = { [weak self] _ in
            guard let self = self else { return }

            if self.canBeginLogin() {
                self.doLogin()
            }
        }

        contentView.accountInputGroup.setOnReturnKey { [weak self] _ in
            guard let self = self else { return true }

            if self.canBeginLogin() {
                self.doLogin()
                return true
            } else {
                return false
            }
        }

        // There is no need to set the input accessory toolbar on iPad since it has a dedicated
        // button to dismiss the keyboard.
        if case .phone = UIDevice.current.userInterfaceIdiom {
            contentView.accountInputGroup.textField.inputAccessoryView = self.accountInputAccessoryToolbar
        } else {
            contentView.accountInputGroup.textField.inputAccessoryView = nil
        }

        updateDisplayedMessage()
        updateStatusIcon()
        updateKeyboardToolbar()

        let notificationCenter = NotificationCenter.default

        contentView.createAccountButton.addTarget(self, action: #selector(createNewAccount), for: .touchUpInside)

        notificationCenter.addObserver(self,
                                       selector: #selector(textDidChange(_:)),
                                       name: UITextField.textDidChangeNotification,
                                       object: contentView.accountInputGroup.textField)
    }

    override var disablesAutomaticKeyboardDismissal: Bool {
        // Allow dismissing the keyboard in .formSheet presentation style
        return false
    }

    // MARK: - Public

    func reset() {
        loginState = .default
        contentView.accountInputGroup.clearToken()
        updateKeyboardToolbar()
    }

    // MARK: - UITextField notifications

    @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: - Actions

    @objc func cancelLogin() {
        view.endEditing(true)
    }

    @objc func doLogin() {
        let accountToken = contentView.accountInputGroup.parsedToken

        beginLogin(method: .existingAccount)
        self.delegate?.loginViewController(self, loginWithAccountToken: accountToken, completion: { [weak self] (result) in
            switch result {
            case .success:
                self?.endLogin(.success(.existingAccount))
            case .failure(let error):
                self?.endLogin(.failure(error))
            }
        })
    }

    @objc func createNewAccount() {
        beginLogin(method: .newAccount)

        contentView.accountInputGroup.clearToken()
        updateKeyboardToolbar()

        self.delegate?.loginViewControllerLoginWithNewAccount(self, completion: { [weak self] (result) in
            switch result {
            case .success(let response):
                self?.contentView.accountInputGroup.setToken(response.token)
                self?.endLogin(.success(.newAccount))
            case .failure(let error):
                self?.endLogin(.failure(error))
            }
        })
    }

    // MARK: - Private

    private func loginStateDidChange() {
        contentView.accountInputGroup.setLoginState(loginState, animated: true)

        // 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:
            contentView.activityIndicator.startAnimating()
            contentView.createAccountButton.isEnabled = false

        case .success:
            break

        case .default, .failure:
            contentView.createAccountButton.isEnabled = true
            contentView.activityIndicator.stopAnimating()
        }

        updateDisplayedMessage()
        updateStatusIcon()
    }

    private func updateStatusIcon() {
        switch loginState {
        case .failure:
            contentView.setStatusImage(style: .failure, visible: true, animated: true)

        case .success:
            contentView.setStatusImage(style: .success, visible: true, animated: true)

        case .default, .authenticating:
            contentView.setStatusImage(style: nil, visible: false, animated: true)
        }
    }

    private func beginLogin(method: AuthenticationMethod) {
        loginState = .authenticating(method)

        view.endEditing(true)
    }

    private func endLogin(_ nextLoginState: LoginState) {
        let oldLoginState = loginState

        loginState = nextLoginState

        if case .authenticating(.existingAccount) = oldLoginState, case .failure = loginState {
            contentView.accountInputGroup.textField.becomeFirstResponder()
        } else if case .success = loginState {
            // Navigate to the main view after 1s delay
            DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(1)) {
                self.delegate?.loginViewControllerDidLogin(self)
            }
        }
    }

    private func updateDisplayedMessage() {
        contentView.titleLabel.text = loginState.localizedTitle
        contentView.messageLabel.text = loginState.localizedMessage
    }

    private func updateKeyboardToolbar() {
        accountInputAccessoryLoginButton.isEnabled = canBeginLogin()
    }

    private func canBeginLogin() -> Bool {
        return contentView.accountInputGroup.satisfiesMinimumTokenLengthRequirement
    }
}

/// Private extension that brings localizable messages displayed in the Login view controller
private extension LoginState {
    var localizedTitle: String {
        switch self {
        case .default:
            return NSLocalizedString("HEADING_TITLE_DEFAULT", tableName: "Login", comment: "Default login prompt heading.")

        case .authenticating:
            return NSLocalizedString("HEADING_TITLE_AUTHENTICATING", tableName: "Login", comment: "Heading displayed during authentication.")

        case .failure:
            return NSLocalizedString("HEADING_TITLE_FAILURE", tableName: "Login", comment: "Heading displayed upon failure to authenticate.")

        case .success:
            return NSLocalizedString("HEADING_TITLE_SUCCESS", tableName: "Login", comment: "Heading displayed upon successful authentication.")
        }
    }

    var localizedMessage: String {
        switch self {
        case .default:
            return NSLocalizedString(
                "SUBHEAD_TITLE_DEFAULT",
                tableName: "Login",
                comment: "Default login prompt subhead."
            )

        case .authenticating(let method):
            switch method {
            case .existingAccount:
                return NSLocalizedString(
                    "SUBHEAD_TITLE_AUTHENTICATING",
                    tableName: "Login",
                    comment: "Subhead displayed during authentication."
                )
            case .newAccount:
                return NSLocalizedString(
                    "SUBHEAD_TITLE_CREATING_ACCOUNT",
                    tableName: "Login",
                    comment: "Subhead displayed when creating new account."
                )
            }

        case .failure(let error):
            let localizedUnknownInternalError = NSLocalizedString(
                "SUBHEAD_TITLE_INTERNAL_ERROR",
                tableName: "Login",
                comment: "Subhead displayed in the event of internal error."
            )

            switch error {
            case .createAccount(let rpcError), .verifyAccount(let rpcError):
                return rpcError.errorChainDescription ?? ""
            case .tunnelConfiguration(let error):
                if case .pushWireguardKey(let pushError) = error {
                    switch pushError {
                    case .network(let urlError):
                        return String(
                            format: NSLocalizedString(
                                "SUBHEAD_TITLE_NETWORK_ERROR_FORMAT",
                                tableName: "Login",
                                value: "Network error: %@",
                                comment: "Subhead displayed in the event of network error. Use %@ placeholder to place localized text describing network failure."
                            ),
                            urlError.localizedDescription
                        )

                    case .server(let serverError):
                        var message = serverError.errorDescription ?? NSLocalizedString(
                            "SUBHEAD_TITLE_UNKNOWN_SERVER_ERROR",
                            tableName: "Login",
                            comment: "Subhead displayed in the event of unknown server error."
                        )

                        if let recoverySuggestion = serverError.recoverySuggestion {
                            message.append("\n\(recoverySuggestion)")
                        }

                        return message

                    case .encodePayload, .decodeErrorResponse, .decodeSuccessResponse:
                        return localizedUnknownInternalError
                    }
                } else {
                    return localizedUnknownInternalError
                }
            }

        case .success(let method):
            switch method {
            case .existingAccount:
                return NSLocalizedString(
                    "SUBHEAD_TITLE_SUCCESS",
                    tableName: "Login",
                    comment: "Subhead displayed upon successful authentication using existing account token."
                )
            case .newAccount:
                return NSLocalizedString(
                    "SUBHEAD_TITLE_CREATED_ACCOUNT",
                    tableName: "Login",
                    comment: "Subhead displayed upon successful authentication with newly created account token."
                )
            }
        }
    }
}