passepartout-apple/Passepartout/Library/Sources/UILibrary/L10n/AppError+L10n.swift

141 lines
3.9 KiB
Swift
Raw Normal View History

2024-09-23 13:02:26 +00:00
//
// AppError+L10n.swift
// Passepartout
//
// Created by Davide De Rosa on 8/27/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/>.
//
import CommonLibrary
import CommonUtils
2024-09-23 13:02:26 +00:00
import Foundation
import PassepartoutKit
extension AppError: LocalizedError {
public var errorDescription: String? {
2024-09-23 13:02:26 +00:00
let V = Strings.Errors.App.self
switch self {
case .emptyProfileName:
return V.emptyProfileName
case .malformedModule(let module, let error):
return V.malformedModule(module.moduleType.localizedDescription, error.localizedDescription)
2024-09-23 13:02:26 +00:00
case .permissionDenied:
return V.default
case .generic(let error):
return error.localizedDescription
}
}
}
// MARK: - App side
extension PassepartoutError: LocalizedError {
public var errorDescription: String? {
switch code {
case .connectionModuleRequired:
return Strings.Errors.App.Passepartout.connectionModuleRequired
case .corruptProviderModule:
return Strings.Errors.App.Passepartout.corruptProviderModule(reason?.localizedDescription ?? "")
case .incompatibleModules:
return Strings.Errors.App.Passepartout.incompatibleModules
2024-09-23 13:02:26 +00:00
case .invalidFields:
let fields = (userInfo as? [String: String?])
2024-09-23 13:02:26 +00:00
.map {
$0.map {
"\($0)=\($1?.description ?? "")"
}
.joined(separator: ",")
2024-09-23 13:02:26 +00:00
}
return [Strings.Errors.App.Passepartout.invalidFields, fields]
.compactMap { $0 }
.joined(separator: " ")
2024-09-23 13:02:26 +00:00
case .noActiveModules:
return Strings.Errors.App.Passepartout.noActiveModules
2024-09-23 13:02:26 +00:00
case .parsing:
let message = userInfo as? String ?? reason?.localizedDescription
return [Strings.Errors.App.Passepartout.parsing, message]
.compactMap { $0 }
.joined(separator: " ")
2024-09-23 13:02:26 +00:00
case .providerRequired:
return Strings.Errors.App.Passepartout.providerRequired
2024-09-23 13:02:26 +00:00
case .unhandled:
return reason?.localizedDescription
default:
return Strings.Errors.App.Passepartout.default(code.rawValue)
}
}
}
// MARK: - Tunnel side
extension PassepartoutError.Code: StyledLocalizableEntity {
public enum Style {
case tunnel
}
2024-09-23 13:02:26 +00:00
public func localizedDescription(style: Style) -> String {
switch style {
case .tunnel:
let V = Strings.Errors.Tunnel.self
switch self {
case .authentication:
return V.auth
2024-09-23 13:02:26 +00:00
case .crypto:
return V.encryption
2024-09-23 13:02:26 +00:00
case .dnsFailure:
return V.dns
2024-09-23 13:02:26 +00:00
case .timeout:
return V.timeout
2024-09-23 13:02:26 +00:00
case .OpenVPN.compressionMismatch:
return V.compression
2024-09-23 13:02:26 +00:00
case .OpenVPN.noRouting:
return V.routing
2024-09-23 13:02:26 +00:00
case .OpenVPN.serverShutdown:
return V.shutdown
2024-09-23 13:02:26 +00:00
case .OpenVPN.tlsFailure:
return V.tls
default:
return V.generic
}
2024-09-23 13:02:26 +00:00
}
}
}