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
|
//
// AccountViewController.swift
// MullvadVPN
//
// Created by pronebird on 20/03/2019.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import MullvadLogging
import MullvadREST
import MullvadSettings
import MullvadTypes
import Operations
import StoreKit
import UIKit
enum AccountViewControllerAction: Sendable {
case deviceManagement
case finish
case logOut
case navigateToVoucher
case navigateToDeleteAccount
case restorePurchasesInfo
case showPurchaseOptions
case showFailedToLoadProducts
case showRestorePurchases
}
class AccountViewController: UIViewController, @unchecked Sendable {
typealias ActionHandler = (AccountViewControllerAction) -> Void
private let interactor: AccountInteractor
private let errorPresenter: PaymentAlertPresenter
private let contentView: AccountContentView = {
let contentView = AccountContentView()
return contentView
}()
private var isFetchingProducts = false
private var paymentState: PaymentState = .none
private let storeKit2TestProduct = StoreSubscription.thirtyDays.rawValue
var actionHandler: ActionHandler?
init(interactor: AccountInteractor, errorPresenter: PaymentAlertPresenter) {
self.interactor = interactor
self.errorPresenter = errorPresenter
super.init(nibName: nil, bundle: nil)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
// MARK: - View lifecycle
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .secondaryColor
navigationItem.title = NSLocalizedString("Account", comment: "")
navigationItem.rightBarButtonItem = UIBarButtonItem(
barButtonSystemItem: .done,
target: self,
action: #selector(handleDismiss)
)
contentView.accountTokenRowView.copyAccountNumber = { [weak self] in
self?.copyAccountToken()
}
contentView.accountDeviceRow.deviceManagementButtonAction = { [weak self] in
self?.actionHandler?(.deviceManagement)
}
contentView.restorePurchasesView.restoreButtonAction = { [weak self] in
self?.restorePurchases()
}
contentView.restorePurchasesView.infoButtonAction = { [weak self] in
self?.actionHandler?(.restorePurchasesInfo)
}
interactor.didReceiveTunnelState = { [weak self] in
guard let self else { return }
Task { @MainActor in
applyViewState(animated: true)
}
}
interactor.didReceiveDeviceState = { [weak self] deviceState in
Task { @MainActor in
self?.updateView(from: deviceState)
}
}
configUI()
addActions()
updateView(from: interactor.deviceState)
applyViewState(animated: false)
}
// MARK: - Private
private func configUI() {
view.addConstrainedSubviews([contentView]) {
contentView.pinEdgesToSuperview()
}
}
private func addActions() {
contentView.redeemVoucherButton.addTarget(
self,
action: #selector(redeemVoucher),
for: .touchUpInside
)
contentView.purchaseButton.addTarget(
self,
action: #selector(requestStoreProducts),
for: .touchUpInside
)
contentView.logoutButton.addTarget(self, action: #selector(logOut), for: .touchUpInside)
contentView.deleteButton.addTarget(self, action: #selector(deleteAccount), for: .touchUpInside)
contentView.storeKit2PurchaseButton.addTarget(
self, action: #selector(handleStoreKit2Purchase),
for: .touchUpInside
)
contentView.storeKit2RefundButton.addTarget(
self, action: #selector(handleStoreKit2Refund),
for: .touchUpInside
)
}
@MainActor
private func setPaymentState(_ newState: PaymentState, animated: Bool) {
paymentState = newState
applyViewState(animated: animated)
}
private func setIsFetchingProducts(_ isFetchingProducts: Bool, animated: Bool = false) {
self.isFetchingProducts = isFetchingProducts
applyViewState(animated: animated)
}
private func updateView(from deviceState: DeviceState) {
guard case let .loggedIn(accountData, deviceData) = deviceState else {
return
}
contentView.accountDeviceRow.deviceName = deviceData.name
contentView.accountTokenRowView.accountNumber = accountData.number
contentView.accountExpiryRowView.value = accountData.expiry
}
private func applyViewState(animated: Bool) {
let isInteractionEnabled = paymentState.allowsViewInteraction
contentView.purchaseButton.isEnabled =
!isFetchingProducts
&& isInteractionEnabled
&& !interactor.tunnelState.isBlockingInternet
contentView.accountDeviceRow.setButtons(enabled: isInteractionEnabled)
contentView.accountTokenRowView.setButtons(enabled: isInteractionEnabled)
contentView.restorePurchasesView.setButtons(enabled: isInteractionEnabled)
contentView.logoutButton.isEnabled = isInteractionEnabled
contentView.redeemVoucherButton.isEnabled = isInteractionEnabled
contentView.deleteButton.isEnabled = isInteractionEnabled
contentView.storeKit2PurchaseButton.isEnabled = isInteractionEnabled
contentView.storeKit2RefundButton.isEnabled = isInteractionEnabled
navigationItem.rightBarButtonItem?.isEnabled = isInteractionEnabled
view.isUserInteractionEnabled = isInteractionEnabled
isModalInPresentation = !isInteractionEnabled
navigationItem.setHidesBackButton(!isInteractionEnabled, animated: animated)
}
private func copyAccountToken() {
guard let accountData = interactor.deviceState.accountData else {
return
}
UIPasteboard.general.string = accountData.number
}
// MARK: - Actions
@objc private func logOut() {
actionHandler?(.logOut)
}
@objc private func handleDismiss() {
actionHandler?(.finish)
}
@objc private func redeemVoucher() {
actionHandler?(.navigateToVoucher)
}
@objc private func deleteAccount() {
actionHandler?(.navigateToDeleteAccount)
}
@objc private func requestStoreProducts() {
actionHandler?(.showPurchaseOptions)
}
@objc private func restorePurchases() {
actionHandler?(.showRestorePurchases)
}
// This function is for testing only
@objc private func handleStoreKit2Purchase() {
guard let accountData = interactor.deviceState.accountData else {
return
}
setPaymentState(.makingStoreKit2Purchase, animated: true)
Task {
do {
let product = try await Product.products(
for: [
storeKit2TestProduct
]
).first!
let token =
switch await interactor
.getPaymentToken(for: accountData.number)
{
case let .success(token):
UUID(uuidString: token)!
case let .failure(error):
throw error
}
let result = try await product.purchase(
options: [.appAccountToken(token)]
)
switch result {
case let .success(verification):
let transaction = try checkVerified(verification)
await sendReceiptToAPI(
accountNumber: accountData.number,
receipt: verification
)
await transaction.finish()
case .userCancelled:
print("User cancelled the purchase")
case .pending:
print("Purchase is pending")
@unknown default:
print("Unknown purchase result")
}
} catch {
print("Error: \(error)")
errorPresenter.showAlertForStoreKitError(error, context: .purchase)
}
setPaymentState(.none, animated: true)
}
}
@objc private func handleStoreKit2Refund() {
setPaymentState(.makingStoreKit2Refund, animated: true)
Task {
guard
let latestTransactionResult = await Transaction.latest(for: storeKit2TestProduct),
let windowScene = view.window?.windowScene
else { return }
do {
switch latestTransactionResult {
case let .verified(transaction):
let refundStatus = try await transaction.beginRefundRequest(in: windowScene)
switch refundStatus {
case .success:
print("Refund was successful")
errorPresenter.showAlertForRefund()
case .userCancelled:
print("User cancelled the refund")
@unknown default:
print("Unknown refund result")
}
case .unverified:
print("Transaction is unverified")
}
} catch {
print("Error: \(error)")
errorPresenter.showAlertForStoreKitError(error, context: .purchase)
}
setPaymentState(.none, animated: true)
}
}
private func checkVerified<T>(_ result: VerificationResult<T>) throws -> T {
switch result {
case .unverified:
throw StoreKit2Error.verificationFailed
case let .verified(safe):
return safe
}
}
private func sendReceiptToAPI(accountNumber: String, receipt: VerificationResult<Transaction>) async {
switch await interactor.sendStoreKitReceipt(receipt, for: accountNumber) {
case .success:
print("Receipt sent successfully")
case let .failure(error):
print("Error sending receipt: \(error)")
errorPresenter.showAlertForStoreKitError(error, context: .purchase)
}
}
}
private enum StoreKit2Error: Error {
case verificationFailed
}
|