2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
2024-11-03 12:16:13 +00:00
|
|
|
import CommonLibrary
|
2024-11-02 09:11:59 +00:00
|
|
|
import CommonUtils
|
2024-09-23 13:02:26 +00:00
|
|
|
import PassepartoutKit
|
|
|
|
import SwiftUI
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
public struct OpenVPNCredentialsView: View {
|
2024-11-03 07:17:19 +00:00
|
|
|
private enum Field: Hashable {
|
|
|
|
case username
|
|
|
|
|
|
|
|
case password
|
|
|
|
|
|
|
|
case otp
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@EnvironmentObject
|
|
|
|
private var iapManager: IAPManager
|
2024-10-02 14:05:40 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@Binding
|
|
|
|
private var isInteractive: Bool
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@Binding
|
|
|
|
private var credentials: OpenVPN.Credentials?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-03 10:27:12 +00:00
|
|
|
private let isAuthenticating: Bool
|
|
|
|
|
|
|
|
private let onSubmit: (() -> Void)?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@State
|
|
|
|
private var builder = OpenVPN.Credentials.Builder()
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@State
|
|
|
|
private var paywallReason: PaywallReason?
|
|
|
|
|
2024-11-03 07:17:19 +00:00
|
|
|
@FocusState
|
|
|
|
private var focusedField: Field?
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
public init(
|
|
|
|
isInteractive: Binding<Bool>,
|
|
|
|
credentials: Binding<OpenVPN.Credentials?>,
|
2024-11-03 10:27:12 +00:00
|
|
|
isAuthenticating: Bool = false,
|
|
|
|
onSubmit: (() -> Void)? = nil
|
2024-11-01 22:32:35 +00:00
|
|
|
) {
|
|
|
|
_isInteractive = isInteractive
|
|
|
|
_credentials = credentials
|
|
|
|
self.isAuthenticating = isAuthenticating
|
2024-11-03 10:27:12 +00:00
|
|
|
self.onSubmit = onSubmit
|
2024-11-01 22:32:35 +00:00
|
|
|
}
|
2024-10-02 14:05:40 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
public var body: some View {
|
2024-11-02 14:24:41 +00:00
|
|
|
Group {
|
2024-11-01 22:32:35 +00:00
|
|
|
restrictedArea
|
2024-11-05 12:27:05 +00:00
|
|
|
.modifier(PurchaseButtonModifier(
|
|
|
|
Strings.Modules.Openvpn.Credentials.Interactive.purchase,
|
|
|
|
feature: .interactiveLogin,
|
2024-11-05 17:55:57 +00:00
|
|
|
suggesting: .Features.interactiveLogin,
|
2024-11-05 12:27:05 +00:00
|
|
|
showsIfRestricted: false,
|
|
|
|
paywallReason: $paywallReason
|
|
|
|
))
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
inputSection
|
|
|
|
}
|
|
|
|
.themeManualInput()
|
2024-11-05 12:27:05 +00:00
|
|
|
.modifier(PaywallModifier(reason: $paywallReason))
|
2024-11-01 22:32:35 +00:00
|
|
|
.onLoad {
|
|
|
|
builder = credentials?.builder() ?? OpenVPN.Credentials.Builder()
|
|
|
|
builder.otp = nil
|
2024-11-03 07:17:19 +00:00
|
|
|
if isAuthenticating {
|
|
|
|
switch builder.otpMethod {
|
|
|
|
case .none:
|
|
|
|
focusedField = .username
|
|
|
|
|
|
|
|
default:
|
|
|
|
focusedField = .otp
|
|
|
|
}
|
|
|
|
}
|
2024-11-01 22:32:35 +00:00
|
|
|
}
|
|
|
|
.onChange(of: builder) {
|
|
|
|
var copy = $0
|
|
|
|
if isEligibleForInteractiveLogin {
|
|
|
|
copy.otp = copy.otp ?? ""
|
|
|
|
} else {
|
|
|
|
copy.otpMethod = .none
|
|
|
|
copy.otp = nil
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-11-01 22:32:35 +00:00
|
|
|
credentials = copy.build()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
private extension OpenVPNCredentialsView {
|
2024-10-02 14:05:40 +00:00
|
|
|
var isEligibleForInteractiveLogin: Bool {
|
|
|
|
iapManager.isEligible(for: .interactiveLogin)
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
var otpMethods: [OpenVPN.Credentials.OTPMethod] {
|
|
|
|
[.none, .append, .encode]
|
|
|
|
}
|
|
|
|
|
2024-10-02 14:05:40 +00:00
|
|
|
@ViewBuilder
|
|
|
|
var restrictedArea: some View {
|
2024-11-05 12:27:05 +00:00
|
|
|
if !isAuthenticating {
|
|
|
|
interactiveSection
|
2024-10-02 14:05:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
var interactiveSection: some View {
|
|
|
|
Group {
|
|
|
|
Toggle(Strings.Modules.Openvpn.Credentials.interactive, isOn: $isInteractive)
|
2024-11-05 12:32:09 +00:00
|
|
|
.themeRow(footer: interactiveFooter)
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
if isInteractive {
|
|
|
|
Picker(Strings.Unlocalized.otp, selection: $builder.otpMethod) {
|
|
|
|
ForEach(otpMethods, id: \.self) {
|
|
|
|
Text($0.localizedDescription(style: .entity))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 15:03:53 +00:00
|
|
|
.themeSection(footer: interactiveFooter)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2024-11-02 14:24:41 +00:00
|
|
|
if !isAuthenticating || builder.otpMethod == .none {
|
2024-11-03 10:27:12 +00:00
|
|
|
usernameField
|
|
|
|
passwordField
|
2024-11-02 14:24:41 +00:00
|
|
|
}
|
2024-10-30 16:07:59 +00:00
|
|
|
if isEligibleForInteractiveLogin, isAuthenticating, builder.otpMethod != .none {
|
2024-11-03 10:27:12 +00:00
|
|
|
otpField
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
2024-10-03 15:03:53 +00:00
|
|
|
.themeSection(footer: inputFooter)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var inputFooter: String? {
|
|
|
|
if isAuthenticating {
|
|
|
|
return builder.otpMethod.localizedDescription(style: .approachDescription)
|
2024-10-30 16:07:59 +00:00
|
|
|
.nilIfEmpty
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2024-11-03 10:27:12 +00:00
|
|
|
|
|
|
|
var usernameField: some View {
|
|
|
|
ThemeTextField(Strings.Global.username, text: $builder.username, placeholder: Strings.Placeholders.username)
|
|
|
|
.textContentType(.username)
|
|
|
|
.focused($focusedField, equals: .username)
|
|
|
|
}
|
|
|
|
|
|
|
|
var passwordField: some View {
|
|
|
|
ThemeSecureField(title: Strings.Global.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?()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Preview {
|
|
|
|
|
|
|
|
@State
|
|
|
|
var credentials: OpenVPN.Credentials?
|
|
|
|
|
|
|
|
@State
|
2024-10-05 08:18:57 +00:00
|
|
|
var isInteractive = true
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
return NavigationStack {
|
2024-11-01 22:32:35 +00:00
|
|
|
OpenVPNCredentialsView(
|
2024-09-23 13:02:26 +00:00
|
|
|
isInteractive: $isInteractive,
|
|
|
|
credentials: $credentials
|
|
|
|
)
|
2024-10-02 14:05:40 +00:00
|
|
|
.withMockEnvironment()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|