2022-06-06 16:52:06 +00:00
|
|
|
//
|
|
|
|
// AppContext.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/17/22.
|
2023-03-17 15:56:19 +00:00
|
|
|
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
|
2022-06-06 16:52:06 +00:00
|
|
|
//
|
|
|
|
// 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 Combine
|
2023-04-04 07:50:45 +00:00
|
|
|
import Foundation
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutLibrary
|
2022-06-06 16:52:06 +00:00
|
|
|
|
2022-10-13 06:53:50 +00:00
|
|
|
@MainActor
|
2023-05-24 16:19:47 +00:00
|
|
|
final class AppContext {
|
2023-07-04 20:29:43 +00:00
|
|
|
private let coreContext: CoreContext
|
|
|
|
|
2022-10-13 06:53:50 +00:00
|
|
|
let productManager: ProductManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-10-16 06:33:32 +00:00
|
|
|
private let reviewer: Reviewer
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
private var cancellables: Set<AnyCancellable> = []
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
init(coreContext: CoreContext) {
|
2023-07-04 20:29:43 +00:00
|
|
|
self.coreContext = coreContext
|
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
productManager = ProductManager(
|
|
|
|
appType: Constants.InApp.appType,
|
|
|
|
buildProducts: Constants.InApp.buildProducts
|
|
|
|
)
|
2022-10-13 06:53:50 +00:00
|
|
|
|
2022-10-16 06:33:32 +00:00
|
|
|
reviewer = Reviewer()
|
|
|
|
reviewer.eventCountBeforeRating = Constants.Rating.eventCount
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
// post
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2023-07-04 20:29:43 +00:00
|
|
|
configureObjects()
|
|
|
|
}
|
|
|
|
|
|
|
|
var upgradeManager: UpgradeManager {
|
|
|
|
coreContext.upgradeManager
|
|
|
|
}
|
|
|
|
|
|
|
|
var providerManager: ProviderManager {
|
|
|
|
coreContext.providerManager
|
|
|
|
}
|
|
|
|
|
|
|
|
var profileManager: ProfileManager {
|
|
|
|
coreContext.profileManager
|
|
|
|
}
|
|
|
|
|
|
|
|
var vpnManager: VPNManager {
|
|
|
|
coreContext.vpnManager
|
2022-06-06 16:52:06 +00:00
|
|
|
}
|
2023-07-02 10:51:50 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2023-07-02 10:51:50 +00:00
|
|
|
private extension AppContext {
|
2023-07-04 20:29:43 +00:00
|
|
|
func configureObjects() {
|
2022-10-13 06:53:50 +00:00
|
|
|
coreContext.vpnManager.isOnDemandRulesSupported = {
|
|
|
|
self.isEligibleForOnDemandRules()
|
|
|
|
}
|
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
coreContext.vpnManager.currentState.$vpnStatus
|
|
|
|
.removeDuplicates()
|
2022-10-13 06:53:50 +00:00
|
|
|
.receive(on: DispatchQueue.main)
|
2022-06-06 16:52:06 +00:00
|
|
|
.sink {
|
|
|
|
if $0 == .connected {
|
|
|
|
pp_log.info("VPN successful connection, report to Reviewer")
|
|
|
|
self.reviewer.reportEvent()
|
|
|
|
}
|
2022-11-06 17:51:13 +00:00
|
|
|
}.store(in: &cancellables)
|
|
|
|
|
|
|
|
productManager.didRefundProducts
|
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink {
|
|
|
|
Task {
|
|
|
|
pp_log.info("Refunds detected, uninstalling VPN profile")
|
2023-07-04 20:29:43 +00:00
|
|
|
await self.coreContext.vpnManager.uninstall()
|
2022-11-06 17:51:13 +00:00
|
|
|
}
|
|
|
|
}.store(in: &cancellables)
|
2022-06-06 16:52:06 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
// eligibility: ignore network settings if ineligible
|
2023-07-02 10:51:50 +00:00
|
|
|
func isEligibleForNetworkSettings() -> Bool {
|
2022-06-06 16:52:06 +00:00
|
|
|
guard productManager.isEligible(forFeature: .networkSettings) else {
|
|
|
|
pp_log.warning("Ignore network settings, not eligible")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-06-06 16:52:06 +00:00
|
|
|
// eligibility: reset on-demand rules if no trusted networks
|
2023-07-02 10:51:50 +00:00
|
|
|
func isEligibleForOnDemandRules() -> Bool {
|
2022-06-06 16:52:06 +00:00
|
|
|
guard productManager.isEligible(forFeature: .trustedNetworks) else {
|
|
|
|
pp_log.warning("Ignore on-demand rules, not eligible for trusted networks")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|