2018-10-11 07:13:19 +00:00
|
|
|
//
|
|
|
|
// AppConstants.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/15/18.
|
|
|
|
// Copyright (c) 2018 Davide De Rosa. All rights reserved.
|
|
|
|
//
|
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
|
|
|
|
import SwiftyBeaver
|
|
|
|
|
|
|
|
class AppConstants {
|
|
|
|
class Domain {
|
|
|
|
static let name = "passepartoutvpn.app"
|
|
|
|
}
|
|
|
|
|
|
|
|
class Store {
|
|
|
|
static let serviceFilename = "ConnectionService.json"
|
|
|
|
|
|
|
|
static let infrastructureCacheDirectory = "Infrastructures"
|
2018-10-22 08:28:53 +00:00
|
|
|
|
2018-10-25 19:51:00 +00:00
|
|
|
static let providersDirectory = "Providers"
|
|
|
|
|
|
|
|
static let hostsDirectory = "Hosts"
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class VPN {
|
2018-10-25 16:42:11 +00:00
|
|
|
static func baseConfiguration() -> TunnelKitProvider.Configuration {
|
2018-10-25 18:08:22 +00:00
|
|
|
let sessionBuilder = SessionProxy.ConfigurationBuilder(ca: CryptoContainer(pem: ""))
|
|
|
|
var builder = TunnelKitProvider.ConfigurationBuilder(sessionConfiguration: sessionBuilder.build())
|
2018-10-11 07:13:19 +00:00
|
|
|
builder.mtu = 1250
|
|
|
|
builder.shouldDebug = true
|
|
|
|
// builder.debugLogFormat = "$Dyyyy-MM-dd HH:mm:ss.SSS$d $L $N.$F:$l - $M"
|
|
|
|
// builder.debugLogFormat = "$DHH:mm:ss$d $N.$F:$l - $M"
|
|
|
|
builder.debugLogFormat = Log.debugFormat
|
|
|
|
return builder.build()
|
|
|
|
}
|
|
|
|
|
|
|
|
private static let connectivityStrings: [String] = [
|
|
|
|
"https://www.amazon.com",
|
|
|
|
"https://www.google.com",
|
|
|
|
"https://www.twitter.com",
|
|
|
|
"https://www.facebook.com",
|
|
|
|
"https://www.instagram.com"
|
|
|
|
]
|
|
|
|
|
|
|
|
static let connectivityURL = URL(string: connectivityStrings.customRandomElement())!
|
|
|
|
|
|
|
|
static let connectivityTimeout: TimeInterval = 10.0
|
|
|
|
}
|
|
|
|
|
2018-10-11 17:47:04 +00:00
|
|
|
class Web {
|
2018-12-09 11:11:53 +00:00
|
|
|
private static let version = "v1"
|
2018-10-11 17:47:04 +00:00
|
|
|
|
2018-12-09 11:11:53 +00:00
|
|
|
private static let baseURL = Repos.api.appendingPathComponent(version)
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
static func url(path: String) -> URL {
|
|
|
|
return baseURL.appendingPathComponent(path)
|
|
|
|
}
|
|
|
|
|
2018-10-11 17:47:04 +00:00
|
|
|
static let timeout: TimeInterval = 3.0
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
static let minimumUpdateInterval: TimeInterval = 600.0 // 10 minutes
|
|
|
|
}
|
|
|
|
|
|
|
|
class Log {
|
|
|
|
static let debugFormat = "$DHH:mm:ss$d - $M"
|
|
|
|
|
|
|
|
static var debugSnapshot: () -> String = { TransientStore.shared.service.vpnLog }
|
|
|
|
|
|
|
|
static let viewerRefreshInterval: TimeInterval = 3.0
|
|
|
|
|
|
|
|
static func configure() {
|
|
|
|
let console = ConsoleDestination()
|
|
|
|
console.useNSLog = true
|
2018-10-26 22:29:12 +00:00
|
|
|
console.minLevel = .debug
|
2018-10-11 07:13:19 +00:00
|
|
|
SwiftyBeaver.addDestination(console)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class IssueReporter {
|
|
|
|
static let recipient = "issues@\(Domain.name)"
|
|
|
|
|
2018-10-23 08:25:41 +00:00
|
|
|
class Filenames {
|
|
|
|
static var debugLog: String {
|
|
|
|
let fmt = DateFormatter()
|
|
|
|
fmt.dateFormat = "yyyyMMdd-HHmmss"
|
|
|
|
let iso = fmt.string(from: Date())
|
|
|
|
return "debug-\(iso).txt"
|
|
|
|
}
|
|
|
|
|
2018-11-04 10:51:44 +00:00
|
|
|
static let configuration = "profile.ovpn"
|
|
|
|
// static let configuration = "profile.ovpn.txt"
|
2018-10-23 08:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class MIME {
|
|
|
|
static let debugLog = "text/plain"
|
|
|
|
|
2018-10-23 08:39:50 +00:00
|
|
|
// static let configuration = "application/x-openvpn-profile"
|
|
|
|
static let configuration = "text/plain"
|
2018-10-23 08:25:41 +00:00
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class URLs {
|
|
|
|
static let website = URL(string: "https://\(Domain.name)")!
|
|
|
|
|
2019-02-03 21:07:10 +00:00
|
|
|
static let faq = website.appendingPathComponent("faq")
|
|
|
|
|
2018-10-29 20:22:08 +00:00
|
|
|
static let disclaimer = website.appendingPathComponent("disclaimer")
|
|
|
|
|
2018-10-29 19:59:05 +00:00
|
|
|
static let privacyPolicy = website.appendingPathComponent("privacy")
|
|
|
|
|
2018-11-03 21:31:59 +00:00
|
|
|
static let changelog = Repos.ios.appendingPathComponent("blob/master/CHANGELOG.md")
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2018-10-17 21:24:58 +00:00
|
|
|
static let subreddit = URL(string: "https://www.reddit.com/r/passepartout")!
|
|
|
|
|
2018-10-23 09:54:31 +00:00
|
|
|
private static let twitterHashtags = ["OpenVPN", "iOS", "macOS"]
|
|
|
|
|
|
|
|
static var twitterIntent: URL {
|
|
|
|
var text = L10n.Share.message
|
|
|
|
for ht in twitterHashtags {
|
|
|
|
text = text.replacingOccurrences(of: ht, with: "#\(ht)")
|
|
|
|
}
|
|
|
|
var comps = URLComponents(string: "https://twitter.com/intent/tweet")!
|
|
|
|
comps.queryItems = [
|
|
|
|
URLQueryItem(name: "url", value: website.absoluteString),
|
|
|
|
URLQueryItem(name: "via", value: "keeshux"),
|
|
|
|
URLQueryItem(name: "text", value: text)
|
|
|
|
]
|
|
|
|
return comps.url!
|
|
|
|
}
|
2018-10-23 09:28:24 +00:00
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
static func review(withId id: String) -> URL {
|
|
|
|
return URL(string: "https://itunes.apple.com/app/id\(id)?action=write-review")!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Repos {
|
2018-11-03 21:31:59 +00:00
|
|
|
private static let githubRoot = URL(string: "https://github.com/passepartoutvpn/")!
|
2018-10-11 17:47:04 +00:00
|
|
|
|
2018-12-06 09:25:05 +00:00
|
|
|
private static let githubRawRoot = URL(string: "https://\(Domain.name)/")!
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
private static func github(repo: String) -> URL {
|
|
|
|
return githubRoot.appendingPathComponent(repo)
|
|
|
|
}
|
|
|
|
|
2018-10-11 17:47:04 +00:00
|
|
|
private static func githubRaw(repo: String) -> URL {
|
|
|
|
return githubRawRoot.appendingPathComponent(repo)
|
|
|
|
}
|
|
|
|
|
2018-11-03 21:31:59 +00:00
|
|
|
static let ios = github(repo: "passepartout-ios")
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2018-12-09 11:11:53 +00:00
|
|
|
static let api = githubRaw(repo: "api")
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
2018-11-26 15:27:15 +00:00
|
|
|
struct License {
|
|
|
|
let name: String
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2018-11-26 15:27:15 +00:00
|
|
|
let type: String
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2018-11-26 15:27:15 +00:00
|
|
|
let url: URL
|
2018-12-04 09:41:33 +00:00
|
|
|
|
2018-11-26 15:27:15 +00:00
|
|
|
init(_ name: String, _ type: String, _ urlString: String) {
|
|
|
|
self.name = name
|
|
|
|
self.type = type
|
|
|
|
url = URL(string: urlString)!
|
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2018-11-26 15:27:15 +00:00
|
|
|
static let all: [License] = [
|
|
|
|
License(
|
|
|
|
"MBProgressHUD",
|
|
|
|
"MIT",
|
|
|
|
"https://raw.githubusercontent.com/jdg/MBProgressHUD/master/LICENSE"
|
|
|
|
),
|
|
|
|
License(
|
|
|
|
"OpenSSL",
|
|
|
|
"OpenSSL",
|
|
|
|
"https://www.openssl.org/source/license.txt"
|
|
|
|
),
|
|
|
|
License(
|
|
|
|
"PIATunnel",
|
|
|
|
"MIT",
|
|
|
|
"https://raw.githubusercontent.com/pia-foss/tunnel-apple/master/LICENSE"
|
|
|
|
),
|
|
|
|
License(
|
|
|
|
"SwiftGen",
|
|
|
|
"MIT",
|
|
|
|
"https://raw.githubusercontent.com/SwiftGen/SwiftGen/master/LICENSE"
|
|
|
|
),
|
|
|
|
License(
|
|
|
|
"SwiftyBeaver",
|
|
|
|
"MIT",
|
|
|
|
"https://raw.githubusercontent.com/SwiftyBeaver/SwiftyBeaver/master/LICENSE"
|
|
|
|
)
|
|
|
|
]
|
2018-12-04 09:41:33 +00:00
|
|
|
|
|
|
|
static var cachedContent: [String: String] = [:]
|
2018-11-26 15:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Notice {
|
|
|
|
let name: String
|
|
|
|
|
|
|
|
let statement: String
|
|
|
|
|
|
|
|
init(_ name: String, _ statement: String) {
|
|
|
|
self.name = name
|
|
|
|
self.statement = statement
|
|
|
|
}
|
|
|
|
|
|
|
|
static let all: [Notice] = [
|
|
|
|
Notice(
|
|
|
|
"Circle Icons",
|
|
|
|
"The logo is taken from the awesome Circle Icons set by Nick Roach."
|
|
|
|
),
|
|
|
|
Notice(
|
|
|
|
"OpenVPN",
|
|
|
|
"© 2002-2018 OpenVPN Inc. - OpenVPN is a registered trademark of OpenVPN Inc."
|
|
|
|
)
|
2018-10-11 07:13:19 +00:00
|
|
|
]
|
|
|
|
}
|
2018-12-10 11:53:01 +00:00
|
|
|
|
|
|
|
struct Rating {
|
|
|
|
static let eventCount = 3
|
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|