passepartout-apple/Passepartout/App/Views/ShortcutsView+Add.swift

165 lines
5.2 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// ShortcutsView+Add.swift
// Passepartout
//
// Created by Davide De Rosa on 3/13/22.
2023-03-17 15:56:19 +00:00
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
2022-04-12 13:09:14 +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/>.
//
import Intents
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
import SwiftUI
2022-04-12 13:09:14 +00:00
extension ShortcutsView {
struct AddView: View {
@ObservedObject private var providerManager: ProviderManager
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
@StateObject private var pendingProfile = ObservableProfile()
private let target: Profile
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
@Binding private var pendingShortcut: INShortcut?
@State private var isPresentingProviderLocation = false
init(target: Profile, pendingShortcut: Binding<INShortcut?>) {
providerManager = .shared
self.target = target
2022-04-12 13:09:14 +00:00
_pendingShortcut = pendingShortcut
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
var body: some View {
ZStack {
hiddenProviderLocationLink
List {
Section {
addConnectView
Button(L10n.Shortcuts.Add.Items.EnableVpn.caption, action: addEnableVPN)
Button(L10n.Shortcuts.Add.Items.DisableVpn.caption, action: addDisableVPN)
} header: {
Text(Unlocalized.VPN.vpn)
}
Section {
Button(L10n.Shortcuts.Add.Items.TrustCurrentWifi.caption, action: addTrustWiFi)
Button(L10n.Shortcuts.Add.Items.UntrustCurrentWifi.caption, action: addUntrustWiFi)
} header: {
Text(L10n.Shortcuts.Add.Sections.Wifi.header)
}
Section {
Button(L10n.Shortcuts.Add.Items.TrustCellular.caption, action: addTrustCellular)
Button(L10n.Shortcuts.Add.Items.UntrustCellular.caption, action: addUntrustCellular)
} header: {
Text(L10n.Shortcuts.Add.Sections.Cellular.header)
}
2022-04-12 13:09:14 +00:00
}
}.navigationTitle(L10n.Shortcuts.Add.title)
}
}
}
2022-04-12 13:09:14 +00:00
// MARK: -
private extension ShortcutsView.AddView {
var addConnectView: some View {
Button(L10n.Shortcuts.Add.Items.Connect.caption) {
if target.isProvider {
pendingProfile.value = target
isPresentingProviderLocation = true
} else {
addConnect(target.header)
}
2022-04-12 13:09:14 +00:00
}
}
2023-03-17 20:55:47 +00:00
var hiddenProviderLocationLink: some View {
NavigationLink("", isActive: $isPresentingProviderLocation) {
ProviderLocationView(
currentProfile: pendingProfile,
isEditable: false,
isPresented: isProviderLocationPresented
)
2022-04-12 13:09:14 +00:00
}
}
2022-04-12 13:09:14 +00:00
var isProviderLocationPresented: Binding<Bool> {
.init {
isPresentingProviderLocation
} set: {
if !$0 {
isPresentingProviderLocation = false
addMoveToPendingProfile()
}
2022-04-12 13:09:14 +00:00
}
}
}
// MARK: -
2023-03-17 20:55:47 +00:00
private extension ShortcutsView.AddView {
func addConnect(_ header: Profile.Header) {
pendingShortcut = INShortcut(intent: IntentDispatcher.intentConnect(
header: header
))
}
2022-04-12 13:09:14 +00:00
func addMoveToPendingProfile() {
let header = pendingProfile.value.header
guard let server = pendingProfile.value.providerServer(providerManager) else {
return
2022-04-12 13:09:14 +00:00
}
pendingShortcut = INShortcut(intent: IntentDispatcher.intentMoveTo(
header: header,
providerFullName: server.providerMetadata.fullName,
server: server
))
}
2022-04-12 13:09:14 +00:00
func addEnableVPN() {
addShortcut(with: IntentDispatcher.intentEnable())
}
2022-04-12 13:09:14 +00:00
func addDisableVPN() {
addShortcut(with: IntentDispatcher.intentDisable())
}
func addTrustWiFi() {
addShortcut(with: IntentDispatcher.intentTrustWiFi())
}
func addUntrustWiFi() {
addShortcut(with: IntentDispatcher.intentUntrustWiFi())
}
func addTrustCellular() {
addShortcut(with: IntentDispatcher.intentTrustCellular())
}
func addUntrustCellular() {
addShortcut(with: IntentDispatcher.intentUntrustCellular())
}
func addShortcut(with intent: INIntent) {
guard let shortcut = INShortcut(intent: intent) else {
fatalError("Unable to create INShortcut, intent '\(intent.description)' not exposed by app?")
2022-04-12 13:09:14 +00:00
}
pendingShortcut = shortcut
2022-04-12 13:09:14 +00:00
}
}