aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2019-01-05 19:16:16 +0530
committerRoopesh Chander <roop@roopc.net>2019-01-14 14:52:33 +0530
commitcb778fe7e0bb27c33f2f4efc83d03e5f696c979f (patch)
tree9f13a1ed4548a35b98ee3af02f40e3b4139c64fd /WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift
parentmacOS: Manage tunnels: Handle the case when there are no tunnels (diff)
downloadwireguard-apple-cb778fe7e0bb27c33f2f4efc83d03e5f696c979f.tar.xz
wireguard-apple-cb778fe7e0bb27c33f2f4efc83d03e5f696c979f.zip
macOS: Consolidate presenting of the import panel
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift')
-rw-r--r--WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift18
1 files changed, 18 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift b/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift
new file mode 100644
index 0000000..b1ed2f5
--- /dev/null
+++ b/WireGuard/WireGuard/UI/macOS/ImportPanelPresenter.swift
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: MIT
+// Copyright © 2018 WireGuard LLC. All Rights Reserved.
+
+import Cocoa
+
+class ImportPanelPresenter {
+ static func presentImportPanel(tunnelsManager: TunnelsManager, sourceVC: NSViewController) {
+ guard let window = sourceVC.view.window else { return }
+ let openPanel = NSOpenPanel()
+ openPanel.allowedFileTypes = ["conf", "zip"]
+ openPanel.beginSheetModal(for: window) { [weak tunnelsManager] response in
+ guard let tunnelsManager = tunnelsManager else { return }
+ guard response == .OK else { return }
+ guard let url = openPanel.url else { return }
+ TunnelImporter.importFromFile(url: url, into: tunnelsManager, sourceVC: sourceVC, errorPresenterType: ErrorPresenter.self)
+ }
+ }
+}