aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/ErrorPresenter.swift
blob: b085b97645924b8271a97332e56251173e604e17 (plain) (blame)
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
// SPDX-License-Identifier: MIT
// Copyright © 2018 WireGuard LLC. All Rights Reserved.

import UIKit
import os.log

class ErrorPresenter {
    static func errorMessage(for error: Error) -> (String, String) {

        if let error = error as? WireGuardAppError {
            return error.alertText()
        }

        switch (error) {

        // Importing a zip file
        case ZipArchiveError.cantOpenInputZipFile:
            return ("Unable to read zip archive", "The zip archive could not be read.")
        case ZipArchiveError.badArchive:
            return ("Unable to read zip archive", "Bad or corrupt zip archive.")
        case ZipImporterError.noTunnelsInZipArchive:
            return ("No tunnels in zip archive", "No .conf tunnel files were found inside the zip archive.")

        // Exporting a zip file
        case ZipArchiveError.cantOpenOutputZipFileForWriting:
            return ("Unable to create zip archive", "Could not create a zip file in the app's document directory.")
        case ZipExporterError.noTunnelsToExport:
            return ("Nothing to export", "There are no tunnels to export")

        default:
            return ("Error", error.localizedDescription)
        }
    }

    static func showErrorAlert(error: Error, from sourceVC: UIViewController?,
                               onDismissal: (() -> Void)? = nil, onPresented: (() -> Void)? = nil) {
        guard let sourceVC = sourceVC else { return }
        let (title, message) = ErrorPresenter.errorMessage(for: error)
        let okAction = UIAlertAction(title: "OK", style: .default) { (_) in
            onDismissal?()
        }
        let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
        alert.addAction(okAction)

        sourceVC.present(alert, animated: true, completion: onPresented)
    }

    static func showErrorAlert(title: String, message: String, from sourceVC: UIViewController?, onDismissal: (() -> Void)? = nil) {
        guard let sourceVC = sourceVC else { return }
        let okAction = UIAlertAction(title: "OK", style: .default) { (_) in
            onDismissal?()
        }
        let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
        alert.addAction(okAction)

        sourceVC.present(alert, animated: true)
    }
}