2022-04-26 21:27:03 +00:00
|
|
|
//
|
|
|
|
// ProfileView+MainMenu.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 2/6/22.
|
2023-03-17 15:56:19 +00:00
|
|
|
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
|
2022-04-26 21:27:03 +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
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutLibrary
|
2022-04-26 21:27:03 +00:00
|
|
|
|
|
|
|
extension ProfileView {
|
|
|
|
struct MainMenu: View {
|
|
|
|
enum ActionSheetType: Int, Identifiable {
|
|
|
|
case uninstallVPN
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
case deleteProfile
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
var id: Int {
|
|
|
|
rawValue
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-08-28 07:19:15 +00:00
|
|
|
@ObservedObject private var profileManager: ProfileManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-08-28 07:19:15 +00:00
|
|
|
@ObservedObject private var vpnManager: VPNManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-10-17 15:36:32 +00:00
|
|
|
@ObservedObject private var currentVPNState: ObservableVPNState
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
@ObservedObject private var currentProfile: ObservableProfile
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private var header: Profile.Header {
|
|
|
|
currentProfile.value.header
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
@Binding private var modalType: ModalType?
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
@State private var actionSheetType: ActionSheetType?
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private let uninstallVPNTitle = L10n.Global.Strings.uninstall
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private let deleteProfileTitle = L10n.Global.Strings.delete
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private let cancelTitle = L10n.Global.Strings.cancel
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
init(currentProfile: ObservableProfile, modalType: Binding<ModalType?>) {
|
|
|
|
profileManager = .shared
|
|
|
|
vpnManager = .shared
|
2022-10-17 15:36:32 +00:00
|
|
|
currentVPNState = .shared
|
2022-04-26 21:27:03 +00:00
|
|
|
self.currentProfile = currentProfile
|
|
|
|
_modalType = modalType
|
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
2022-05-15 20:30:09 +00:00
|
|
|
mainView
|
|
|
|
.alert(item: $actionSheetType) {
|
|
|
|
switch $0 {
|
|
|
|
case .uninstallVPN:
|
|
|
|
return Alert(
|
|
|
|
title: Text(uninstallVPNTitle),
|
|
|
|
message: Text(L10n.Profile.Alerts.UninstallVpn.message),
|
|
|
|
primaryButton: .destructive(Text(uninstallVPNTitle), action: uninstallVPN),
|
|
|
|
secondaryButton: .cancel(Text(cancelTitle))
|
|
|
|
)
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-05-15 20:30:09 +00:00
|
|
|
case .deleteProfile:
|
|
|
|
return Alert(
|
|
|
|
title: Text(deleteProfileTitle),
|
|
|
|
message: Text(L10n.Organizer.Alerts.RemoveProfile.message(header.name)),
|
|
|
|
primaryButton: .destructive(Text(deleteProfileTitle), action: removeProfile),
|
|
|
|
secondaryButton: .cancel(Text(cancelTitle))
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var mainView: some View {
|
2022-04-26 21:27:03 +00:00
|
|
|
Menu {
|
2023-04-01 20:46:12 +00:00
|
|
|
ReconnectButton()
|
2022-10-17 15:36:32 +00:00
|
|
|
ShortcutsButton(
|
|
|
|
modalType: $modalType
|
|
|
|
)
|
2022-04-27 14:49:23 +00:00
|
|
|
Divider()
|
2022-10-17 15:36:32 +00:00
|
|
|
RenameButton(
|
|
|
|
modalType: $modalType
|
|
|
|
)
|
|
|
|
DuplicateButton(
|
|
|
|
header: header,
|
|
|
|
setAsCurrent: true
|
|
|
|
)
|
2022-04-26 21:27:03 +00:00
|
|
|
uninstallVPNButton
|
|
|
|
Divider()
|
|
|
|
deleteProfileButton
|
|
|
|
} label: {
|
|
|
|
themeSettingsMenuImage.asSystemImage
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private var uninstallVPNButton: some View {
|
|
|
|
Button {
|
|
|
|
actionSheetType = .uninstallVPN
|
|
|
|
} label: {
|
|
|
|
Label(uninstallVPNTitle, systemImage: themeUninstallImage)
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
private var deleteProfileButton: some View {
|
|
|
|
DestructiveButton {
|
|
|
|
actionSheetType = .deleteProfile
|
|
|
|
} label: {
|
|
|
|
Label(deleteProfileTitle, systemImage: themeDeleteImage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func uninstallVPN() {
|
2022-10-13 06:53:50 +00:00
|
|
|
Task { @MainActor in
|
2022-04-26 21:27:03 +00:00
|
|
|
await vpnManager.uninstall()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func removeProfile() {
|
2022-04-27 16:31:12 +00:00
|
|
|
withAnimation {
|
|
|
|
profileManager.removeProfiles(withIds: [header.id])
|
|
|
|
}
|
2022-04-26 21:27:03 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-17 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension ProfileView {
|
|
|
|
struct ReconnectButton: View {
|
|
|
|
@ObservedObject private var vpnManager: VPNManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-10-17 15:36:32 +00:00
|
|
|
init() {
|
|
|
|
vpnManager = .shared
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-10-17 15:36:32 +00:00
|
|
|
var body: some View {
|
|
|
|
Button {
|
|
|
|
Task { @MainActor in
|
|
|
|
await vpnManager.reconnect()
|
|
|
|
}
|
|
|
|
} label: {
|
|
|
|
Label(L10n.Global.Strings.reconnect, systemImage: themeReconnectImage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
struct ShortcutsButton: View {
|
|
|
|
@ObservedObject private var productManager: ProductManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
@Binding private var modalType: ModalType?
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
init(modalType: Binding<ModalType?>) {
|
|
|
|
productManager = .shared
|
|
|
|
_modalType = modalType
|
|
|
|
}
|
|
|
|
|
|
|
|
private var isEligibleForSiri: Bool {
|
|
|
|
productManager.isEligible(forFeature: .siriShortcuts)
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
var body: some View {
|
|
|
|
Button {
|
|
|
|
presentShortcutsOrPaywall()
|
|
|
|
} label: {
|
|
|
|
Label(Unlocalized.Other.siri, systemImage: themeShortcutsImage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func presentShortcutsOrPaywall() {
|
|
|
|
|
|
|
|
// eligibility: enter Siri shortcuts or present paywall
|
|
|
|
if isEligibleForSiri {
|
|
|
|
modalType = .shortcuts
|
|
|
|
} else {
|
|
|
|
modalType = .paywallShortcuts
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-27 14:49:23 +00:00
|
|
|
struct RenameButton: View {
|
|
|
|
@Binding private var modalType: ModalType?
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-27 14:49:23 +00:00
|
|
|
init(modalType: Binding<ModalType?>) {
|
|
|
|
_modalType = modalType
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-27 14:49:23 +00:00
|
|
|
var body: some View {
|
|
|
|
Button {
|
|
|
|
modalType = .rename
|
|
|
|
} label: {
|
|
|
|
Label(L10n.Global.Strings.rename, systemImage: themeRenameProfileImage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
struct DuplicateButton: View {
|
2022-08-28 07:19:15 +00:00
|
|
|
@ObservedObject private var profileManager: ProfileManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-27 14:47:25 +00:00
|
|
|
private let header: Profile.Header
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-05-03 14:45:36 +00:00
|
|
|
private let setAsCurrent: Bool
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-05-03 14:45:36 +00:00
|
|
|
init(header: Profile.Header, setAsCurrent: Bool) {
|
2022-04-26 21:27:03 +00:00
|
|
|
profileManager = .shared
|
|
|
|
self.header = header
|
2022-05-03 14:45:36 +00:00
|
|
|
self.setAsCurrent = setAsCurrent
|
2022-04-26 21:27:03 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-26 21:27:03 +00:00
|
|
|
var body: some View {
|
|
|
|
Button {
|
|
|
|
duplicateProfile(withId: header.id)
|
|
|
|
} label: {
|
|
|
|
Label(L10n.Global.Strings.duplicate, systemImage: themeDuplicateImage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func duplicateProfile(withId id: UUID) {
|
2022-05-03 14:45:36 +00:00
|
|
|
profileManager.duplicateProfile(withId: id, setAsCurrent: setAsCurrent)
|
2022-04-26 21:27:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|