wireguard-apple/WireGuard/AppDelegate.swift

52 lines
1.6 KiB
Swift
Raw Normal View History

2018-05-23 19:49:10 +00:00
//
// Copyright © 2018 WireGuard LLC. All rights reserved.
2018-05-23 19:49:10 +00:00
//
import UIKit
2018-08-31 21:06:40 +00:00
import os.log
2018-05-23 19:49:10 +00:00
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
var appCoordinator: AppCoordinator!
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
self.window = UIWindow(frame: UIScreen.main.bounds)
self.appCoordinator = AppCoordinator(window: self.window!)
self.appCoordinator.start()
return true
}
2018-08-31 21:06:40 +00:00
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey: Any] = [:]) -> Bool {
defer {
do {
try FileManager.default.removeItem(at: url)
} catch {
os_log("Failed to remove item from Inbox: %{public}@", log: Log.general, type: .error, url.absoluteString)
}
}
2018-09-02 22:08:34 +00:00
if url.pathExtension == "conf" {
do {
try appCoordinator.importConfig(config: url)
} catch {
os_log("Unable to import config: %{public}@", log: Log.general, type: .error, url.absoluteString)
return false
}
return true
} else if url.pathExtension == "zip" {
do {
try appCoordinator.importConfigs(configZip: url)
} catch {
os_log("Unable to import config: %{public}@", log: Log.general, type: .error, url.absoluteString)
return false
}
return true
2018-08-31 21:06:40 +00:00
}
2018-09-02 22:08:34 +00:00
return false
2018-08-31 21:06:40 +00:00
}
2018-05-23 19:49:10 +00:00
}