// // GracefulVPN.swift // Passepartout // // Created by Davide De Rosa on 9/18/18. // Copyright (c) 2018 Davide De Rosa. All rights reserved. // // https://github.com/keeshux // // 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 . // import Foundation import SwiftyBeaver private let log = SwiftyBeaver.self class GracefulVPN { private let service: ConnectionService private var profile: ConnectionProfile? private var vpn: VPNProvider? { guard let profile = profile else { return nil } guard service.isActiveProfile(profile) else { return nil } return VPN.shared } var isEnabled: Bool { return vpn?.isEnabled ?? false } var status: VPNStatus? { return vpn?.status } init(service: ConnectionService) { self.service = service } func prepare(withProfile profile: ConnectionProfile?, completionHandler: (() -> Void)?) { self.profile = profile log.info("Preparing...") service.clearVpnLastError() vpn?.prepare(completionHandler: completionHandler) } func reconnect(completionHandler: ((Error?) -> Void)?) { service.clearVpnLastError() do { log.info("Reconnecting...") try vpn?.reconnect(configuration: service.vpnConfiguration(), completionHandler: completionHandler) } catch let e { log.error("Could not reconnect: \(e)") } } func reinstall(completionHandler: ((Error?) -> Void)?) { service.clearVpnLastError() do { log.info("Reinstalling...") try vpn?.install(configuration: service.vpnConfiguration(), completionHandler: completionHandler) } catch let e { log.error("Could not reinstall: \(e)") } } func reinstallIfEnabled() { guard isEnabled else { log.warning("Not reinstalling (VPN is disabled)") return } if status != .disconnected { reconnect(completionHandler: nil) } else { reinstall(completionHandler: nil) } } func disconnect(completionHandler: ((Error?) -> Void)?) { vpn?.disconnect(completionHandler: completionHandler) } func uninstall(completionHandler: (() -> Void)?) { vpn?.uninstall(completionHandler: completionHandler) } func requestBytesCount(completionHandler: @escaping ((UInt, UInt)?) -> Void) { vpn?.requestBytesCount(completionHandler: completionHandler) } }