2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// ProfileView+VPN.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/18/22.
|
|
|
|
// Copyright (c) 2022 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 SwiftUI
|
|
|
|
import PassepartoutCore
|
|
|
|
|
|
|
|
extension ProfileView {
|
|
|
|
struct VPNSection: View {
|
2022-04-22 08:03:11 +00:00
|
|
|
@ObservedObject private var appManager: AppManager
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
@ObservedObject private var profileManager: ProfileManager
|
|
|
|
|
|
|
|
@ObservedObject private var providerManager: ProviderManager
|
|
|
|
|
|
|
|
@ObservedObject private var vpnManager: VPNManager
|
|
|
|
|
|
|
|
@ObservedObject private var currentVPNState: VPNManager.ObservableState
|
|
|
|
|
|
|
|
@ObservedObject private var productManager: ProductManager
|
2022-04-21 17:02:47 +00:00
|
|
|
|
|
|
|
@ObservedObject private var currentProfile: ObservableProfile
|
|
|
|
|
2022-04-22 13:58:03 +00:00
|
|
|
private let isLoading: Bool
|
2022-04-12 13:09:14 +00:00
|
|
|
|
|
|
|
private var isActiveProfile: Bool {
|
|
|
|
profileManager.isCurrentProfileActive()
|
|
|
|
}
|
|
|
|
|
|
|
|
private var isEligibleForSiri: Bool {
|
|
|
|
productManager.isEligible(forFeature: .siriShortcuts)
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:58:03 +00:00
|
|
|
init(currentProfile: ObservableProfile, isLoading: Bool) {
|
2022-04-22 08:03:11 +00:00
|
|
|
appManager = .shared
|
2022-04-12 13:09:14 +00:00
|
|
|
profileManager = .shared
|
|
|
|
providerManager = .shared
|
|
|
|
vpnManager = .shared
|
|
|
|
currentVPNState = .shared
|
|
|
|
productManager = .shared
|
|
|
|
self.currentProfile = currentProfile
|
2022-04-22 13:58:03 +00:00
|
|
|
self.isLoading = isLoading
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
2022-04-22 13:58:03 +00:00
|
|
|
if !isLoading {
|
2022-04-21 17:02:47 +00:00
|
|
|
if isActiveProfile {
|
|
|
|
activeView
|
|
|
|
} else {
|
|
|
|
inactiveSubview
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
} else {
|
2022-04-21 17:02:47 +00:00
|
|
|
loadingView
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-21 17:02:47 +00:00
|
|
|
private var headerView: some View {
|
|
|
|
Text(Unlocalized.VPN.vpn)
|
|
|
|
}
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
private var activeView: some View {
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-26 08:19:25 +00:00
|
|
|
VPNToggle(rateLimit: Constants.RateLimit.vpnToggle) {
|
|
|
|
|
|
|
|
// eligibility: donate intents if eligible for Siri
|
|
|
|
if isEligibleForSiri {
|
|
|
|
pp_log.debug("Donating connection intents...")
|
|
|
|
|
|
|
|
IntentDispatcher.donateEnableVPN()
|
|
|
|
IntentDispatcher.donateDisableVPN()
|
|
|
|
IntentDispatcher.donateConnection(
|
|
|
|
with: currentProfile.value,
|
|
|
|
providerManager: providerManager
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2022-04-25 14:24:53 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
Text(L10n.Profile.Items.ConnectionStatus.caption)
|
|
|
|
.withTrailingText(currentVPNState.localizedStatusDescription(
|
|
|
|
withErrors: true,
|
2022-04-23 07:46:41 +00:00
|
|
|
dataCountIfAvailable: true
|
2022-04-12 13:09:14 +00:00
|
|
|
))
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
headerView
|
|
|
|
} footer: {
|
|
|
|
Text(L10n.Profile.Sections.Vpn.footer)
|
|
|
|
.xxxThemeTruncation()
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var inactiveSubview: some View {
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-12 13:09:14 +00:00
|
|
|
Button(L10n.Profile.Items.UseProfile.caption) {
|
|
|
|
Task {
|
2022-05-01 13:35:40 +00:00
|
|
|
|
|
|
|
// do this first to not override subsequent animation
|
|
|
|
// active profile may flicker due to unnecessary VPN updates
|
2022-04-12 13:09:14 +00:00
|
|
|
await vpnManager.disable()
|
2022-05-01 13:35:40 +00:00
|
|
|
|
|
|
|
withAnimation {
|
|
|
|
profileManager.activateCurrentProfile()
|
|
|
|
|
|
|
|
// IMPORTANT: save immediately to keep in sync with VPN status
|
|
|
|
appManager.activeProfileId = profileManager.activeHeader?.id
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
headerView
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-21 17:02:47 +00:00
|
|
|
private var loadingView: some View {
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-21 17:02:47 +00:00
|
|
|
ProgressView()
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
headerView
|
2022-04-21 17:02:47 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|