passepartout-apple/Passepartout/Sources/GroupConstants.swift

86 lines
3.1 KiB
Swift
Raw Normal View History

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