2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// TunnelToggleButton.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/7/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/>.
|
|
|
|
//
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
import AppLibrary
|
2024-09-23 13:02:26 +00:00
|
|
|
import PassepartoutKit
|
|
|
|
import SwiftUI
|
|
|
|
import UtilsLibrary
|
|
|
|
|
2024-11-01 08:47:50 +00:00
|
|
|
public struct TunnelToggleButton<Label>: View, ThemeProviding where Label: View {
|
|
|
|
public enum Style {
|
2024-09-23 13:02:26 +00:00
|
|
|
case plain
|
|
|
|
|
|
|
|
case color
|
|
|
|
}
|
|
|
|
|
|
|
|
@EnvironmentObject
|
2024-11-01 08:47:50 +00:00
|
|
|
public var theme: Theme
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var iapManager: IAPManager
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
@EnvironmentObject
|
|
|
|
private var profileProcessor: ProfileProcessor
|
|
|
|
|
2024-11-01 08:47:50 +00:00
|
|
|
private let style: Style
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@ObservedObject
|
2024-11-01 08:47:50 +00:00
|
|
|
private var tunnel: ExtendedTunnel
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 08:47:50 +00:00
|
|
|
private let profile: Profile?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@Binding
|
2024-11-01 08:47:50 +00:00
|
|
|
private var nextProfileId: Profile.ID?
|
|
|
|
|
|
|
|
private let interactiveManager: InteractiveManager
|
|
|
|
|
|
|
|
private let errorHandler: ErrorHandler
|
|
|
|
|
|
|
|
private let onProviderEntityRequired: ((Profile) -> Void)?
|
|
|
|
|
|
|
|
private let label: (Bool) -> Label
|
|
|
|
|
|
|
|
public init(
|
|
|
|
style: Style = .plain,
|
|
|
|
tunnel: ExtendedTunnel,
|
|
|
|
profile: Profile?,
|
|
|
|
nextProfileId: Binding<Profile.ID?>,
|
|
|
|
interactiveManager: InteractiveManager,
|
|
|
|
errorHandler: ErrorHandler,
|
|
|
|
onProviderEntityRequired: ((Profile) -> Void)? = nil,
|
|
|
|
label: @escaping (Bool) -> Label
|
|
|
|
) {
|
|
|
|
self.style = style
|
|
|
|
self.tunnel = tunnel
|
|
|
|
self.profile = profile
|
|
|
|
_nextProfileId = nextProfileId
|
|
|
|
self.interactiveManager = interactiveManager
|
|
|
|
self.errorHandler = errorHandler
|
|
|
|
self.onProviderEntityRequired = onProviderEntityRequired
|
|
|
|
self.label = label
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 08:47:50 +00:00
|
|
|
public var body: some View {
|
2024-09-23 13:02:26 +00:00
|
|
|
Button(action: tryPerform) {
|
|
|
|
label(canConnect)
|
|
|
|
}
|
|
|
|
.foregroundStyle(color)
|
|
|
|
#if os(macOS)
|
|
|
|
.buttonStyle(.plain)
|
|
|
|
.cursor(.hand)
|
|
|
|
#endif
|
|
|
|
.disabled(profile == nil || (isInstalled && tunnel.status == .deactivating))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension TunnelToggleButton {
|
|
|
|
var isInstalled: Bool {
|
2024-09-30 12:56:20 +00:00
|
|
|
profile?.id == tunnel.currentProfile?.id
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var canConnect: Bool {
|
2024-09-30 17:35:41 +00:00
|
|
|
!isInstalled || (tunnel.status == .inactive && tunnel.currentProfile?.onDemand != true)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var color: Color {
|
|
|
|
switch style {
|
|
|
|
case .plain:
|
|
|
|
return .primary
|
|
|
|
|
|
|
|
case .color:
|
2024-11-01 08:47:50 +00:00
|
|
|
return tunnel.statusColor(theme)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension TunnelToggleButton {
|
|
|
|
func tryPerform() {
|
2024-10-22 11:03:34 +00:00
|
|
|
Task {
|
2024-09-23 13:02:26 +00:00
|
|
|
guard let profile else {
|
|
|
|
return
|
|
|
|
}
|
2024-10-22 11:03:34 +00:00
|
|
|
if !isInstalled {
|
|
|
|
nextProfileId = profile.id
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
defer {
|
|
|
|
if nextProfileId == profile.id {
|
|
|
|
nextProfileId = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if canConnect && profile.isInteractive {
|
2024-10-02 14:05:40 +00:00
|
|
|
if iapManager.isEligible(for: .interactiveLogin) {
|
|
|
|
pp_log(.app, .notice, "Present interactive login")
|
|
|
|
interactiveManager.present(with: profile) {
|
|
|
|
await perform(with: $0)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
pp_log(.app, .notice, "Suppress interactive login, not eligible")
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
await perform(with: profile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func perform(with profile: Profile) async {
|
|
|
|
do {
|
|
|
|
if isInstalled {
|
|
|
|
if canConnect {
|
2024-10-10 22:24:06 +00:00
|
|
|
try await tunnel.connect(with: profile, processor: profileProcessor)
|
2024-09-23 13:02:26 +00:00
|
|
|
} else {
|
|
|
|
try await tunnel.disconnect()
|
|
|
|
}
|
|
|
|
} else {
|
2024-10-10 22:24:06 +00:00
|
|
|
try await tunnel.connect(with: profile, processor: profileProcessor)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-10-22 11:03:34 +00:00
|
|
|
} catch is CancellationError {
|
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
} catch {
|
2024-10-28 19:30:22 +00:00
|
|
|
switch (error as? PassepartoutError)?.code {
|
|
|
|
case .missingProviderEntity:
|
2024-10-23 15:17:20 +00:00
|
|
|
onProviderEntityRequired?(profile)
|
|
|
|
return
|
2024-10-28 19:30:22 +00:00
|
|
|
|
|
|
|
case .providerRequired:
|
|
|
|
errorHandler.handle(
|
|
|
|
error,
|
|
|
|
title: Strings.Global.connection
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
errorHandler.handle(
|
|
|
|
error,
|
|
|
|
title: Strings.Global.connection,
|
|
|
|
message: Strings.Views.Profiles.Errors.tunnel
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|