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
496
497
498
499
500
501
502
|
//
// AccountViewController.swift
// MullvadVPN
//
// Created by pronebird on 20/03/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import StoreKit
import UIKit
import Logging
protocol AccountViewControllerDelegate: AnyObject {
func accountViewControllerDidLogout(_ controller: AccountViewController)
}
class AccountViewController: UIViewController, AppStorePaymentObserver, TunnelObserver {
private let contentView: AccountContentView = {
let contentView = AccountContentView()
contentView.translatesAutoresizingMaskIntoConstraints = false
return contentView
}()
private var copyToPasteboardWork: DispatchWorkItem?
private var pendingPayment: SKPayment?
private let alertPresenter = AlertPresenter()
private let logger = Logger(label: "AccountViewController")
weak var delegate: AccountViewControllerDelegate?
private lazy var purchaseButtonInteractionRestriction =
UserInterfaceInteractionRestriction { [weak self] (enableUserInteraction, _) in
// Make sure to disable the button if the product is not loaded
self?.contentView.purchaseButton.isEnabled = enableUserInteraction &&
self?.product != nil &&
AppStorePaymentManager.canMakePayments
}
private lazy var viewControllerInteractionRestriction =
UserInterfaceInteractionRestriction { [weak self] (enableUserInteraction, animated) in
self?.setEnableUserInteraction(enableUserInteraction, animated: true)
}
private lazy var compoundInteractionRestriction =
CompoundUserInterfaceInteractionRestriction(restrictions: [
purchaseButtonInteractionRestriction, viewControllerInteractionRestriction])
private var product: SKProduct?
// MARK: - View lifecycle
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .secondaryColor
let scrollView = UIScrollView()
scrollView.translatesAutoresizingMaskIntoConstraints = false
scrollView.addSubview(contentView)
view.addSubview(scrollView)
NSLayoutConstraint.activate([
scrollView.topAnchor.constraint(equalTo: view.topAnchor),
scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
contentView.topAnchor.constraint(equalTo: scrollView.topAnchor),
contentView.bottomAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.bottomAnchor),
contentView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor),
contentView.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor),
contentView.widthAnchor.constraint(equalTo: scrollView.widthAnchor),
])
navigationItem.title = NSLocalizedString(
"NAVIGATION_TITLE",
tableName: "Account",
value: "Account",
comment: ""
)
contentView.accountTokenRowView.accountNumber = TunnelManager.shared.accountNumber
contentView.accountTokenRowView.copyAccountNumber = { [weak self] in
self?.copyAccountToken()
}
contentView.restorePurchasesButton.addTarget(self, action: #selector(restorePurchases), for: .touchUpInside)
contentView.purchaseButton.addTarget(self, action: #selector(doPurchase), for: .touchUpInside)
contentView.logoutButton.addTarget(self, action: #selector(doLogout), for: .touchUpInside)
AppStorePaymentManager.shared.addPaymentObserver(self)
TunnelManager.shared.addObserver(self)
updateAccountExpiry(expiryDate: TunnelManager.shared.accountExpiry)
updateDeviceName(TunnelManager.shared.device?.name)
// Make sure to disable IAPs when payments are restricted
if AppStorePaymentManager.canMakePayments {
requestStoreProducts()
} else {
setPaymentsRestricted()
}
}
// MARK: - Private methods
private func updateDeviceName(_ deviceName: String?) {
contentView.accountDeviceRow.deviceName = deviceName
}
private func updateAccountExpiry(expiryDate: Date?) {
contentView.accountExpiryRowView.value = expiryDate
}
private func requestStoreProducts() {
let inAppPurchase = AppStoreSubscription.thirtyDays
contentView.purchaseButton.setTitle(inAppPurchase.localizedTitle, for: .normal)
contentView.purchaseButton.isLoading = true
purchaseButtonInteractionRestriction.increase(animated: true)
_ = AppStorePaymentManager.shared.requestProducts(with: [inAppPurchase]) { [weak self] completion in
guard let self = self else { return }
switch completion {
case .success(let response):
if let product = response.products.first {
self.setProduct(product, animated: true)
}
case .failure(let error):
self.didFailLoadingProducts(with: error)
case .cancelled:
break
}
self.contentView.purchaseButton.isLoading = false
self.purchaseButtonInteractionRestriction.decrease(animated: true)
}
}
private func setProduct(_ product: SKProduct, animated: Bool) {
self.product = product
let localizedTitle = product.customLocalizedTitle ?? ""
let localizedPrice = product.localizedPrice ?? ""
let format = NSLocalizedString(
"PURCHASE_BUTTON_TITLE_FORMAT",
tableName: "Account",
value: "%1$@ (%2$@)",
comment: ""
)
let title = String(format: format, localizedTitle, localizedPrice)
contentView.purchaseButton.setTitle(title, for: .normal)
}
private func didFailLoadingProducts(with error: Error) {
let title = NSLocalizedString(
"PURCHASE_BUTTON_CANNOT_CONNECT_TO_APPSTORE_LABEL",
tableName: "Account",
value: "Cannot connect to AppStore",
comment: ""
)
contentView.purchaseButton.setTitle(title, for: .normal)
}
private func setPaymentsRestricted() {
let title = NSLocalizedString(
"PURCHASE_BUTTON_PAYMENTS_RESTRICTED_LABEL",
tableName: "Account",
value: "Payments restricted",
comment: ""
)
contentView.purchaseButton.setTitle(title, for: .normal)
contentView.purchaseButton.isEnabled = false
}
private func setEnableUserInteraction(_ enableUserInteraction: Bool, animated: Bool) {
// Disable all buttons
[contentView.restorePurchasesButton, contentView.logoutButton].forEach { (button) in
button?.isEnabled = enableUserInteraction
}
// Disable any interaction within the view
view.isUserInteractionEnabled = enableUserInteraction
// Prevent view controller from being swiped away by user
if #available(iOS 13.0, *) {
isModalInPresentation = !enableUserInteraction
} else {
// Fallback on earlier versions
}
// Hide back button in navigation bar
navigationItem.setHidesBackButton(!enableUserInteraction, animated: animated)
// Show/hide the spinner next to "Paid until"
if enableUserInteraction {
contentView.accountExpiryRowView.activityIndicator.stopAnimating()
} else {
contentView.accountExpiryRowView.activityIndicator.startAnimating()
}
}
private func showTimeAddedConfirmationAlert(
with response: REST.CreateApplePaymentResponse,
context: REST.CreateApplePaymentResponse.Context)
{
let alertController = UIAlertController(
title: response.alertTitle(context: context),
message: response.alertMessage(context: context),
preferredStyle: .alert
)
alertController.addAction(
UIAlertAction(
title: NSLocalizedString(
"TIME_ADDED_ALERT_OK_ACTION",
tableName: "Account",
value: "OK",
comment: ""
),
style: .cancel
)
)
alertPresenter.enqueue(alertController, presentingController: self)
}
private func showLogoutConfirmation(animated: Bool, completion: @escaping (Bool) -> Void) {
let alertController = UIAlertController(
title: NSLocalizedString(
"LOGOUT_CONFIRMATION_ALERT_TITLE",
tableName: "Account",
value: "Log out",
comment: ""
),
message: NSLocalizedString(
"LOGOUT_CONFIRMATION_ALERT_MESSAGE",
tableName: "Account",
value: "Are you sure you want to log out?\n\nThis will erase the account number from this device. It is not possible for us to recover it for you. Make sure you have your account number saved somewhere, to be able to log back in.",
comment: ""
),
preferredStyle: .alert
)
alertController.addAction(
UIAlertAction(
title: NSLocalizedString(
"LOGOUT_CONFIRMATION_ALERT_CANCEL_ACTION",
tableName: "Account",
value: "Cancel",
comment: ""
),
style: .cancel,
handler: { (alertAction) in
completion(false)
})
)
alertController.addAction(
UIAlertAction(
title: NSLocalizedString(
"LOGOUT_CONFIRMATION_ALERT_YES_ACTION",
tableName: "Account",
value: "Log out",
comment: ""
),
style: .destructive,
handler: { (alertAction) in
completion(true)
})
)
alertPresenter.enqueue(alertController, presentingController: self)
}
private func confirmLogout() {
let message = NSLocalizedString(
"LOGGING_OUT_ALERT_TITLE",
tableName: "Account",
value: "Logging out. Please wait...",
comment: ""
)
let alertController = UIAlertController(
title: nil,
message: message,
preferredStyle: .alert
)
alertPresenter.enqueue(alertController, presentingController: self) {
TunnelManager.shared.unsetAccount {
DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(1)) {
alertController.dismiss(animated: true) {
self.delegate?.accountViewControllerDidLogout(self)
}
}
}
}
}
// MARK: - TunnelObserver
func tunnelManagerDidLoadConfiguration(_ manager: TunnelManager) {
// no-op
}
func tunnelManager(_ manager: TunnelManager, didUpdateTunnelState tunnelState: TunnelState) {
// no-op
}
func tunnelManager(_ manager: TunnelManager, didFailWithError error: TunnelManager.Error) {
// no-op
}
func tunnelManager(_ manager: TunnelManager, didUpdateTunnelSettings tunnelSettings: TunnelSettingsV2?) {
guard let tunnelSettings = tunnelSettings else {
return
}
updateDeviceName(tunnelSettings.device.name)
updateAccountExpiry(expiryDate: tunnelSettings.account.expiry)
}
// MARK: - AppStorePaymentObserver
func appStorePaymentManager(_ manager: AppStorePaymentManager, transaction: SKPaymentTransaction?, payment: SKPayment, accountToken: String?, didFailWithError error: AppStorePaymentManager.Error) {
let alertController = UIAlertController(
title: NSLocalizedString(
"CANNOT_COMPLETE_PURCHASE_ALERT_TITLE",
tableName: "Account",
value: "Cannot complete the purchase",
comment: ""
),
message: error.errorChainDescription,
preferredStyle: .alert
)
alertController.addAction(
UIAlertAction(
title: NSLocalizedString(
"CANNOT_COMPLETE_PURCHASE_ALERT_OK_ACTION",
tableName: "Account",
value: "OK",
comment: ""
), style: .cancel)
)
alertPresenter.enqueue(alertController, presentingController: self)
if payment == pendingPayment {
compoundInteractionRestriction.decrease(animated: true)
}
}
func appStorePaymentManager(_ manager: AppStorePaymentManager, transaction: SKPaymentTransaction, accountToken: String, didFinishWithResponse response: REST.CreateApplePaymentResponse) {
showTimeAddedConfirmationAlert(with: response, context: .purchase)
if transaction.payment == pendingPayment {
compoundInteractionRestriction.decrease(animated: true)
}
}
// MARK: - Actions
@objc private func doLogout() {
showLogoutConfirmation(animated: true) { confirmed in
if confirmed {
self.confirmLogout()
}
}
}
private func copyAccountToken() {
UIPasteboard.general.string = TunnelManager.shared.accountNumber
}
@objc private func doPurchase() {
guard let product = product, let accountNumber = TunnelManager.shared.accountNumber else { return }
let payment = SKPayment(product: product)
pendingPayment = payment
compoundInteractionRestriction.increase(animated: true)
AppStorePaymentManager.shared.addPayment(payment, for: accountNumber)
}
@objc private func restorePurchases() {
guard let accountNumber = TunnelManager.shared.accountNumber else { return }
compoundInteractionRestriction.increase(animated: true)
_ = AppStorePaymentManager.shared.restorePurchases(for: accountNumber) { completion in
switch completion {
case .success(let response):
self.showTimeAddedConfirmationAlert(with: response, context: .restoration)
case .failure(let error):
let alertController = UIAlertController(
title: NSLocalizedString(
"RESTORE_PURCHASES_FAILURE_ALERT_TITLE",
tableName: "Account",
value: "Cannot restore purchases",
comment: ""
),
message: error.errorChainDescription,
preferredStyle: .alert
)
alertController.addAction(
UIAlertAction(title: NSLocalizedString(
"RESTORE_PURCHASES_FAILURE_ALERT_OK_ACTION",
tableName: "Account",
value: "OK",
comment: ""
), style: .cancel)
)
self.alertPresenter.enqueue(alertController, presentingController: self)
case .cancelled:
break
}
self.compoundInteractionRestriction.decrease(animated: true)
}
}
}
private extension REST.CreateApplePaymentResponse {
enum Context {
case purchase
case restoration
}
func alertTitle(context: Context) -> String {
switch context {
case .purchase:
return NSLocalizedString(
"TIME_ADDED_ALERT_SUCCESS_TITLE",
tableName: "Account",
value: "Thanks for your purchase",
comment: ""
)
case .restoration:
return NSLocalizedString(
"RESTORE_PURCHASES_ALERT_TITLE",
tableName: "Account",
value: "Restore purchases",
comment: ""
)
}
}
func alertMessage(context: Context) -> String {
switch context {
case .purchase:
return String(
format: NSLocalizedString(
"TIME_ADDED_ALERT_SUCCESS_MESSAGE",
tableName: "Account",
value: "%@ have been added to your account",
comment: ""
),
formattedTimeAdded ?? ""
)
case .restoration:
switch self {
case .noTimeAdded:
return NSLocalizedString(
"RESTORE_PURCHASES_ALERT_NO_TIME_ADDED_MESSAGE",
tableName: "Account",
value: "Your previous purchases have already been added to this account.",
comment: ""
)
case .timeAdded:
return String(
format: NSLocalizedString(
"RESTORE_PURCHASES_ALERT_TIME_ADDED_MESSAGE",
tableName: "Account",
value: "%@ have been added to your account",
comment: ""
),
formattedTimeAdded ?? ""
)
}
}
}
}
|