aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-11-15 13:29:49 +0530
committerRoopesh Chander <roop@roopc.net>2018-11-15 13:39:56 +0530
commit1dac181803c5b673bfbc9729281027628c0bb97b (patch)
treeb7070145b20df45ec7cd2ff63528fc08540c0a34 /WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift
parentExporting: No need to check for duplicate names - we disallow it at creation time itself (diff)
downloadwireguard-apple-1dac181803c5b673bfbc9729281027628c0bb97b.tar.xz
wireguard-apple-1dac181803c5b673bfbc9729281027628c0bb97b.zip
Exporting: Refactor out zip exporting into a separate class
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift')
-rw-r--r--WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift32
1 files changed, 11 insertions, 21 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift b/WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift
index 4024213..dc2e27e 100644
--- a/WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/SettingsTableViewController.swift
@@ -63,20 +63,7 @@ class SettingsTableViewController: UITableViewController {
}
func exportConfigurationsAsZipFile(sourceView: UIView) {
- guard let tunnelsManager = tunnelsManager, tunnelsManager.numberOfTunnels() > 0 else {
- showErrorAlert(title: "Nothing to export", message: "There are no tunnels to export")
- return
- }
- var inputsToArchiver: [(fileName: String, contents: Data)] = []
- for i in 0 ..< tunnelsManager.numberOfTunnels() {
- guard let tunnelConfiguration = tunnelsManager.tunnel(at: i).tunnelConfiguration() else { continue }
- if let contents = WgQuickConfigFileWriter.writeConfigFile(from: tunnelConfiguration) {
- let name = tunnelConfiguration.interface.name
- assert(name != tunnelsManager.tunnel(at: i - 1).name)
- inputsToArchiver.append((fileName: "\(name).conf", contents: contents))
- }
- }
-
+ guard let tunnelsManager = tunnelsManager else { return }
guard let destinationDir = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first else {
return
}
@@ -87,16 +74,19 @@ class SettingsTableViewController: UITableViewController {
os_log("Failed to delete file: %{public}@ : %{public}@", log: OSLog.default, type: .error, destinationURL.absoluteString, error.localizedDescription)
}
+ let count = tunnelsManager.numberOfTunnels()
+ let tunnelConfigurations = (0 ..< count).compactMap { tunnelsManager.tunnel(at: $0).tunnelConfiguration() }
do {
- try ZipArchive.archive(inputs: inputsToArchiver, to: destinationURL)
- let activityVC = UIActivityViewController(activityItems: [destinationURL], applicationActivities: nil)
- // popoverPresentationController shall be non-nil on the iPad
- activityVC.popoverPresentationController?.sourceView = sourceView
- activityVC.popoverPresentationController?.sourceRect = sourceView.bounds
- present(activityVC, animated: true)
+ try ZipExporter.exportConfigFiles(tunnelConfigurations: tunnelConfigurations, to: destinationURL)
} catch (let error) {
- showErrorAlert(title: "Unable to export", message: "There was an error exporting the tunnel configuration archive: \(String(describing: error))")
+ ErrorPresenter.showErrorAlert(error: error, from: self)
}
+
+ let activityVC = UIActivityViewController(activityItems: [destinationURL], applicationActivities: nil)
+ // popoverPresentationController shall be non-nil on the iPad
+ activityVC.popoverPresentationController?.sourceView = sourceView
+ activityVC.popoverPresentationController?.sourceRect = sourceView.bounds
+ present(activityVC, animated: true)
}
func showErrorAlert(title: String, message: String) {