passepartout-apple/Passepartout/Library/Sources/AppUI/Business/AppContext.swift

124 lines
3.4 KiB
Swift
Raw Normal View History

2024-09-23 13:02:26 +00:00
//
// AppContext.swift
// Passepartout
//
// Created by Davide De Rosa on 8/29/24.
// 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 AppLibrary
2024-09-23 13:02:26 +00:00
import Combine
import CommonLibrary
import Foundation
import PassepartoutKit
import UtilsLibrary
@MainActor
public final class AppContext: ObservableObject {
public let iapManager: IAPManager
public let profileManager: ProfileManager
public let profileProcessor: ProfileProcessor
2024-09-23 13:02:26 +00:00
public let tunnel: Tunnel
public let tunnelEnvironment: TunnelEnvironment
public let connectionObserver: ConnectionObserver
public let registry: Registry
public let providerManager: ProviderManager
2024-09-23 13:02:26 +00:00
private let constants: Constants
private var subscriptions: Set<AnyCancellable>
public init(
iapManager: IAPManager,
profileManager: ProfileManager,
profileProcessor: ProfileProcessor,
2024-09-23 13:02:26 +00:00
tunnel: Tunnel,
tunnelEnvironment: TunnelEnvironment,
registry: Registry,
providerManager: ProviderManager,
2024-09-23 13:02:26 +00:00
constants: Constants
) {
self.iapManager = iapManager
self.profileManager = profileManager
self.profileProcessor = profileProcessor
2024-09-23 13:02:26 +00:00
self.tunnel = tunnel
self.tunnelEnvironment = tunnelEnvironment
connectionObserver = ConnectionObserver(
tunnel: tunnel,
environment: tunnelEnvironment,
interval: constants.tunnel.refreshInterval
2024-09-23 13:02:26 +00:00
)
self.registry = registry
self.providerManager = providerManager
self.constants = constants
subscriptions = []
2024-09-23 13:02:26 +00:00
Task {
await iapManager.reloadReceipt()
connectionObserver.observeObjects()
profileManager.observeObjects()
observeObjects()
}
2024-09-23 13:02:26 +00:00
}
}
// MARK: - Observation
2024-09-23 13:02:26 +00:00
private extension AppContext {
func observeObjects() {
profileManager
.didChange
.sink { [weak self] event in
switch event {
case .save(let profile):
self?.syncTunnelIfCurrentProfile(profile)
default:
break
2024-09-23 13:02:26 +00:00
}
}
.store(in: &subscriptions)
}
}
2024-09-23 13:02:26 +00:00
private extension AppContext {
func syncTunnelIfCurrentProfile(_ profile: Profile) {
guard profile.id == tunnel.currentProfile?.id else {
return
}
Task {
if profile.isInteractive {
try await tunnel.disconnect()
return
}
if tunnel.status == .active {
try await tunnel.connect(with: profile, processor: profileProcessor)
}
}
2024-09-23 13:02:26 +00:00
}
}