2022-08-27 20:42:52 +00:00
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
// AddProfileMenu.swift
|
2022-08-27 20:42:52 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
// Created by Davide De Rosa on 9/3/24.
|
2024-01-14 13:34:21 +00:00
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
2022-08-27 20:42:52 +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/>.
|
|
|
|
//
|
|
|
|
|
2024-11-03 12:16:13 +00:00
|
|
|
import CommonLibrary
|
2024-09-23 13:02:26 +00:00
|
|
|
import PassepartoutKit
|
2023-04-04 07:50:45 +00:00
|
|
|
import SwiftUI
|
2022-08-27 20:42:52 +00:00
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
struct AddProfileMenu: View {
|
|
|
|
let profileManager: ProfileManager
|
|
|
|
|
2024-11-26 18:14:56 +00:00
|
|
|
let registry: Registry
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
@Binding
|
|
|
|
var isImporting: Bool
|
|
|
|
|
2024-11-14 10:02:26 +00:00
|
|
|
let onMigrateProfiles: () -> Void
|
|
|
|
|
2024-11-26 18:14:56 +00:00
|
|
|
let onNewProfile: (EditableProfile, UUID?) -> Void
|
2022-08-27 20:42:52 +00:00
|
|
|
|
|
|
|
var body: some View {
|
2024-09-23 13:02:26 +00:00
|
|
|
Menu {
|
2024-11-26 18:14:56 +00:00
|
|
|
emptyProfileButton
|
2024-11-14 10:02:26 +00:00
|
|
|
importProfileButton
|
2024-11-26 18:14:56 +00:00
|
|
|
providerProfileMenu
|
2024-11-17 17:42:19 +00:00
|
|
|
Divider()
|
2024-11-16 11:29:03 +00:00
|
|
|
migrateProfilesButton
|
2022-08-27 20:42:52 +00:00
|
|
|
} label: {
|
2024-09-23 13:02:26 +00:00
|
|
|
ThemeImage(.add)
|
2022-08-27 20:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-11-14 10:02:26 +00:00
|
|
|
|
|
|
|
private extension AddProfileMenu {
|
2024-11-26 18:14:56 +00:00
|
|
|
var emptyProfileButton: some View {
|
2024-11-14 10:02:26 +00:00
|
|
|
Button {
|
2024-11-26 18:14:56 +00:00
|
|
|
let editable = EditableProfile(name: newName)
|
|
|
|
onNewProfile(editable, nil)
|
2024-11-14 10:02:26 +00:00
|
|
|
} label: {
|
2024-11-26 18:14:56 +00:00
|
|
|
ThemeImageLabel(Strings.Views.App.Toolbar.NewProfile.empty.withTrailingDots, .profileEdit)
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var importProfileButton: some View {
|
|
|
|
Button {
|
|
|
|
isImporting = true
|
|
|
|
} label: {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeImageLabel(Strings.Views.App.Toolbar.importProfile.withTrailingDots, .profileImport)
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-26 18:14:56 +00:00
|
|
|
var providerProfileMenu: some View {
|
|
|
|
Menu {
|
|
|
|
ForEach(supportedModuleTypes, content: providerSubmenu(for:))
|
|
|
|
} label: {
|
|
|
|
ThemeImageLabel(Strings.Views.App.Toolbar.NewProfile.provider, .profileProvider)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func providerSubmenu(for moduleType: ModuleType) -> some View {
|
|
|
|
ProvidersSubmenu(
|
|
|
|
moduleType: moduleType,
|
|
|
|
registry: registry,
|
|
|
|
onSelect: {
|
|
|
|
var copy = $0
|
|
|
|
copy.name = newName
|
|
|
|
onNewProfile(copy, copy.modules.first?.id)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-11-14 10:02:26 +00:00
|
|
|
var migrateProfilesButton: some View {
|
|
|
|
Button(action: onMigrateProfiles) {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeImageLabel(Strings.Views.App.Toolbar.migrateProfiles.withTrailingDots, .profileMigrate)
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-11-26 18:14:56 +00:00
|
|
|
|
|
|
|
private extension AddProfileMenu {
|
|
|
|
var newName: String {
|
|
|
|
profileManager.firstUniqueName(from: Strings.Placeholders.Profile.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: #657, define this list in a single global place
|
|
|
|
var supportedModuleTypes: [ModuleType] {
|
|
|
|
[.openVPN]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Providers
|
|
|
|
|
|
|
|
private struct ProvidersSubmenu: View {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var providerManager: ProviderManager
|
|
|
|
|
|
|
|
let moduleType: ModuleType
|
|
|
|
|
|
|
|
let registry: Registry
|
|
|
|
|
|
|
|
let onSelect: (EditableProfile) -> Void
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Menu {
|
|
|
|
ForEach(providerManager.providers, content: profileButton(for:))
|
|
|
|
} label: {
|
|
|
|
Text(moduleType.localizedDescription)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func profileButton(for provider: ProviderMetadata) -> some View {
|
|
|
|
Button(provider.description) {
|
|
|
|
var editable = EditableProfile()
|
|
|
|
if var newModule = moduleType.newModule(with: registry) as? any ProviderModuleBuilder {
|
|
|
|
newModule.providerId = provider.id
|
|
|
|
editable.modules.append(newModule)
|
|
|
|
}
|
|
|
|
editable.modules.append(OnDemandModule.Builder())
|
|
|
|
editable.activeModulesIds = Set(editable.modules.map(\.id))
|
|
|
|
onSelect(editable)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|