// // OpenVPNView+Credentials.swift // Passepartout // // Created by Davide De Rosa on 9/1/24. // Copyright (c) 2024 Davide De Rosa. All rights reserved. // // 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 . // import CommonLibrary import CommonUtils import PassepartoutKit import SwiftUI public struct OpenVPNCredentialsView: View { private enum Field: Hashable { case username case password case otp } @EnvironmentObject private var iapManager: IAPManager @EnvironmentObject private var providerManager: ProviderManager private let providerId: ProviderID? @Binding private var isInteractive: Bool @Binding private var credentials: OpenVPN.Credentials? private let isAuthenticating: Bool private let onSubmit: (() -> Void)? @State private var builder = OpenVPN.Credentials.Builder() @State private var providerConfiguration: OpenVPN.Credentials.ProviderConfiguration? @State private var paywallReason: PaywallReason? @FocusState private var focusedField: Field? public init( providerId: ProviderID?, isInteractive: Binding, credentials: Binding, isAuthenticating: Bool = false, onSubmit: (() -> Void)? = nil ) { self.providerId = providerId _isInteractive = isInteractive _credentials = credentials self.isAuthenticating = isAuthenticating self.onSubmit = onSubmit } public var body: some View { debugChanges() return Group { if !isAuthenticating { interactiveSection } inputSection guidanceSection } .themeManualInput() .themeAnimation(on: isInteractive, category: .modules) .themeAnimation(on: builder, category: .modules) .modifier(PaywallModifier(reason: $paywallReason)) .onLoad(perform: onLoad) .onChange(of: builder, perform: onChange) } } private extension OpenVPNCredentialsView { var interactiveSection: some View { Group { Toggle(isOn: $isInteractive) { HStack { Text(Strings.Modules.Openvpn.Credentials.interactive) PurchaseRequiredButton(features: requiredFeatures, paywallReason: $paywallReason) } } .themeRowWithSubtitle(interactiveFooter) if isInteractive { Picker(Strings.Unlocalized.otp, selection: $builder.otpMethod) { ForEach(otpMethods, id: \.self) { Text($0.localizedDescription(style: .entity)) } } } } .themeSection(footer: interactiveFooter) } var interactiveFooter: String? { if isInteractive { return [ Strings.Modules.Openvpn.Credentials.Interactive.footer, builder.otpMethod.localizedDescription(style: .approachDescription) ].joined(separator: " ") } return nil } var inputSection: some View { Group { if !isAuthenticating || builder.otpMethod == .none { usernameField if !ignoresPassword { passwordField } } if isEligibleForInteractiveLogin, isAuthenticating, builder.otpMethod != .none { otpField } } .themeSection(footer: inputFooter, forcesFooter: true) } @ViewBuilder var guidanceSection: some View { if let url = providerConfiguration?.url { Link(Strings.Modules.Openvpn.Credentials.Guidance.link, destination: url) } } var inputFooter: String? { if isAuthenticating { return builder.otpMethod.localizedDescription(style: .approachDescription) .nilIfEmpty } else if let providerConfiguration { switch providerConfiguration.purpose { case .web: return Strings.Modules.Openvpn.Credentials.Guidance.web case .specific: return Strings.Modules.Openvpn.Credentials.Guidance.specific } } return nil } var usernameField: some View { ThemeTextField(Strings.Global.Nouns.username, text: $builder.username, placeholder: Strings.Placeholders.username) .textContentType(.username) .focused($focusedField, equals: .username) } var passwordField: some View { ThemeSecureField(title: Strings.Global.Nouns.password, text: $builder.password, placeholder: Strings.Placeholders.secret) .textContentType(.password) .focused($focusedField, equals: .password) .onSubmit { if builder.otpMethod == .none { onSubmit?() } } } var otpField: some View { ThemeSecureField( title: Strings.Unlocalized.otp, text: $builder.otp ?? "", placeholder: Strings.Placeholders.secret ) .textContentType(.oneTimeCode) .focused($focusedField, equals: .otp) .onSubmit { if builder.otpMethod != .none { onSubmit?() } } } } private extension OpenVPNCredentialsView { var isEligibleForInteractiveLogin: Bool { iapManager.isEligible(for: .interactiveLogin) } var requiredFeatures: Set? { isInteractive ? [.interactiveLogin] : nil } var otpMethods: [OpenVPN.Credentials.OTPMethod] { [.none, .append, .encode] } var ignoresPassword: Bool { providerConfiguration?.options?.contains(.noPassword) ?? false } func onLoad() { if let providerId, let metadata = providerManager.provider(withId: providerId) { providerConfiguration = OpenVPN.Credentials.configuration(forProvider: metadata) } builder = credentials?.builder() ?? OpenVPN.Credentials.Builder() if ignoresPassword { builder.password = "" } builder.otp = nil if isAuthenticating { switch builder.otpMethod { case .none: focusedField = .username default: focusedField = .otp } } } func onChange(_ builder: OpenVPN.Credentials.Builder) { var copy = builder if isEligibleForInteractiveLogin { copy.otp = copy.otp ?? "" } else { copy.otpMethod = .none copy.otp = nil } credentials = copy.build() } } // MARK: - Previews #Preview { struct ContentView: View { @State private var credentials: OpenVPN.Credentials? @State private var isInteractive = true var body: some View { NavigationStack { OpenVPNCredentialsView( providerId: nil, isInteractive: $isInteractive, credentials: $credentials ) } } } return ContentView() .withMockEnvironment() }