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 SwiftUI
|
|
|
|
import Intents
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutLibrary
|
2022-04-12 13:09:14 +00:00
|
|
|
|
|
|
|
extension ShortcutsView {
|
|
|
|
struct AddView: View {
|
2022-08-28 07:19:15 +00:00
|
|
|
@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()
|
2022-04-18 14:42:17 +00:00
|
|
|
|
|
|
|
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?
|
2022-04-18 14:42:17 +00:00
|
|
|
|
|
|
|
@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 {
|
2022-04-18 14:42:17 +00:00
|
|
|
ZStack {
|
2022-04-22 17:02:54 +00:00
|
|
|
hiddenProviderLocationLink
|
2022-04-18 14:42:17 +00:00
|
|
|
List {
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-18 14:42:17 +00:00
|
|
|
addConnectView
|
|
|
|
Button(L10n.Shortcuts.Add.Items.EnableVpn.caption, action: addEnableVPN)
|
|
|
|
Button(L10n.Shortcuts.Add.Items.DisableVpn.caption, action: addDisableVPN)
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
Text(Unlocalized.VPN.vpn)
|
2022-04-18 14:42:17 +00:00
|
|
|
}
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-18 14:42:17 +00:00
|
|
|
Button(L10n.Shortcuts.Add.Items.TrustCurrentWifi.caption, action: addTrustWiFi)
|
|
|
|
Button(L10n.Shortcuts.Add.Items.UntrustCurrentWifi.caption, action: addUntrustWiFi)
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
Text(L10n.Shortcuts.Add.Sections.Wifi.header)
|
2022-04-18 14:42:17 +00:00
|
|
|
}
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-18 14:42:17 +00:00
|
|
|
Button(L10n.Shortcuts.Add.Items.TrustCellular.caption, action: addTrustCellular)
|
|
|
|
Button(L10n.Shortcuts.Add.Items.UntrustCellular.caption, action: addUntrustCellular)
|
2022-05-01 17:43:33 +00:00
|
|
|
} header: {
|
|
|
|
Text(L10n.Shortcuts.Add.Sections.Cellular.header)
|
2022-04-18 14:42:17 +00:00
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}.navigationTitle(L10n.Shortcuts.Add.title)
|
|
|
|
}
|
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
private 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
|
|
|
|
2022-04-22 17:02:54 +00:00
|
|
|
private var hiddenProviderLocationLink: some View {
|
2022-04-18 14:42:17 +00:00
|
|
|
NavigationLink("", isActive: $isPresentingProviderLocation) {
|
|
|
|
ProviderLocationView(
|
|
|
|
currentProfile: pendingProfile,
|
|
|
|
isEditable: false,
|
|
|
|
isPresented: isProviderLocationPresented
|
|
|
|
)
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2022-04-18 14:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
extension ShortcutsView.AddView {
|
|
|
|
private var isProviderLocationPresented: Binding<Bool> {
|
|
|
|
.init {
|
|
|
|
isPresentingProviderLocation
|
|
|
|
} set: {
|
|
|
|
if !$0 {
|
|
|
|
isPresentingProviderLocation = false
|
|
|
|
addMoveToPendingProfile()
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2022-04-18 14:42:17 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
private func addConnect(_ header: Profile.Header) {
|
|
|
|
pendingShortcut = INShortcut(intent: IntentDispatcher.intentConnect(
|
|
|
|
header: header
|
|
|
|
))
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
private func addMoveToPendingProfile() {
|
|
|
|
let header = pendingProfile.value.header
|
|
|
|
guard let server = pendingProfile.value.providerServer(providerManager) else {
|
|
|
|
return
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2022-04-18 14:42:17 +00:00
|
|
|
pendingShortcut = INShortcut(intent: IntentDispatcher.intentMoveTo(
|
|
|
|
header: header,
|
|
|
|
providerFullName: server.providerMetadata.fullName,
|
|
|
|
server: server
|
|
|
|
))
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
private func addEnableVPN() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentEnable())
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
private func addDisableVPN() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentDisable())
|
|
|
|
}
|
|
|
|
|
|
|
|
private func addTrustWiFi() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentTrustWiFi())
|
|
|
|
}
|
|
|
|
|
|
|
|
private func addUntrustWiFi() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentUntrustWiFi())
|
|
|
|
}
|
|
|
|
|
|
|
|
private func addTrustCellular() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentTrustCellular())
|
|
|
|
}
|
|
|
|
|
|
|
|
private func addUntrustCellular() {
|
|
|
|
addShortcut(with: IntentDispatcher.intentUntrustCellular())
|
|
|
|
}
|
|
|
|
|
|
|
|
private 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
|
|
|
}
|
2022-04-18 14:42:17 +00:00
|
|
|
pendingShortcut = shortcut
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|