passepartout-apple/Passepartout/App/Views/ProfileView+Provider.swift

157 lines
5.6 KiB
Swift
Raw Normal View History

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 {
struct ProviderSection: View, ProviderProfileAvailability {
@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
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 {
if isProviderProfileAvailable {
2022-04-12 13:09:14 +00:00
mainView
} else {
EmptyView()
}
}
}
2023-03-17 20:55:47 +00:00
@ViewBuilder
2022-04-12 13:09:14 +00:00
private var mainView: some View {
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
}
}
} header: {
currentProviderFullName.map(Text.init)
} footer: {
currentProviderServerDescription.map(Text.init)
}
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)
2023-04-01 21:04:30 +00:00
.xxxThemeTruncation()
}
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)
} footer: {
lastInfrastructureUpdate.map {
Text(L10n.Profile.Sections.ProviderInfrastructure.footer($0))
}
2022-04-12 13:09:14 +00:00
}
}
private var currentProviderFullName: String? {
guard let name = profile.header.providerName else {
assertionFailure("Provider name accessed but profile is not a provider (isPlaceholder? \(profile.isPlaceholder))")
return nil
2022-04-12 13:09:14 +00:00
}
guard let metadata = providerManager.provider(withName: name) else {
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
}
private var currentProviderServerDescription: String? {
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-04-12 13:09:14 +00:00
private var currentProviderCountryImage: Image? {
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
Task { @MainActor in
try await providerManager.fetchRemoteProviderPublisher(forProfile: profile).async()
2022-04-12 13:09:14 +00:00
isRefreshingInfrastructure = false
}
}
}
}