passepartout-apple/Passepartout/App/Views/VPNToggle.swift

145 lines
4.0 KiB
Swift
Raw Normal View History

2022-04-26 08:19:25 +00:00
//
// VPNToggle.swift
// Passepartout
//
// Created by Davide De Rosa on 4/26/22.
2023-03-17 15:56:19 +00:00
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
2022-04-26 08:19:25 +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/>.
//
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
import SwiftUI
2022-04-26 08:19:25 +00:00
struct VPNToggle: View {
@ObservedObject private var profileManager: ProfileManager
@ObservedObject private var vpnManager: VPNManager
2022-04-26 08:19:25 +00:00
2022-06-23 21:31:01 +00:00
@ObservedObject private var currentVPNState: ObservableVPNState
@ObservedObject private var productManager: ProductManager
private let profile: Profile
2023-03-17 20:55:47 +00:00
@Binding private var interactiveProfile: Profile?
2023-03-17 20:55:47 +00:00
2023-12-16 19:58:54 +00:00
private let title: String
2022-04-26 08:19:25 +00:00
private let rateLimit: Int
2023-03-17 20:55:47 +00:00
@State private var canToggle = true
2023-12-16 19:58:54 +00:00
init(profile: Profile, interactiveProfile: Binding<Profile?>, title: String, rateLimit: Int) {
profileManager = .shared
vpnManager = .shared
currentVPNState = .shared
productManager = .shared
self.profile = profile
_interactiveProfile = interactiveProfile
2023-12-16 19:58:54 +00:00
self.title = title
self.rateLimit = rateLimit
}
var body: some View {
2023-12-16 19:58:54 +00:00
Toggle(title, isOn: isEnabled)
.disabled(!canToggle)
.themeAnimation(on: currentVPNState.isEnabled)
}
}
// MARK: -
private extension VPNToggle {
var isEnabled: Binding<Bool> {
2022-04-26 08:19:25 +00:00
.init {
isActiveProfile && currentVPNState.isEnabled && !shouldPromptForAccount
} set: { newValue in
guard !shouldPromptForAccount else {
interactiveProfile = profile
return
}
guard newValue else {
disableVPN()
return
}
enableVPN()
2022-04-26 08:19:25 +00:00
}
}
2023-03-17 20:55:47 +00:00
var isActiveProfile: Bool {
profileManager.isActiveProfile(profile.id)
}
2023-03-17 20:55:47 +00:00
var shouldPromptForAccount: Bool {
profile.account.authenticationMethod == .interactive && (currentVPNState.vpnStatus == .disconnecting || currentVPNState.vpnStatus == .disconnected)
}
2022-04-26 08:19:25 +00:00
var isEligibleForSiri: Bool {
productManager.isEligible(forFeature: .siriShortcuts)
}
}
2023-03-17 20:55:47 +00:00
// MARK: -
2023-03-17 20:55:47 +00:00
private extension VPNToggle {
func enableVPN() {
Task { @MainActor in
canToggle = false
await Task.maybeWait(forMilliseconds: rateLimit)
canToggle = true
do {
let profile = try await vpnManager.connect(with: profile.id)
donateIntents(withProfile: profile)
} catch {
pp_log.warning("Unable to connect to profile \(profile.id): \(error)")
canToggle = true
2023-07-02 10:51:50 +00:00
ErrorHandler.shared.handle(error, title: profile.header.name)
}
2022-04-26 08:19:25 +00:00
}
}
2023-03-17 20:55:47 +00:00
func disableVPN() {
Task { @MainActor in
canToggle = false
await vpnManager.disable()
2022-04-26 08:19:25 +00:00
canToggle = true
}
}
2023-03-17 20:55:47 +00:00
func donateIntents(withProfile profile: Profile) {
// eligibility: donate intents if eligible for Siri
guard isEligibleForSiri else {
return
}
pp_log.debug("Donating connection intents...")
2023-12-16 19:58:54 +00:00
#if !os(tvOS)
IntentDispatcher.donateEnableVPN()
IntentDispatcher.donateDisableVPN()
IntentDispatcher.donateConnection(
with: profile,
providerManager: ProviderManager.shared
)
2023-12-16 19:58:54 +00:00
#endif
2022-04-26 08:19:25 +00:00
}
}