2024-09-23 13:02:26 +00:00
|
|
|
//
|
2024-10-10 14:20:36 +00:00
|
|
|
// Shared+App.swift
|
2024-09-23 13:02:26 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
2024-10-10 14:20:36 +00:00
|
|
|
// Created by Davide De Rosa on 2/24/24.
|
2024-09-23 13:02:26 +00:00
|
|
|
// Copyright (c) 2024 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/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AppData
|
|
|
|
import AppDataProfiles
|
|
|
|
import AppLibrary
|
2024-10-10 14:20:36 +00:00
|
|
|
import AppUI
|
2024-10-10 22:24:06 +00:00
|
|
|
import CommonLibrary
|
2024-09-23 13:02:26 +00:00
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
|
|
|
import UtilsLibrary
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
extension AppContext {
|
|
|
|
static let shared = AppContext(
|
|
|
|
iapManager: .shared,
|
|
|
|
profileManager: .shared,
|
2024-10-10 22:24:06 +00:00
|
|
|
profileProcessor: .shared,
|
2024-10-10 14:20:36 +00:00
|
|
|
tunnel: .shared,
|
|
|
|
tunnelEnvironment: .shared,
|
|
|
|
registry: .shared,
|
2024-10-13 09:36:34 +00:00
|
|
|
providerManager: .shared,
|
2024-10-10 14:20:36 +00:00
|
|
|
constants: .shared
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
extension ProfileManager {
|
|
|
|
static let shared: ProfileManager = {
|
2024-10-10 14:03:02 +00:00
|
|
|
let repository = localProfileRepository
|
2024-10-03 16:41:27 +00:00
|
|
|
|
|
|
|
let remoteStore = CoreDataPersistentStore(
|
|
|
|
logger: .default,
|
2024-10-10 17:28:01 +00:00
|
|
|
containerName: Constants.shared.containers.remote,
|
2024-10-10 14:20:36 +00:00
|
|
|
model: AppData.cdProfilesModel,
|
2024-10-03 16:41:27 +00:00
|
|
|
cloudKitIdentifier: BundleConfiguration.mainString(for: .cloudKitId),
|
|
|
|
author: nil
|
|
|
|
)
|
|
|
|
let remoteRepository = AppData.cdProfileRepositoryV3(
|
|
|
|
registry: .shared,
|
|
|
|
coder: CodableProfileCoder(),
|
2024-10-10 14:03:02 +00:00
|
|
|
context: remoteStore.context,
|
|
|
|
observingResults: true
|
2024-10-03 16:41:27 +00:00
|
|
|
) { error in
|
|
|
|
pp_log(.app, .error, "Unable to decode remote result: \(error)")
|
2024-10-02 11:35:49 +00:00
|
|
|
return .ignore
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-10-03 16:41:27 +00:00
|
|
|
return ProfileManager(repository: repository, remoteRepository: remoteRepository)
|
2024-09-23 13:02:26 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
// MARK: -
|
|
|
|
|
|
|
|
extension IAPManager {
|
|
|
|
static let shared = IAPManager(
|
|
|
|
customUserLevel: customUserLevel,
|
|
|
|
receiptReader: KvittoReceiptReader(),
|
|
|
|
// FIXME: #662, omit unrestrictedFeatures on release!
|
|
|
|
unrestrictedFeatures: [.interactiveLogin, .sharing],
|
|
|
|
productsAtBuild: productsAtBuild
|
|
|
|
)
|
|
|
|
|
|
|
|
private static var customUserLevel: AppUserLevel? {
|
|
|
|
if let envString = ProcessInfo.processInfo.environment["CUSTOM_USER_LEVEL"],
|
|
|
|
let envValue = Int(envString),
|
|
|
|
let testAppType = AppUserLevel(rawValue: envValue) {
|
|
|
|
|
|
|
|
return testAppType
|
|
|
|
}
|
|
|
|
if let infoValue = BundleConfiguration.mainIntegerIfPresent(for: .customUserLevel),
|
|
|
|
let testAppType = AppUserLevel(rawValue: infoValue) {
|
|
|
|
|
|
|
|
return testAppType
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
private static let productsAtBuild: BuildProducts<AppProduct> = {
|
|
|
|
#if os(iOS)
|
|
|
|
if $0 <= 2016 {
|
|
|
|
return [.Full.iOS]
|
|
|
|
} else if $0 <= 3000 {
|
|
|
|
return [.Features.networkSettings]
|
|
|
|
}
|
|
|
|
return []
|
|
|
|
#elseif os(macOS)
|
|
|
|
if $0 <= 3000 {
|
|
|
|
return [.Features.networkSettings]
|
|
|
|
}
|
|
|
|
return []
|
|
|
|
#else
|
|
|
|
return []
|
|
|
|
#endif
|
|
|
|
}
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
extension ProfileProcessor {
|
2024-10-10 22:31:32 +00:00
|
|
|
static let shared = ProfileProcessor {
|
2024-10-11 15:48:37 +00:00
|
|
|
ProfileManager.sharedTitle($0)
|
2024-10-10 22:31:32 +00:00
|
|
|
} processed: { profile in
|
2024-10-10 22:24:06 +00:00
|
|
|
var builder = profile.builder()
|
|
|
|
|
|
|
|
// suppress on-demand rules if not eligible
|
|
|
|
if !IAPManager.shared.isEligible(for: .onDemand) {
|
|
|
|
pp_log(.app, .notice, "Suppress on-demand rules, not eligible")
|
|
|
|
|
|
|
|
if let onDemandModuleIndex = builder.modules.firstIndex(where: { $0 is OnDemandModule }),
|
|
|
|
let onDemandModule = builder.modules[onDemandModuleIndex] as? OnDemandModule {
|
|
|
|
|
|
|
|
var onDemandBuilder = onDemandModule.builder()
|
|
|
|
onDemandBuilder.policy = .any
|
|
|
|
builder.modules[onDemandModuleIndex] = onDemandBuilder.tryBuild()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-12 11:19:46 +00:00
|
|
|
let profile = try builder.tryBuild()
|
2024-10-10 22:24:06 +00:00
|
|
|
do {
|
2024-10-12 11:19:46 +00:00
|
|
|
_ = try profile.withProviderModules()
|
|
|
|
return profile
|
2024-10-10 22:24:06 +00:00
|
|
|
} catch {
|
|
|
|
// FIXME: #703, alert unable to build provider server
|
|
|
|
pp_log(.app, .error, "Unable to inject provider modules: \(error)")
|
2024-10-12 11:19:46 +00:00
|
|
|
throw error
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
// MARK: -
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#if targetEnvironment(simulator)
|
|
|
|
|
|
|
|
extension Tunnel {
|
|
|
|
static let shared = Tunnel(
|
|
|
|
strategy: FakeTunnelStrategy(environment: .shared, dataCountInterval: 1000)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-10-11 15:48:37 +00:00
|
|
|
private extension ProfileManager {
|
|
|
|
static let localProfileRepository: ProfileRepository = {
|
|
|
|
let store = CoreDataPersistentStore(
|
|
|
|
logger: .default,
|
|
|
|
containerName: Constants.shared.containers.local,
|
|
|
|
model: AppData.cdProfilesModel,
|
|
|
|
cloudKitIdentifier: nil,
|
|
|
|
author: nil
|
|
|
|
)
|
|
|
|
return AppData.cdProfileRepositoryV3(
|
|
|
|
registry: .shared,
|
|
|
|
coder: CodableProfileCoder(),
|
|
|
|
context: store.context,
|
|
|
|
observingResults: false
|
|
|
|
) { error in
|
|
|
|
pp_log(.app, .error, "Unable to decode local result: \(error)")
|
|
|
|
return .ignore
|
|
|
|
}
|
|
|
|
}()
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
extension Tunnel {
|
|
|
|
static let shared = Tunnel(
|
2024-10-11 15:48:37 +00:00
|
|
|
strategy: NETunnelStrategy(repository: ProfileManager.neRepository)
|
2024-10-10 14:03:02 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-10-11 15:48:37 +00:00
|
|
|
private extension ProfileManager {
|
|
|
|
static let localProfileRepository: ProfileRepository = {
|
|
|
|
NEProfileRepository(repository: neRepository) {
|
|
|
|
ProfileManager.sharedTitle($0)
|
|
|
|
}
|
|
|
|
}()
|
2024-10-10 14:03:02 +00:00
|
|
|
|
2024-10-11 15:48:37 +00:00
|
|
|
static let neRepository: NETunnelManagerRepository = {
|
|
|
|
NETunnelManagerRepository(
|
|
|
|
bundleIdentifier: BundleConfiguration.mainString(for: .tunnelId),
|
|
|
|
coder: Registry.sharedProtocolCoder,
|
|
|
|
environment: .shared
|
|
|
|
)
|
|
|
|
}()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2024-10-10 14:20:36 +00:00
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
// FIXME: #705, store providers to Core Data
|
2024-10-13 09:36:34 +00:00
|
|
|
extension ProviderManager {
|
|
|
|
static let shared = ProviderManager(
|
|
|
|
repository: InMemoryProviderRepository(),
|
|
|
|
vpnRepository: InMemoryVPNProviderRepository()
|
2024-10-10 22:24:06 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
2024-10-11 15:48:37 +00:00
|
|
|
private extension ProfileManager {
|
|
|
|
static let sharedTitle: (Profile) -> String = {
|
2024-10-11 15:57:31 +00:00
|
|
|
String(format: Constants.shared.tunnel.profileTitleFormat, $0.name)
|
2024-10-11 15:48:37 +00:00
|
|
|
}
|
2024-10-10 22:31:32 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
extension CoreDataPersistentStoreLogger where Self == DefaultCoreDataPersistentStoreLogger {
|
|
|
|
static var `default`: CoreDataPersistentStoreLogger {
|
|
|
|
DefaultCoreDataPersistentStoreLogger()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct DefaultCoreDataPersistentStoreLogger: CoreDataPersistentStoreLogger {
|
|
|
|
func debug(_ msg: String) {
|
|
|
|
pp_log(.app, .info, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func warning(_ msg: String) {
|
|
|
|
pp_log(.app, .error, msg)
|
|
|
|
}
|
|
|
|
}
|