2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// ProfileView+Provider.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/18/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
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutLibrary
|
2022-04-12 13:09:14 +00:00
|
|
|
|
|
|
|
extension ProfileView {
|
2022-04-19 06:56:10 +00:00
|
|
|
struct ProviderSection: View, ProviderProfileAvailability {
|
2022-08-28 07:19:15 +00:00
|
|
|
@ObservedObject var providerManager: ProviderManager
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
@ObservedObject private var currentProfile: ObservableProfile
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-19 06:56:10 +00:00
|
|
|
var profile: Profile {
|
|
|
|
currentProfile.value
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
@State private var isProviderLocationPresented = false
|
|
|
|
|
|
|
|
@State private var isRefreshingInfrastructure = false
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
init(currentProfile: ObservableProfile) {
|
|
|
|
providerManager = .shared
|
|
|
|
self.currentProfile = currentProfile
|
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
debugChanges()
|
|
|
|
return Group {
|
2022-04-19 06:56:10 +00:00
|
|
|
if isProviderProfileAvailable {
|
2022-04-12 13:09:14 +00:00
|
|
|
mainView
|
|
|
|
} else {
|
|
|
|
EmptyView()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-09-04 07:26:03 +00:00
|
|
|
@ViewBuilder
|
2022-04-12 13:09:14 +00:00
|
|
|
private var mainView: some View {
|
2022-05-01 17:43:33 +00:00
|
|
|
Section {
|
2022-04-12 13:09:14 +00:00
|
|
|
NavigationLink(isActive: $isProviderLocationPresented) {
|
|
|
|
ProviderLocationView(
|
|
|
|
currentProfile: currentProfile,
|
|
|
|
isEditable: true,
|
|
|
|
isPresented: $isProviderLocationPresented
|
|
|
|
)
|
|
|
|
} label: {
|
|
|
|
HStack {
|
|
|
|
Label(L10n.Provider.Location.title, systemImage: themeProviderLocationImage)
|
|
|
|
Spacer()
|
|
|
|
currentProviderCountryImage
|
|
|
|
}
|
|
|
|
}
|
2022-09-04 07:26:03 +00:00
|
|
|
} header: {
|
|
|
|
currentProviderFullName.map(Text.init)
|
|
|
|
} footer: {
|
|
|
|
currentProviderServerDescription.map(Text.init)
|
|
|
|
}
|
2023-03-19 07:19:32 +00:00
|
|
|
Section {
|
|
|
|
Toggle(
|
|
|
|
L10n.Profile.Items.RandomizesServer.caption,
|
|
|
|
isOn: $currentProfile.value.providerRandomizesServer ?? false
|
|
|
|
)
|
|
|
|
Toggle(
|
|
|
|
L10n.Profile.Items.VpnResolvesHostname.caption,
|
|
|
|
isOn: $currentProfile.value.networkSettings.resolvesHostname
|
|
|
|
)
|
|
|
|
} footer: {
|
|
|
|
Text(L10n.Profile.Sections.VpnResolvesHostname.footer)
|
|
|
|
}
|
2022-09-04 07:26:03 +00:00
|
|
|
Section {
|
2022-04-12 13:09:14 +00:00
|
|
|
NavigationLink {
|
|
|
|
ProviderPresetView(currentProfile: currentProfile)
|
|
|
|
} label: {
|
|
|
|
Label(L10n.Provider.Preset.title, systemImage: themeProviderPresetImage)
|
|
|
|
.withTrailingText(currentProviderPreset)
|
|
|
|
}
|
|
|
|
Button(action: refreshInfrastructure) {
|
|
|
|
Text(L10n.Profile.Items.Provider.Refresh.caption)
|
|
|
|
}.withTrailingProgress(when: isRefreshingInfrastructure)
|
2022-05-01 17:43:33 +00:00
|
|
|
} footer: {
|
|
|
|
lastInfrastructureUpdate.map {
|
|
|
|
Text(L10n.Profile.Sections.ProviderInfrastructure.footer($0))
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-07 14:43:40 +00:00
|
|
|
private var currentProviderFullName: String? {
|
2022-09-04 07:26:03 +00:00
|
|
|
guard let name = profile.header.providerName else {
|
|
|
|
assertionFailure("Provider name accessed but profile is not a provider (isPlaceholder? \(profile.isPlaceholder))")
|
2022-07-07 14:43:40 +00:00
|
|
|
return nil
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
guard let metadata = providerManager.provider(withName: name) else {
|
2022-07-07 14:43:40 +00:00
|
|
|
assertionFailure("Provider metadata not found")
|
|
|
|
return nil
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2022-09-04 07:29:07 +00:00
|
|
|
return metadata.fullName
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
2022-09-04 07:26:03 +00:00
|
|
|
private var currentProviderServerDescription: String? {
|
2023-03-19 07:19:32 +00:00
|
|
|
guard let server = profile.providerServer(providerManager) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if currentProfile.value.providerRandomizesServer ?? false {
|
|
|
|
return server.localizedCountry(withCategory: true)
|
|
|
|
} else {
|
|
|
|
return server.localizedLongDescription(withCategory: true)
|
|
|
|
}
|
2022-09-04 07:26:03 +00:00
|
|
|
}
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
private var currentProviderCountryImage: Image? {
|
2022-09-04 07:26:03 +00:00
|
|
|
guard let code = profile.providerServer(providerManager)?.countryCode else {
|
2022-04-12 13:09:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return themeAssetsCountryImage(code).asAssetImage
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
private var currentProviderPreset: String? {
|
2022-09-04 18:09:31 +00:00
|
|
|
providerManager.localizedPreset(forProfile: profile)
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
private var lastInfrastructureUpdate: String? {
|
2022-09-04 18:09:31 +00:00
|
|
|
providerManager.localizedInfrastructureUpdate(forProfile: profile)
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private func refreshInfrastructure() {
|
|
|
|
isRefreshingInfrastructure = true
|
2022-10-13 06:53:50 +00:00
|
|
|
Task { @MainActor in
|
2022-09-04 07:26:03 +00:00
|
|
|
try await providerManager.fetchRemoteProviderPublisher(forProfile: profile).async()
|
2022-04-12 13:09:14 +00:00
|
|
|
isRefreshingInfrastructure = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|