passepartout-apple/Passepartout/App/L10n/OpenVPN+L10n.swift

238 lines
6.4 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// OpenVPN+L10n.swift
// Passepartout
//
// Created by Davide De Rosa on 2/26/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 Foundation
2023-07-02 10:51:50 +00:00
import PassepartoutLibrary
2022-04-12 13:09:14 +00:00
import TunnelKitOpenVPN
extension OpenVPN.Cipher {
var localizedDescription: String {
2022-07-16 13:06:35 +00:00
description
2022-04-12 13:09:14 +00:00
}
}
extension OpenVPN.Digest {
var localizedDescription: String {
2022-07-16 13:06:35 +00:00
description
2022-04-12 13:09:14 +00:00
}
}
extension OpenVPN.CompressionFraming {
var localizedDescription: String {
switch self {
case .disabled:
return L10n.Global.Strings.disabled
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
case .compLZO:
return Unlocalized.OpenVPN.compLZO
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
case .compress, .compressV2:
return Unlocalized.OpenVPN.compress
}
}
}
extension OpenVPN.CompressionAlgorithm {
var localizedDescription: String {
let V = L10n.Endpoint.Advanced.Openvpn.Items.self
switch self {
case .disabled:
return L10n.Global.Strings.disabled
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
case .LZO:
return Unlocalized.OpenVPN.lzo
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
case .other:
return V.CompressionAlgorithm.Value.other
}
}
}
extension Optional where Wrapped == OpenVPN.TLSWrap {
var localizedDescription: String {
2022-11-06 17:08:41 +00:00
guard let strategy = self?.strategy else {
return L10n.Global.Strings.disabled
}
2022-04-12 13:09:14 +00:00
let V = L10n.Endpoint.Advanced.Openvpn.Items.self
2022-11-06 17:08:41 +00:00
switch strategy {
case .auth:
return V.TlsWrapping.Value.auth
case .crypt:
return V.TlsWrapping.Value.crypt
}
}
}
2022-04-12 13:09:14 +00:00
extension OpenVPN.XORMethod {
2022-11-06 17:08:41 +00:00
var localizedDescription: String {
switch self {
case .xormask:
return Unlocalized.OpenVPN.XOR.xormask.rawValue
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case .xorptrpos:
return Unlocalized.OpenVPN.XOR.xorptrpos.rawValue
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case .reverse:
return Unlocalized.OpenVPN.XOR.reverse.rawValue
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case .obfuscate:
return Unlocalized.OpenVPN.XOR.obfuscate.rawValue
}
}
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
var localizedLongDescription: String {
switch self {
case .xormask(let mask):
return "\(localizedDescription) \(mask.toHex())"
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case .obfuscate(let mask):
return "\(localizedDescription) \(mask.toHex())"
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
default:
return localizedDescription
}
2022-04-12 13:09:14 +00:00
}
}
extension Optional where Wrapped == Bool {
var localizedDescriptionAsEKU: String {
let V = L10n.Global.Strings.self
return (self ?? false) ? V.enabled : V.disabled
}
}
extension TimeInterval {
var localizedDescriptionAsRenegotiatesAfter: String {
let V = L10n.Endpoint.Advanced.Openvpn.Items.self
if self > 0 {
return V.RenegotiationSeconds.Value.after(TimeInterval(self).localizedDescription)
} else {
return L10n.Global.Strings.disabled
}
}
}
extension Bool {
var localizedDescriptionAsRandomizeEndpoint: String {
let V = L10n.Global.Strings.self
return self ? V.enabled : V.disabled
}
2023-03-17 20:55:47 +00:00
var localizedDescriptionAsRandomizeHostnames: String {
let V = L10n.Global.Strings.self
return self ? V.enabled : V.disabled
}
2022-04-12 13:09:14 +00:00
}
extension OpenVPN.PullMask {
var localizedDescription: String {
switch self {
case .routes:
return L10n.Endpoint.Advanced.Openvpn.Items.Route.caption
2023-03-17 20:55:47 +00:00
case .dns:
return Unlocalized.Network.dns
2023-03-17 20:55:47 +00:00
case .proxy:
return L10n.Global.Strings.proxy
}
}
}
2023-07-02 10:51:50 +00:00
extension TunnelKitOpenVPNError: LocalizedError {
public var errorDescription: String? {
let V = L10n.Tunnelkit.Errors.Vpn.self
switch self {
case .socketActivity, .timeout:
return V.timeout
case .dnsFailure:
return V.dns
case .tlsInitialization, .tlsServerVerification, .tlsHandshake:
return V.tls
case .authentication:
return V.auth
case .encryptionInitialization, .encryptionData:
return V.encryption
case .serverCompression, .lzo:
return V.compression
case .networkChanged:
return V.network
case .routing:
return V.routing
case .gatewayUnattainable:
return V.gateway
case .serverShutdown:
return V.shutdown
default:
return nil
}
}
}
extension OpenVPN.ConfigurationError: LocalizedError {
public var errorDescription: String? {
let V = L10n.Tunnelkit.Errors.Openvpn.self
switch self {
case .encryptionPassphrase:
pp_log.error("Could not parse configuration URL: unable to decrypt, passphrase required")
return V.passphraseRequired
case .unableToDecrypt(let error):
pp_log.error("Could not parse configuration URL: unable to decrypt, \(error.localizedDescription)")
return V.decryption
case .malformed(let option):
pp_log.error("Could not parse configuration URL: malformed option, \(option)")
return V.malformed(option)
case .missingConfiguration(let option):
pp_log.error("Could not parse configuration URL: missing configuration, \(option)")
return V.requiredOption(option)
case .unsupportedConfiguration(var option):
if option.contains("external") {
option.append(" (see FAQ)")
}
pp_log.error("Could not parse configuration URL: unsupported configuration, \(option)")
return V.unsupportedOption(option)
case .continuationPushReply:
assertionFailure("This is a server-side configuration parsing error")
return nil
}
}
}