passepartout-apple/Passepartout/Library/Sources/UILibrary/Views/UI/TunnelToggleButton.swift

164 lines
4.7 KiB
Swift
Raw Normal View History

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/>.
//
import AppLibrary
import CommonUtils
2024-09-23 13:02:26 +00:00
import PassepartoutKit
import SwiftUI
public struct TunnelToggleButton<Label>: View, ThemeProviding where Label: View {
2024-09-23 13:02:26 +00:00
@EnvironmentObject
public var theme: Theme
2024-09-23 13:02:26 +00:00
@EnvironmentObject
private var iapManager: IAPManager
@EnvironmentObject
private var profileProcessor: ProfileProcessor
2024-09-23 13:02:26 +00:00
@ObservedObject
private var tunnel: ExtendedTunnel
2024-09-23 13:02:26 +00:00
private let profile: Profile?
2024-09-23 13:02:26 +00:00
@Binding
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(
tunnel: ExtendedTunnel,
profile: Profile?,
nextProfileId: Binding<Profile.ID?>,
interactiveManager: InteractiveManager,
errorHandler: ErrorHandler,
onProviderEntityRequired: ((Profile) -> Void)? = nil,
label: @escaping (Bool) -> Label
) {
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
public var body: some View {
2024-09-23 13:02:26 +00:00
Button(action: tryPerform) {
label(canConnect)
}
#if os(macOS)
.buttonStyle(.plain)
.cursor(.hand)
#endif
.disabled(profile == nil || (isInstalled && tunnel.status == .deactivating))
}
}
private extension TunnelToggleButton {
var isInstalled: Bool {
profile?.id == tunnel.currentProfile?.id
2024-09-23 13:02:26 +00:00
}
var canConnect: Bool {
!isInstalled || (tunnel.status == .inactive && tunnel.currentProfile?.onDemand != true)
2024-09-23 13:02:26 +00:00
}
}
private extension TunnelToggleButton {
func tryPerform() {
Task {
2024-09-23 13:02:26 +00:00
guard let profile else {
return
}
if !isInstalled {
nextProfileId = profile.id
}
2024-09-23 13:02:26 +00:00
defer {
if nextProfileId == profile.id {
nextProfileId = nil
}
}
if canConnect && profile.isInteractive {
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 {
try await tunnel.connect(with: profile, processor: profileProcessor)
2024-09-23 13:02:26 +00:00
} else {
try await tunnel.disconnect()
}
} else {
try await tunnel.connect(with: profile, processor: profileProcessor)
2024-09-23 13:02:26 +00:00
}
} catch is CancellationError {
//
2024-09-23 13:02:26 +00:00
} catch {
switch (error as? PassepartoutError)?.code {
case .missingProviderEntity:
onProviderEntityRequired?(profile)
return
case .providerRequired:
errorHandler.handle(
error,
title: Strings.Global.connection
)
return
default:
break
}
2024-09-23 13:02:26 +00:00
errorHandler.handle(
error,
title: Strings.Global.connection,
message: Strings.Views.Profiles.Errors.tunnel
)
}
}
}