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
|
2024-10-28 15:57:23 +00:00
|
|
|
import AppDataProviders
|
2024-10-10 22:24:06 +00:00
|
|
|
import CommonLibrary
|
2024-11-02 09:11:59 +00:00
|
|
|
import CommonUtils
|
2024-09-23 13:02:26 +00:00
|
|
|
import Foundation
|
|
|
|
import PassepartoutKit
|
2024-11-02 09:11:59 +00:00
|
|
|
import UILibrary
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-10 14:20:36 +00:00
|
|
|
extension AppContext {
|
2024-11-04 22:34:22 +00:00
|
|
|
static let shared: AppContext = {
|
|
|
|
let tunnelEnvironment: TunnelEnvironment = .shared
|
|
|
|
let registry: Registry = .shared
|
|
|
|
|
2024-11-05 17:55:57 +00:00
|
|
|
#if DEBUG
|
|
|
|
let inAppHelper = MockAppProductHelper()
|
|
|
|
let receiptReader = inAppHelper.receiptReader
|
|
|
|
#else
|
|
|
|
let inAppHelper = StoreKitHelper(identifiers: AppProduct.all)
|
|
|
|
let receiptReader = KvittoReceiptReader()
|
|
|
|
#endif
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
let iapManager = IAPManager(
|
|
|
|
customUserLevel: Configuration.IAPManager.customUserLevel,
|
2024-11-05 17:55:57 +00:00
|
|
|
inAppHelper: inAppHelper,
|
|
|
|
receiptReader: receiptReader,
|
2024-11-04 22:34:22 +00:00
|
|
|
// FIXME: #662, omit unrestrictedFeatures on release!
|
2024-11-05 09:03:54 +00:00
|
|
|
unrestrictedFeatures: [.interactiveLogin],
|
2024-11-04 22:34:22 +00:00
|
|
|
productsAtBuild: Configuration.IAPManager.productsAtBuild
|
2024-10-03 16:41:27 +00:00
|
|
|
)
|
2024-11-04 22:34:22 +00:00
|
|
|
let processor = ProfileProcessor(
|
|
|
|
iapManager: iapManager,
|
|
|
|
title: {
|
|
|
|
Configuration.ProfileManager.sharedTitle($0)
|
|
|
|
},
|
|
|
|
isIncluded: { _, profile in
|
|
|
|
Configuration.ProfileManager.isProfileIncluded(profile)
|
|
|
|
},
|
2024-11-05 09:03:54 +00:00
|
|
|
willSave: { iap, builder in
|
|
|
|
var copy = builder
|
|
|
|
var attributes = copy.attributes
|
|
|
|
|
|
|
|
// preprocess TV profiles
|
|
|
|
if attributes.isAvailableForTV == true {
|
|
|
|
|
2024-11-05 13:05:17 +00:00
|
|
|
// ineligible, set expiration date unless already set
|
2024-11-05 09:03:54 +00:00
|
|
|
if !iap.isEligible(for: .appleTV),
|
|
|
|
attributes.expirationDate == nil || attributes.isExpired {
|
2024-11-05 13:05:17 +00:00
|
|
|
let expirationDate = Constants.shared.tunnel.newTVExpirationDate()
|
|
|
|
pp_log(.app, .notice, "Ineligible, apply expiration date: \(expirationDate)")
|
|
|
|
attributes.expirationDate = expirationDate
|
2024-11-05 09:03:54 +00:00
|
|
|
} else {
|
|
|
|
attributes.expirationDate = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
copy.attributes = attributes
|
|
|
|
return copy
|
2024-11-04 22:34:22 +00:00
|
|
|
},
|
|
|
|
willConnect: { iap, profile in
|
|
|
|
var builder = profile.builder()
|
|
|
|
|
2024-11-05 13:05:17 +00:00
|
|
|
// ineligible, suppress on-demand rules
|
2024-11-04 22:34:22 +00:00
|
|
|
if !iap.isEligible(for: .onDemand) {
|
2024-11-05 13:05:17 +00:00
|
|
|
pp_log(.app, .notice, "Ineligible, suppress on-demand rules")
|
2024-11-04 22:34:22 +00:00
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate provider modules
|
|
|
|
let profile = try builder.tryBuild()
|
|
|
|
do {
|
|
|
|
_ = try profile.withProviderModules()
|
|
|
|
return profile
|
|
|
|
} catch {
|
|
|
|
pp_log(.app, .error, "Unable to inject provider modules: \(error)")
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
let profileManager: ProfileManager = {
|
|
|
|
let remoteStore = CoreDataPersistentStore(
|
|
|
|
logger: .default,
|
|
|
|
containerName: Constants.shared.containers.remote,
|
|
|
|
model: AppData.cdProfilesModel,
|
|
|
|
cloudKitIdentifier: BundleConfiguration.mainString(for: .cloudKitId),
|
|
|
|
author: nil
|
|
|
|
)
|
|
|
|
let remoteRepository = AppData.cdProfileRepositoryV3(
|
|
|
|
registry: .shared,
|
|
|
|
coder: CodableProfileCoder(),
|
|
|
|
context: remoteStore.context,
|
|
|
|
observingResults: true
|
|
|
|
) { error in
|
|
|
|
pp_log(.app, .error, "Unable to decode remote result: \(error)")
|
|
|
|
return .ignore
|
|
|
|
}
|
|
|
|
return ProfileManager(
|
|
|
|
repository: Configuration.ProfileManager.mainProfileRepository,
|
|
|
|
backupRepository: Configuration.ProfileManager.backupProfileRepository,
|
|
|
|
remoteRepository: remoteRepository,
|
|
|
|
deletingRemotely: Configuration.ProfileManager.deletingRemotely,
|
|
|
|
processor: processor
|
|
|
|
)
|
|
|
|
}()
|
|
|
|
let tunnel = ExtendedTunnel(
|
|
|
|
tunnel: Tunnel(strategy: Configuration.ExtendedTunnel.strategy),
|
|
|
|
environment: tunnelEnvironment,
|
|
|
|
processor: processor,
|
|
|
|
interval: Constants.shared.tunnel.refreshInterval
|
|
|
|
)
|
|
|
|
let providerManager: ProviderManager = {
|
|
|
|
let store = CoreDataPersistentStore(
|
|
|
|
logger: .default,
|
|
|
|
containerName: Constants.shared.containers.providers,
|
|
|
|
model: AppData.cdProvidersModel,
|
|
|
|
cloudKitIdentifier: nil,
|
|
|
|
author: nil
|
|
|
|
)
|
|
|
|
let repository = AppData.cdProviderRepositoryV3(
|
|
|
|
context: store.context,
|
|
|
|
backgroundContext: store.backgroundContext
|
|
|
|
)
|
|
|
|
return ProviderManager(repository: repository)
|
|
|
|
}()
|
|
|
|
return AppContext(
|
|
|
|
iapManager: iapManager,
|
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
registry: registry,
|
|
|
|
providerManager: providerManager
|
2024-10-26 19:41:07 +00:00
|
|
|
)
|
2024-09-23 13:02:26 +00:00
|
|
|
}()
|
2024-11-04 22:34:22 +00:00
|
|
|
}
|
2024-11-03 22:42:17 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
// MARK: - Configuration
|
2024-11-03 22:42:17 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
private enum Configuration {
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
extension Configuration {
|
|
|
|
enum IAPManager {
|
|
|
|
static var customUserLevel: AppUserLevel? {
|
|
|
|
if let envString = ProcessInfo.processInfo.environment["CUSTOM_USER_LEVEL"],
|
|
|
|
let envValue = Int(envString),
|
|
|
|
let testAppType = AppUserLevel(rawValue: envValue) {
|
2024-10-10 14:20:36 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
return testAppType
|
|
|
|
}
|
|
|
|
if let infoValue = BundleConfiguration.mainIntegerIfPresent(for: .customUserLevel),
|
|
|
|
let testAppType = AppUserLevel(rawValue: infoValue) {
|
2024-10-10 14:20:36 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
return testAppType
|
|
|
|
}
|
|
|
|
return nil
|
2024-10-10 14:20:36 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
static let productsAtBuild: BuildProducts<AppProduct> = {
|
2024-10-10 14:20:36 +00:00
|
|
|
#if os(iOS)
|
2024-11-04 22:34:22 +00:00
|
|
|
if $0 <= 2016 {
|
|
|
|
return [.Full.iOS]
|
|
|
|
} else if $0 <= 3000 {
|
|
|
|
return [.Features.networkSettings]
|
|
|
|
}
|
|
|
|
return []
|
2024-10-10 14:20:36 +00:00
|
|
|
#elseif os(macOS)
|
2024-11-04 22:34:22 +00:00
|
|
|
if $0 <= 3000 {
|
|
|
|
return [.Features.networkSettings]
|
|
|
|
}
|
|
|
|
return []
|
2024-10-10 14:20:36 +00:00
|
|
|
#else
|
2024-11-04 22:34:22 +00:00
|
|
|
return []
|
2024-10-10 14:20:36 +00:00
|
|
|
#endif
|
2024-11-04 22:34:22 +00:00
|
|
|
}
|
2024-10-10 14:20:36 +00:00
|
|
|
}
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
extension Configuration {
|
|
|
|
enum ProfileManager {
|
|
|
|
static let sharedTitle: @Sendable (Profile) -> String = {
|
|
|
|
String(format: Constants.shared.tunnel.profileTitleFormat, $0.name)
|
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
static let deletingRemotely = true
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
static let isProfileIncluded: @Sendable (Profile) -> Bool = {
|
|
|
|
$0.attributes.isAvailableForTV == true
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
2024-11-04 22:34:22 +00:00
|
|
|
#else
|
|
|
|
static let deletingRemotely = false
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-11-04 22:46:06 +00:00
|
|
|
static let isProfileIncluded: @Sendable (Profile) -> Bool = { _ in
|
2024-11-04 22:34:22 +00:00
|
|
|
true
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
2024-11-04 22:34:22 +00:00
|
|
|
#endif
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#if targetEnvironment(simulator)
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
extension Configuration {
|
|
|
|
enum ExtendedTunnel {
|
|
|
|
static var strategy: TunnelObservableStrategy {
|
|
|
|
FakeTunnelStrategy(environment: .shared, dataCountInterval: 1000)
|
|
|
|
}
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
@MainActor
|
|
|
|
extension Configuration.ProfileManager {
|
2024-10-26 19:41:07 +00:00
|
|
|
static var mainProfileRepository: ProfileRepository {
|
|
|
|
coreDataProfileRepository
|
|
|
|
}
|
|
|
|
|
|
|
|
static var backupProfileRepository: ProfileRepository? {
|
|
|
|
nil
|
|
|
|
}
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
#else
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
extension Configuration {
|
2024-11-04 22:46:06 +00:00
|
|
|
|
|
|
|
@MainActor
|
2024-11-04 22:34:22 +00:00
|
|
|
enum ExtendedTunnel {
|
|
|
|
static var strategy: TunnelObservableStrategy {
|
|
|
|
ProfileManager.neStrategy
|
|
|
|
}
|
|
|
|
}
|
2024-10-10 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
@MainActor
|
|
|
|
extension Configuration.ProfileManager {
|
2024-10-26 19:41:07 +00:00
|
|
|
static var mainProfileRepository: ProfileRepository {
|
|
|
|
neProfileRepository
|
|
|
|
}
|
|
|
|
|
|
|
|
static var backupProfileRepository: ProfileRepository? {
|
|
|
|
coreDataProfileRepository
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2024-11-04 22:34:22 +00:00
|
|
|
@MainActor
|
|
|
|
extension Configuration.ProfileManager {
|
2024-10-26 19:41:07 +00:00
|
|
|
static let neProfileRepository: ProfileRepository = {
|
2024-10-22 11:03:34 +00:00
|
|
|
NEProfileRepository(repository: neStrategy) {
|
2024-11-04 22:34:22 +00:00
|
|
|
sharedTitle($0)
|
2024-10-11 15:48:37 +00:00
|
|
|
}
|
|
|
|
}()
|
2024-10-10 14:03:02 +00:00
|
|
|
|
2024-10-22 11:03:34 +00:00
|
|
|
static let neStrategy: NETunnelStrategy = {
|
|
|
|
NETunnelStrategy(
|
2024-10-11 15:48:37 +00:00
|
|
|
bundleIdentifier: BundleConfiguration.mainString(for: .tunnelId),
|
|
|
|
coder: Registry.sharedProtocolCoder,
|
|
|
|
environment: .shared
|
|
|
|
)
|
|
|
|
}()
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-26 19:41:07 +00:00
|
|
|
static let coreDataProfileRepository: 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:20:36 +00:00
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|