passepartout-apple/Passepartout/Sources/Model/Profiles/ProviderConnectionProfile.s...

181 lines
5.1 KiB
Swift
Raw Normal View History

2018-10-11 07:13:19 +00:00
//
// ProviderConnectionProfile.swift
// Passepartout
//
// Created by Davide De Rosa on 9/2/18.
2019-03-09 10:44:44 +00:00
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
2018-10-11 07:13:19 +00:00
//
2018-11-03 21:33:30 +00:00
// https://github.com/passepartoutvpn
2018-10-11 07:13:19 +00:00
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import Foundation
import TunnelKit
public class ProviderConnectionProfile: ConnectionProfile, Codable, Equatable {
public let name: Infrastructure.Name
2018-10-11 07:13:19 +00:00
public var infrastructure: Infrastructure {
2018-10-11 07:13:19 +00:00
return InfrastructureFactory.shared.get(name)
}
public var poolId: String {
2018-10-11 07:13:19 +00:00
didSet {
validateEndpoint()
}
}
public var pool: Pool? {
return infrastructure.pool(for: poolId) ?? infrastructure.pool(for: infrastructure.defaults.pool)
2018-10-11 07:13:19 +00:00
}
public var presetId: String {
2018-10-11 07:13:19 +00:00
didSet {
validateEndpoint()
}
}
public var preset: InfrastructurePreset? {
2018-10-11 07:13:19 +00:00
return infrastructure.preset(for: presetId)
}
public var manualAddress: String?
2018-10-11 07:13:19 +00:00
public var manualProtocol: EndpointProtocol?
2018-10-11 07:13:19 +00:00
public var usesProviderEndpoint: Bool {
2018-10-11 07:13:19 +00:00
return (manualAddress != nil) || (manualProtocol != nil)
}
public init(name: Infrastructure.Name) {
2018-10-11 07:13:19 +00:00
self.name = name
poolId = ""
presetId = ""
username = nil
poolId = infrastructure.defaults.pool
presetId = infrastructure.defaults.preset
}
public func sortedPools() -> [Pool] {
return infrastructure.pools.sorted()
2018-10-11 07:13:19 +00:00
}
private func validateEndpoint() {
guard let pool = pool, let preset = preset else {
manualAddress = nil
manualProtocol = nil
return
}
if let address = manualAddress, !pool.hasAddress(address) {
manualAddress = nil
}
if let proto = manualProtocol, !preset.hasProtocol(proto) {
manualProtocol = nil
}
}
// MARK: ConnectionProfile
public let context: Context = .provider
public var id: String {
2018-10-11 07:13:19 +00:00
return name.rawValue
}
public var username: String?
2018-10-11 07:13:19 +00:00
public var requiresCredentials: Bool {
return true
2018-10-11 07:13:19 +00:00
}
public func generate(from configuration: TunnelKitProvider.Configuration, preferences: Preferences) throws -> TunnelKitProvider.Configuration {
2018-10-11 07:13:19 +00:00
guard let pool = pool else {
preconditionFailure("Nil pool?")
2018-10-11 07:13:19 +00:00
}
guard let preset = preset else {
preconditionFailure("Nil preset?")
2018-10-11 07:13:19 +00:00
}
// assert(!pool.numericAddresses.isEmpty)
// XXX: copy paste, error prone
var builder = preset.configuration.builder()
builder.mtu = configuration.mtu
builder.shouldDebug = configuration.shouldDebug
builder.debugLogFormat = configuration.debugLogFormat
builder.masksPrivateData = configuration.masksPrivateData
2018-10-11 07:13:19 +00:00
if let address = manualAddress {
builder.prefersResolvedAddresses = true
builder.resolvedAddresses = [address]
} else {
builder.prefersResolvedAddresses = !preferences.resolvesHostname
builder.resolvedAddresses = pool.addresses()
2018-10-11 07:13:19 +00:00
}
if let proto = manualProtocol {
builder.endpointProtocols = [proto]
} else {
builder.endpointProtocols = preset.configuration.endpointProtocols
// builder.endpointProtocols = [
2018-11-10 09:29:51 +00:00
// EndpointProtocol(.udp, 8080),
// EndpointProtocol(.tcp, 443)
2018-10-11 07:13:19 +00:00
// ]
}
return builder.build()
}
2018-11-02 13:44:29 +00:00
public func with(newId: String) -> ConnectionProfile {
2018-11-02 13:44:29 +00:00
fatalError("Cannot rename a ProviderConnectionProfile")
}
2018-10-11 07:13:19 +00:00
}
public extension ProviderConnectionProfile {
2018-10-11 07:13:19 +00:00
static func ==(lhs: ProviderConnectionProfile, rhs: ProviderConnectionProfile) -> Bool {
return lhs.id == rhs.id
}
}
public extension ProviderConnectionProfile {
2018-10-11 07:13:19 +00:00
var mainAddress: String {
assert(pool != nil, "Getting provider main address but no pool set")
return pool?.hostname ?? ""
}
var addresses: [String] {
return pool?.addresses() ?? []
2018-10-11 07:13:19 +00:00
}
2018-11-10 09:29:51 +00:00
var protocols: [EndpointProtocol] {
2018-10-11 07:13:19 +00:00
return preset?.configuration.endpointProtocols ?? []
}
var canCustomizeEndpoint: Bool {
return true
}
var customAddress: String? {
return manualAddress
}
2018-11-10 09:29:51 +00:00
var customProtocol: EndpointProtocol? {
2018-10-11 07:13:19 +00:00
return manualProtocol
}
}