2018-10-11 07:13:19 +00:00
|
|
|
//
|
|
|
|
// GroupConstants.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 6/7/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
|
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public class GroupConstants {
|
|
|
|
public class App {
|
|
|
|
public static let name = "Passepartout"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let tunnelKitName = "TunnelKit"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let title = name
|
|
|
|
// public static let title = "\u{1F511}"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let versionNumber = Bundle.main.infoDictionary!["CFBundleShortVersionString"] as! String
|
2018-10-18 11:57:56 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let buildNumber = Int(Bundle.main.infoDictionary![kCFBundleVersionKey as String] as! String)!
|
2018-10-18 11:57:56 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let versionString = "\(versionNumber) (\(buildNumber))"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let teamId = "DTDYD63ZX9"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let appId = "1433648537"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let appGroup = "group.com.algoritmico.Passepartout"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let tunnelIdentifier = "com.algoritmico.ios.Passepartout.Tunnel"
|
2018-10-11 07:13:19 +00:00
|
|
|
#else
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let appGroup = "\(teamId).group.com.algoritmico.Passepartout"
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let tunnelIdentifier = "com.algoritmico.macos.Passepartout.Tunnel"
|
2018-10-11 07:13:19 +00:00
|
|
|
#endif
|
2019-03-10 13:44:36 +00:00
|
|
|
|
|
|
|
private static var containerURL: URL {
|
|
|
|
guard let url = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: appGroup) else {
|
2019-03-18 09:59:15 +00:00
|
|
|
print("Unable to access App Group container")
|
|
|
|
return FileManager.default.userURL(for: .documentDirectory, appending: nil)
|
2019-03-10 13:44:36 +00:00
|
|
|
}
|
|
|
|
return url
|
|
|
|
}
|
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let documentsURL: URL = {
|
2019-03-10 13:44:36 +00:00
|
|
|
let url = containerURL.appendingPathComponent("Documents", isDirectory: true)
|
|
|
|
try? FileManager.default.createDirectory(at: url, withIntermediateDirectories: true, attributes: nil)
|
|
|
|
return url
|
|
|
|
}()
|
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let cachesURL: URL = {
|
2019-03-10 13:44:36 +00:00
|
|
|
let url = containerURL.appendingPathComponent("Library/Caches", isDirectory: true)
|
|
|
|
try? FileManager.default.createDirectory(at: url, withIntermediateDirectories: true, attributes: nil)
|
|
|
|
return url
|
|
|
|
}()
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public class VPN {
|
|
|
|
public static let dnsTimeout = 5000
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-03-18 10:29:28 +00:00
|
|
|
public static let sessionMarker = "--- EOF ---"
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
}
|