2018-10-26 22:08:48 +00:00
|
|
|
//
|
|
|
|
// ConnectionService+Configurations.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 10/22/18.
|
|
|
|
// Copyright (c) 2018 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
2018-11-03 21:33:30 +00:00
|
|
|
// https://github.com/passepartoutvpn
|
2018-10-26 22:08:48 +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
|
2018-10-27 09:14:06 +00:00
|
|
|
import SwiftyBeaver
|
|
|
|
|
|
|
|
private let log = SwiftyBeaver.self
|
2018-10-26 22:08:48 +00:00
|
|
|
|
|
|
|
extension ConnectionService {
|
2018-10-27 10:39:22 +00:00
|
|
|
func save(configurationURL: URL, for key: ProfileKey) throws -> URL {
|
|
|
|
let destinationURL = targetConfigurationURL(for: key)
|
2018-10-26 22:08:48 +00:00
|
|
|
let fm = FileManager.default
|
|
|
|
try? fm.removeItem(at: destinationURL)
|
|
|
|
try fm.copyItem(at: configurationURL, to: destinationURL)
|
|
|
|
return destinationURL
|
|
|
|
}
|
|
|
|
|
2018-10-27 10:39:22 +00:00
|
|
|
func save(configurationURL: URL, for profile: ConnectionProfile) throws -> URL {
|
|
|
|
return try save(configurationURL: configurationURL, for: ProfileKey(profile))
|
|
|
|
}
|
|
|
|
|
|
|
|
func configurationURL(for key: ProfileKey) -> URL? {
|
|
|
|
let url = targetConfigurationURL(for: key)
|
2018-10-26 22:08:48 +00:00
|
|
|
guard FileManager.default.fileExists(atPath: url.path) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return url
|
|
|
|
}
|
2018-10-27 10:39:22 +00:00
|
|
|
|
|
|
|
func configurationURL(for profile: ConnectionProfile) -> URL? {
|
|
|
|
return configurationURL(for: ProfileKey(profile))
|
|
|
|
}
|
2018-10-26 22:08:48 +00:00
|
|
|
|
2018-11-02 14:49:14 +00:00
|
|
|
func targetConfigurationURL(for key: ProfileKey) -> URL {
|
2018-11-01 12:19:35 +00:00
|
|
|
return contextURL(key).appendingPathComponent(key.id).appendingPathExtension("ovpn")
|
2018-10-26 22:08:48 +00:00
|
|
|
}
|
2018-10-27 09:14:06 +00:00
|
|
|
|
|
|
|
func pendingConfigurationURLs() -> [URL] {
|
|
|
|
do {
|
2018-11-01 12:25:33 +00:00
|
|
|
let list = try FileManager.default.contentsOfDirectory(at: rootURL, includingPropertiesForKeys: nil, options: [])
|
2018-10-27 09:14:06 +00:00
|
|
|
return list.filter { $0.pathExtension == "ovpn" }
|
|
|
|
} catch let e {
|
|
|
|
log.error("Could not list imported configurations: \(e)")
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 22:08:48 +00:00
|
|
|
}
|