summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/DisplayChainedError.swift
blob: 0120d2fb14cdef29fd99d4ef363bb3fcff17fe60 (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
//
//  DisplayChainedError.swift
//  MullvadVPN
//
//  Created by pronebird on 04/06/2020.
//  Copyright © 2020 Mullvad VPN AB. All rights reserved.
//

import Foundation
import StoreKit

protocol DisplayChainedError {
    var errorChainDescription: String? { get }
}

extension REST.Error: DisplayChainedError {
    var errorChainDescription: String? {
        switch self {
        case .network(let urlError):
            return String(
                format: NSLocalizedString(
                    "NETWORK_ERROR",
                    tableName: "REST",
                    value: "Network error: %@",
                    comment: ""
                ),
                urlError.localizedDescription
            )
        case .unhandledResponse(let statusCode, let serverResponse):
            return String(
                format: NSLocalizedString(
                    "SERVER_ERROR",
                    tableName: "REST",
                    value: "Unexpected server response: %1$@ (HTTP status: %2$d)",
                    comment: ""
                ),
                serverResponse?.code.rawValue ?? "(no code)",
                statusCode
            )
        case .createURLRequest:
            return NSLocalizedString(
                "SERVER_REQUEST_ENCODING_ERROR",
                tableName: "REST",
                value: "Failure to create URL request",
                comment: ""
            )
        case .decodeResponse:
            return NSLocalizedString(
                "SERVER_SUCCESS_RESPONSE_DECODING_ERROR",
                tableName: "REST",
                value: "Server response decoding error",
                comment: ""
            )
        }
    }
}

extension TunnelManager.Error: DisplayChainedError {
    var errorChainDescription: String? {
        switch self {
        case .loadAllVPNConfigurations(let systemError):
            return String(
                format: NSLocalizedString(
                    "LOAD_ALL_VPN_CONFIGURATIONS_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to load system VPN configurations: %@",
                    comment: ""
                ),
                systemError.localizedDescription
            )
        case .reloadVPNConfiguration(let systemError):
            return String(
                format: NSLocalizedString(
                    "RELOAD_VPN_CONFIGURATIONS_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to reload a VPN configuration: %@",
                    comment: ""
                ),
                systemError.localizedDescription
            )
        case .saveVPNConfiguration(let systemError):
            return String(
                format: NSLocalizedString(
                    "SAVE_VPN_CONFIGURATION_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to save a VPN tunnel configuration: %@",
                    comment: ""
                ),
                systemError.localizedDescription
            )
        case .startVPNTunnel(let systemError):
            return String(
                format: NSLocalizedString(
                    "START_VPN_TUNNEL_ERROR",
                    tableName: "TunnelManager",
                    value: "System error when starting the VPN tunnel: %@",
                    comment: ""
                ),
                systemError.localizedDescription
            )
        case .removeVPNConfiguration(let systemError):
            return String(
                format: NSLocalizedString(
                    "REMOVE_VPN_CONFIGURATION_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to remove the system VPN configuration: %@",
                    comment: ""
                ),
                systemError.localizedDescription
            )
        case .readSettings:
            return NSLocalizedString(
                "READ_TUNNEL_SETTINGS_ERROR",
                tableName: "TunnelManager",
                value: "Failed to read settings",
                comment: ""
            )
        case .writeSettings:
            return NSLocalizedString(
                "WRITE_TUNNEL_SETTINGS_ERROR",
                tableName: "TunnelManager",
                value: "Failed to write settings",
                comment: ""
            )
        case .deleteSettings:
            return NSLocalizedString(
                "DELETE_TUNNEL_SETTINGS_ERROR",
                tableName: "TunnelManager",
                value: "Failed to delete settings",
                comment: ""
            )
        case .deleteDevice(let restError):
            return String(
                format: NSLocalizedString(
                    "DELETE_DEVICE_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to create a device: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        case .getDevice(let restError):
            return String(
                format: NSLocalizedString(
                    "CREATE_DEVICE_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to obtain device data: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        case .deviceRevoked:
            return NSLocalizedString(
                "DEVICE_REVOKED_ERROR",
                tableName: "TunnelManager",
                value: "Device is revoked.",
                comment: ""
            )
        case .createDevice(let restError):
            return String(
                format: NSLocalizedString(
                    "CREATE_DEVICE_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to create a device: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        case .rotateKey(let restError):
            return String(
                format: NSLocalizedString(
                    "ROTATE_KEY_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to rotate WireGuard key: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        case .unsetAccount:
            return NSLocalizedString(
                "UNSET_ACCOUNT_ERROR",
                tableName: "TunnelManager",
                value: "Internal error: account is unset",
                comment: ""
            )
        case .unsetTunnel:
            return NSLocalizedString(
                "UNSET_TUNNEL_ERROR",
                tableName: "TunnelManager",
                value: "Tunnel is unset.",
                comment: ""
            )
        case .readRelays:
            return NSLocalizedString(
                "READ_RELAYS_ERROR",
                tableName: "TunnelManager",
                value: "Failed to read relays.",
                comment: ""
            )
        case .cannotSatisfyRelayConstraints:
            return NSLocalizedString(
                "CANNOT_SATISFY_RELAY_CONSTRAINTS_ERROR",
                tableName: "TunnelManager",
                value: "Failed to satisfy relay constraints.",
                comment: ""
            )
        case .reloadTunnel(let error):
            return String(
                format: NSLocalizedString(
                    "RELOAD_TUNNEL_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to reload tunnel: %@",
                    comment: ""
                ),
                error.localizedDescription
            )
        case .getAccountData(let restError):
            return String(
                format: NSLocalizedString(
                    "GET_ACCOUNT_DATA_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to obtain account data: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        case .createAccount(let restError):
            return String(
                format: NSLocalizedString(
                    "CREATE_ACCOUNT_ERROR",
                    tableName: "TunnelManager",
                    value: "Failed to create new account: %@",
                    comment: ""
                ),
                restError.errorChainDescription ?? ""
            )
        }
    }
}

extension SKError: LocalizedError {
    public var errorDescription: String? {
        switch self.code {
        case .unknown:
            return NSLocalizedString(
                "UNKNOWN_ERROR",
                tableName: "StoreKitErrors",
                value: "Unknown error.",
                comment: ""
            )
        case .clientInvalid:
            return NSLocalizedString(
                "CLIENT_INVALID",
                tableName: "StoreKitErrors",
                value: "Client is not allowed to issue the request.",
                comment: ""
            )
        case .paymentCancelled:
            return NSLocalizedString(
                "PAYMENT_CANCELLED",
                tableName: "StoreKitErrors",
                value: "User cancelled the request.",
                comment: ""
            )
        case .paymentInvalid:
            return NSLocalizedString(
                "PAYMENT_INVALID",
                tableName: "StoreKitErrors",
                value: "Invalid purchase identifier.",
                comment: ""
            )
        case .paymentNotAllowed:
            return NSLocalizedString(
                "PAYMENT_NOT_ALLOWED",
                tableName: "StoreKitErrors",
                value: "This device is not allowed to make the payment.",
                comment: ""
            )
        default:
            return self.localizedDescription
        }
    }
}

extension AppStorePaymentManager.Error: DisplayChainedError {
    var errorChainDescription: String? {
        switch self {
        case .noAccountSet:
            return NSLocalizedString(
                "NO_ACCOUNT_SET_ERROR",
                tableName: "AppStorePaymentManager",
                value: "Internal error: account is not set.",
                comment: ""
            )

        case .validateAccount(let restError):
            let reason = restError.errorChainDescription ?? ""

            if case .unhandledResponse(_, let serverErrorResponse) = restError,
               serverErrorResponse?.code == .invalidAccount
            {
                return String(
                    format: NSLocalizedString(
                        "INVALID_ACCOUNT_ERROR",
                        tableName: "AppStorePaymentManager",
                        value: "Cannot add credit to invalid account.",
                        comment: ""
                    ), reason
                )
            } else {
                let reason = restError.errorChainDescription ?? ""

                return String(
                    format: NSLocalizedString(
                        "VALIDATE_ACCOUNT_ERROR",
                        tableName: "AppStorePaymentManager",
                        value: "Failed to validate account token: %@",
                        comment: ""
                    ), reason
                )
            }

        case .readReceipt(let readReceiptError):
            switch readReceiptError {
            case .refresh(let storeError):
                let skErrorMessage = (storeError as? SKError)?.errorDescription ?? storeError.localizedDescription

                return String(
                    format: NSLocalizedString(
                        "REFRESH_RECEIPT_ERROR",
                        tableName: "AppStorePaymentManager",
                        value: "Cannot refresh the AppStore receipt: %@",
                        comment: ""
                    ),
                    skErrorMessage
                )
            case .io(let ioError):
                return String(
                    format: NSLocalizedString(
                        "READ_RECEIPT_ERROR",
                        tableName: "AppStorePaymentManager",
                        value: "Cannot read the AppStore receipt from disk: %@",
                        comment: ""
                    ),
                    ioError.localizedDescription
                )
            case .doesNotExist:
                return NSLocalizedString(
                    "RECEIPT_NOT_FOUND_ERROR",
                    tableName: "AppStorePaymentManager",
                    value: "AppStore receipt is not found on disk.",
                    comment: ""
                )
            }

        case .sendReceipt(let restError):
            let reason = restError.errorChainDescription ?? ""
            let errorFormat = NSLocalizedString(
                "SEND_RECEIPT_ERROR",
                tableName: "AppStorePaymentManager",
                value: "Failed to send the receipt to server: %@",
                comment: ""
            )
            let recoverySuggestion = NSLocalizedString(
                "SEND_RECEIPT_RECOVERY_SUGGESTION",
                tableName: "AppStorePaymentManager",
                value: "Please retry by using the \"Restore purchases\" button.",
                comment: ""
            )
            var errorString = String(format: errorFormat, reason)
            errorString.append("\n\n")
            errorString.append(recoverySuggestion)
            return errorString

        case .storePayment(let storeError):
            return (storeError as? SKError)?.errorDescription ?? storeError.localizedDescription
        }
    }
}