2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// Validators.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 3/31/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
|
|
|
|
|
|
|
|
struct Validators {
|
|
|
|
enum ValidationError: Error {
|
|
|
|
case notSet
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case empty
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case ipAddress
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case domainName
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case url
|
|
|
|
}
|
|
|
|
|
|
|
|
static func notNil(_ string: String?) throws {
|
2023-03-19 13:41:53 +00:00
|
|
|
guard string != nil else {
|
2022-04-12 13:09:14 +00:00
|
|
|
throw ValidationError.notSet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static func notEmpty(_ string: String) throws {
|
|
|
|
let valid = string.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
|
|
guard !valid.isEmpty else {
|
|
|
|
throw ValidationError.empty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static func ipAddress(_ string: String) throws {
|
|
|
|
var sin = sockaddr_in()
|
|
|
|
var sin6 = sockaddr_in6()
|
|
|
|
|
|
|
|
if string.withCString({ cstring in inet_pton(AF_INET6, cstring, &sin6.sin6_addr) }) == 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if string.withCString({ cstring in inet_pton(AF_INET, cstring, &sin.sin_addr) }) == 1 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
throw ValidationError.ipAddress
|
|
|
|
}
|
|
|
|
|
|
|
|
private static let rxDomainName = NSRegularExpression("^((?!-)[A-Za-z0-9-]{1,63}(?<!-)\\.)+[A-Za-z]{2,6}$")
|
|
|
|
|
|
|
|
static func domainName(_ string: String) throws {
|
|
|
|
guard rxDomainName.numberOfMatches(in: string, options: [], range: .init(location: 0, length: string.count)) > 0 else {
|
|
|
|
throw ValidationError.domainName
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
static func url(_ string: String) throws {
|
2023-03-19 13:41:53 +00:00
|
|
|
guard URL(string: string) != nil else {
|
2022-04-12 13:09:14 +00:00
|
|
|
throw ValidationError.url
|
|
|
|
}
|
|
|
|
}
|
2022-04-25 20:36:05 +00:00
|
|
|
|
|
|
|
static func dnsOverTLSServerName(_ string: String) throws {
|
|
|
|
do {
|
|
|
|
try domainName(string)
|
|
|
|
} catch {
|
|
|
|
try ipAddress(string)
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|