2018-11-08 10:24:12 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
|
|
|
|
|
|
|
import NetworkExtension
|
|
|
|
|
|
|
|
extension NETunnelProviderProtocol {
|
|
|
|
convenience init?(tunnelConfiguration: TunnelConfiguration) {
|
|
|
|
assert(!tunnelConfiguration.interface.name.isEmpty)
|
|
|
|
guard let serializedTunnelConfiguration = try? JSONEncoder().encode(tunnelConfiguration) else { return nil }
|
|
|
|
|
|
|
|
self.init()
|
|
|
|
|
|
|
|
let appId = Bundle.main.bundleIdentifier!
|
|
|
|
providerBundleIdentifier = "\(appId).network-extension"
|
|
|
|
providerConfiguration = [
|
|
|
|
"tunnelConfiguration": serializedTunnelConfiguration,
|
2018-11-12 08:32:09 +00:00
|
|
|
"tunnelConfigurationVersion": 1
|
2018-11-08 10:24:12 +00:00
|
|
|
]
|
|
|
|
|
2018-12-12 21:33:14 +00:00
|
|
|
let endpoints = tunnelConfiguration.peers.compactMap {$0.endpoint}
|
2018-11-08 10:24:12 +00:00
|
|
|
if endpoints.count == 1 {
|
|
|
|
serverAddress = endpoints.first!.stringRepresentation()
|
|
|
|
} else if endpoints.isEmpty {
|
|
|
|
serverAddress = "Unspecified"
|
|
|
|
} else {
|
|
|
|
serverAddress = "Multiple endpoints"
|
|
|
|
}
|
|
|
|
username = tunnelConfiguration.interface.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func tunnelConfiguration() -> TunnelConfiguration? {
|
|
|
|
guard let serializedTunnelConfiguration = providerConfiguration?["tunnelConfiguration"] as? Data else { return nil }
|
|
|
|
return try? JSONDecoder().decode(TunnelConfiguration.self, from: serializedTunnelConfiguration)
|
|
|
|
}
|
|
|
|
}
|