Make provisioning ids dynamic via .xcconfig
This commit is contained in:
parent
87527ed290
commit
60b967ee3a
|
@ -8,7 +8,7 @@
|
||||||
</array>
|
</array>
|
||||||
<key>com.apple.security.application-groups</key>
|
<key>com.apple.security.application-groups</key>
|
||||||
<array>
|
<array>
|
||||||
<string>group.com.algoritmico.Passepartout</string>
|
<string>group.$(CFG_GROUP_ID)</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
//
|
||||||
|
// Config.xcconfig
|
||||||
|
// Passepartout
|
||||||
|
//
|
||||||
|
// Created by Davide De Rosa on 5/24/19.
|
||||||
|
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
||||||
|
//
|
||||||
|
// https://github.com/passepartoutvpn
|
||||||
|
//
|
||||||
|
// 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/>.
|
||||||
|
//
|
||||||
|
|
||||||
|
// Configuration settings file format documentation can be found at:
|
||||||
|
// https://help.apple.com/xcode/#/dev745c5c974
|
||||||
|
|
||||||
|
CFG_TEAM_ID = DTDYD63ZX9
|
||||||
|
CFG_APP_ID = com.algoritmico.ios.Passepartout
|
||||||
|
CFG_GROUP_ID = com.algoritmico.Passepartout
|
||||||
|
CFG_APPSTORE_ID = 1433648537
|
|
@ -105,5 +105,12 @@
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
|
<key>com.algoritmico.Passepartout.config</key>
|
||||||
|
<dict>
|
||||||
|
<key>group_id</key>
|
||||||
|
<string>group.$(CFG_GROUP_ID)</string>
|
||||||
|
<key>appstore_id</key>
|
||||||
|
<string>$(CFG_APPSTORE_ID)</string>
|
||||||
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.application-groups</key>
|
<key>com.apple.security.application-groups</key>
|
||||||
<array>
|
<array>
|
||||||
<string>group.com.algoritmico.Passepartout</string>
|
<string>group.$(CFG_GROUP_ID)</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -319,7 +319,7 @@ class OrganizerViewController: UITableViewController, TableModelHost {
|
||||||
}
|
}
|
||||||
|
|
||||||
private func writeReview() {
|
private func writeReview() {
|
||||||
let url = AppConstants.URLs.review(withId: GroupConstants.App.appId)
|
let url = AppConstants.URLs.review(withId: AppConstants.App.appStoreId)
|
||||||
UIApplication.shared.open(url, options: [:], completionHandler: nil)
|
UIApplication.shared.open(url, options: [:], completionHandler: nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -185,6 +185,7 @@
|
||||||
0E158AD920E11B0B00C85A82 /* EndpointViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EndpointViewController.swift; sourceTree = "<group>"; };
|
0E158AD920E11B0B00C85A82 /* EndpointViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EndpointViewController.swift; sourceTree = "<group>"; };
|
||||||
0E1D72B1213BFFCF00BA1586 /* ProviderPresetViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProviderPresetViewController.swift; sourceTree = "<group>"; };
|
0E1D72B1213BFFCF00BA1586 /* ProviderPresetViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProviderPresetViewController.swift; sourceTree = "<group>"; };
|
||||||
0E1D72B3213C118500BA1586 /* ConfigurationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigurationViewController.swift; sourceTree = "<group>"; };
|
0E1D72B3213C118500BA1586 /* ConfigurationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigurationViewController.swift; sourceTree = "<group>"; };
|
||||||
|
0E23B4A12298559800304C30 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
|
||||||
0E242735225944060064A1A3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intents.strings; sourceTree = "<group>"; };
|
0E242735225944060064A1A3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intents.strings; sourceTree = "<group>"; };
|
||||||
0E24273B225950450064A1A3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/About.storyboard; sourceTree = "<group>"; };
|
0E24273B225950450064A1A3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/About.storyboard; sourceTree = "<group>"; };
|
||||||
0E24273F225951B00064A1A3 /* InApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InApp.swift; sourceTree = "<group>"; };
|
0E24273F225951B00064A1A3 /* InApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InApp.swift; sourceTree = "<group>"; };
|
||||||
|
@ -461,6 +462,7 @@
|
||||||
0E1066CA20E0F85C004F98B7 /* Cells */,
|
0E1066CA20E0F85C004F98B7 /* Cells */,
|
||||||
0ECEE44C20E1120F00A6BB43 /* Tables */,
|
0ECEE44C20E1120F00A6BB43 /* Tables */,
|
||||||
0EDE8DF120C93ED8004C739C /* Scenes */,
|
0EDE8DF120C93ED8004C739C /* Scenes */,
|
||||||
|
0E23B4A12298559800304C30 /* Config.xcconfig */,
|
||||||
0EDE8DE220C86A13004C739C /* Passepartout.entitlements */,
|
0EDE8DE220C86A13004C739C /* Passepartout.entitlements */,
|
||||||
0E57F63B20C83FC5008323CF /* AppDelegate.swift */,
|
0E57F63B20C83FC5008323CF /* AppDelegate.swift */,
|
||||||
0E24273C225950450064A1A3 /* About.storyboard */,
|
0E24273C225950450064A1A3 /* About.storyboard */,
|
||||||
|
@ -1341,6 +1343,7 @@
|
||||||
};
|
};
|
||||||
0E57F65320C83FC7008323CF /* Debug */ = {
|
0E57F65320C83FC7008323CF /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = 0E23B4A12298559800304C30 /* Config.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
||||||
|
@ -1407,6 +1410,7 @@
|
||||||
};
|
};
|
||||||
0E57F65420C83FC7008323CF /* Release */ = {
|
0E57F65420C83FC7008323CF /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = 0E23B4A12298559800304C30 /* Config.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
||||||
|
@ -1480,7 +1484,7 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.algoritmico.ios.Passepartout;
|
PRODUCT_BUNDLE_IDENTIFIER = "$(CFG_APP_ID)";
|
||||||
PRODUCT_NAME = Passepartout;
|
PRODUCT_NAME = Passepartout;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout";
|
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
|
@ -1504,7 +1508,7 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.algoritmico.ios.Passepartout;
|
PRODUCT_BUNDLE_IDENTIFIER = "$(CFG_APP_ID)";
|
||||||
PRODUCT_NAME = Passepartout;
|
PRODUCT_NAME = Passepartout;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout";
|
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
|
@ -1527,7 +1531,7 @@
|
||||||
"@executable_path/../../Frameworks",
|
"@executable_path/../../Frameworks",
|
||||||
);
|
);
|
||||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.algoritmico.ios.Passepartout.Tunnel;
|
PRODUCT_BUNDLE_IDENTIFIER = "$(CFG_APP_ID).Tunnel";
|
||||||
PRODUCT_NAME = "Passepartout-Tunnel";
|
PRODUCT_NAME = "Passepartout-Tunnel";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout.Tunnel";
|
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout.Tunnel";
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
@ -1550,7 +1554,7 @@
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
"@executable_path/../../Frameworks",
|
"@executable_path/../../Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.algoritmico.ios.Passepartout.Tunnel;
|
PRODUCT_BUNDLE_IDENTIFIER = "$(CFG_APP_ID).Tunnel";
|
||||||
PRODUCT_NAME = "Passepartout-Tunnel";
|
PRODUCT_NAME = "Passepartout-Tunnel";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout.Tunnel";
|
PROVISIONING_PROFILE_SPECIFIER = "match Development com.algoritmico.ios.Passepartout.Tunnel";
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
|
|
@ -28,6 +28,22 @@ import TunnelKit
|
||||||
import SwiftyBeaver
|
import SwiftyBeaver
|
||||||
|
|
||||||
public class AppConstants {
|
public class AppConstants {
|
||||||
|
public class App {
|
||||||
|
public static let appStoreId: String = {
|
||||||
|
guard let identifier = GroupConstants.App.config["appstore_id"] as? String else {
|
||||||
|
fatalError("Missing appstore_id from Info.plist config")
|
||||||
|
}
|
||||||
|
return identifier
|
||||||
|
}()
|
||||||
|
|
||||||
|
public static let tunnelBundleId: String = {
|
||||||
|
guard let identifier = Bundle.main.infoDictionary?[kCFBundleIdentifierKey as String] as? String else {
|
||||||
|
fatalError("Missing kCFBundleIdentifierKey from Info.plist")
|
||||||
|
}
|
||||||
|
return "\(identifier).Tunnel"
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
public class Flags {
|
public class Flags {
|
||||||
public static let isBeta = false
|
public static let isBeta = false
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,22 +40,22 @@ public class GroupConstants {
|
||||||
|
|
||||||
public static let versionString = "\(versionNumber) (\(buildNumber))"
|
public static let versionString = "\(versionNumber) (\(buildNumber))"
|
||||||
|
|
||||||
public static let teamId = "DTDYD63ZX9"
|
public static let config: [String: Any] = {
|
||||||
|
guard let cfg = Bundle.main.infoDictionary?["com.algoritmico.Passepartout.config"] as? [String: Any] else {
|
||||||
|
fatalError("Missing app config from Info.plist")
|
||||||
|
}
|
||||||
|
return cfg
|
||||||
|
}()
|
||||||
|
|
||||||
public static let appId = "1433648537"
|
public static let groupId: String = {
|
||||||
|
guard let identifier = config["group_id"] as? String else {
|
||||||
#if os(iOS)
|
fatalError("Missing group_id from Info.plist config")
|
||||||
public static let appGroup = "group.com.algoritmico.Passepartout"
|
}
|
||||||
|
return identifier
|
||||||
public static let tunnelIdentifier = "com.algoritmico.ios.Passepartout.Tunnel"
|
}()
|
||||||
#else
|
|
||||||
public static let appGroup = "\(teamId).group.com.algoritmico.Passepartout"
|
|
||||||
|
|
||||||
public static let tunnelIdentifier = "com.algoritmico.macos.Passepartout.Tunnel"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
private static var containerURL: URL {
|
private static var containerURL: URL {
|
||||||
guard let url = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: appGroup) else {
|
guard let url = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: groupId) else {
|
||||||
print("Unable to access App Group container")
|
print("Unable to access App Group container")
|
||||||
return FileManager.default.userURL(for: .documentDirectory, appending: nil)
|
return FileManager.default.userURL(for: .documentDirectory, appending: nil)
|
||||||
}
|
}
|
||||||
|
|
|
@ -539,7 +539,7 @@ public class ConnectionService: Codable {
|
||||||
}
|
}
|
||||||
|
|
||||||
let protocolConfiguration = try cfg.generatedTunnelProtocol(
|
let protocolConfiguration = try cfg.generatedTunnelProtocol(
|
||||||
withBundleIdentifier: GroupConstants.App.tunnelIdentifier,
|
withBundleIdentifier: AppConstants.App.tunnelBundleId,
|
||||||
appGroup: appGroup,
|
appGroup: appGroup,
|
||||||
credentials: creds
|
credentials: creds
|
||||||
)
|
)
|
||||||
|
|
|
@ -119,7 +119,7 @@ public class TransientStore {
|
||||||
} catch let e {
|
} catch let e {
|
||||||
log.error("Could not decode service: \(e)")
|
log.error("Could not decode service: \(e)")
|
||||||
service = ConnectionService(
|
service = ConnectionService(
|
||||||
withAppGroup: GroupConstants.App.appGroup,
|
withAppGroup: GroupConstants.App.groupId,
|
||||||
baseConfiguration: cfg
|
baseConfiguration: cfg
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,6 @@ public class VPN {
|
||||||
#if targetEnvironment(simulator)
|
#if targetEnvironment(simulator)
|
||||||
public static let shared = MockVPNProvider()
|
public static let shared = MockVPNProvider()
|
||||||
#else
|
#else
|
||||||
public static let shared = StandardVPNProvider(bundleIdentifier: GroupConstants.App.tunnelIdentifier)
|
public static let shared = StandardVPNProvider(bundleIdentifier: AppConstants.App.tunnelBundleId)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
10
README.md
10
README.md
|
@ -108,12 +108,12 @@ For the VPN to work properly, the app requires:
|
||||||
|
|
||||||
both in the main app and the tunnel extension target.
|
both in the main app and the tunnel extension target.
|
||||||
|
|
||||||
Make sure to also update the following constants in `Passepartout/Sources/GroupConstants.swift` according to your developer account and your target bundle identifiers:
|
Make sure to update `Passepartout-iOS/Config.xcconfig` according to your developer account and your identifiers:
|
||||||
|
|
||||||
public static let teamId
|
CFG_TEAM_ID = A1B2C3D4E5
|
||||||
public static let appId
|
CFG_APP_ID = com.example.ios.MyApp
|
||||||
public static let appGroup
|
CFG_GROUP_ID = com.example.MyAppGroup // omit the "group." prefix
|
||||||
public static let tunnelIdentifier
|
CFG_APPSTORE_ID = 1234567890
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue