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
|
|
|
|
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
|
|
|
|
2023-03-17 16:52:57 +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
|
|
|
|
2022-10-16 12:19:36 +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
|
|
|
}
|
2022-10-13 17:09:51 +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
|
|
|
|
2022-10-13 17:09:51 +00:00
|
|
|
case .dns:
|
|
|
|
return Unlocalized.Network.dns
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-10-13 17:09:51 +00:00
|
|
|
case .proxy:
|
|
|
|
return L10n.Global.Strings.proxy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|