use crate::parse_port;
use crate::{Authority, AuthorityRef, Domain, HostRef, InvalidAddress, ParseError, impl_parse};
impl_parse!(Authority, "Domain names are normalized to lowercase.");
impl TryFrom<&[u8]> for Authority {
type Error = ParseError;
fn try_from(authority: &[u8]) -> Result<Self, Self::Error> {
match AuthorityRef::try_from(authority) {
Ok(authority) => Ok(authority.to_authority()),
Err(error) => {
if authority.iter().any(|b| b.is_ascii_uppercase())
&& let Ok((host, port)) = parse_port(authority)
&& let Ok(domain) = Domain::try_from(host)
{
Ok(domain.to_host().to_authority(port))
} else {
Err(error)
}
}
}
}
}
impl TryFrom<String> for Authority {
type Error = InvalidAddress<String>;
fn try_from(authority: String) -> Result<Self, Self::Error> {
match AuthorityRef::try_from(authority.as_bytes()) {
Ok(authority_ref) => match authority_ref.host() {
HostRef::Address(ip) => Ok(ip.to_host().to_authority(authority_ref.port())),
HostRef::Name(domain) => {
let name_len: usize = domain.name().len();
let port: u16 = authority_ref.port();
let mut name: String = authority;
name.truncate(name_len);
Ok(unsafe { Domain::new_unchecked(name) }.to_host().to_authority(port))
}
},
Err(error) => {
if let Ok((host, port)) = parse_port(authority.as_bytes())
&& Domain::is_valid_name(host, true)
{
let name_len: usize = host.len();
let mut name: String = authority;
name.truncate(name_len);
name.make_ascii_lowercase();
Ok(unsafe { Domain::new_unchecked(name) }.to_host().to_authority(port))
} else {
Err(InvalidAddress::new(authority, error))
}
}
}
}
}
impl TryFrom<Vec<u8>> for Authority {
type Error = InvalidAddress<Vec<u8>>;
fn try_from(authority: Vec<u8>) -> Result<Self, Self::Error> {
match AuthorityRef::try_from(authority.as_slice()) {
Ok(authority_ref) => match authority_ref.host() {
HostRef::Address(ip) => Ok(ip.to_host().to_authority(authority_ref.port())),
HostRef::Name(domain) => {
let name_len: usize = domain.name().len();
let port: u16 = authority_ref.port();
let mut name: Vec<u8> = authority;
name.truncate(name_len);
let name: String = unsafe { String::from_utf8_unchecked(name) };
Ok(unsafe { Domain::new_unchecked(name) }.to_host().to_authority(port))
}
},
Err(error) => {
if let Ok((host, port)) = parse_port(authority.as_slice())
&& Domain::is_valid_name(host, true)
{
let name_len: usize = host.len();
let mut name: Vec<u8> = authority;
name.truncate(name_len);
name.make_ascii_lowercase();
let name: String = unsafe { String::from_utf8_unchecked(name) };
Ok(unsafe { Domain::new_unchecked(name) }.to_host().to_authority(port))
} else {
Err(InvalidAddress::new(authority, error))
}
}
}
}
}
#[cfg(test)]
mod tests {
use crate::ParseError::{InvalidAuthority, InvalidHost, InvalidPort};
use crate::{Authority, Domain, IPv4Address, IPv6Address, InvalidAddress, ParseError};
use std::str::FromStr;
#[test]
fn from_str() {
let test_cases: &[(&str, Result<Authority, ParseError>)] = &[
("", Err(InvalidPort)),
("localhost:", Err(InvalidPort)),
("localhost:xx", Err(InvalidPort)),
(":80", Err(InvalidHost)),
("127.0.0.1:80", Ok(IPv4Address::LOCALHOST.to_host().to_authority(80))),
("::1:80", Err(InvalidAuthority)),
("[::1]:80", Ok(IPv6Address::LOCALHOST.to_host().to_authority(80))),
(
"[::FFFF]:80",
Ok(IPv6Address::from([0, 0, 0, 0, 0, 0, 0, 0xFFFF])
.to_host()
.to_authority(80)),
),
("localhost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("LocalHost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("Local_Host:80", Err(InvalidHost)),
];
for (input, expected) in test_cases {
let result: Result<Authority, ParseError> = Authority::from_str(input);
assert_eq!(result, *expected, "input={}", input);
}
}
#[test]
fn try_from_str() {
let result: Result<Authority, ParseError> = Authority::try_from("localhost:80");
let expected: Result<Authority, ParseError> = Ok(Domain::localhost().to_host().to_authority(80));
assert_eq!(result, expected);
let result: Result<Authority, ParseError> = Authority::try_from("LocalHost:80");
let expected: Result<Authority, ParseError> = Ok(Domain::localhost().to_host().to_authority(80));
assert_eq!(result, expected);
}
#[test]
fn try_from_slice() {
let result: Result<Authority, ParseError> = Authority::try_from("LocalHost:80".as_bytes());
let expected: Result<Authority, ParseError> = Ok(Domain::localhost().to_host().to_authority(80));
assert_eq!(result, expected);
let result: Result<Authority, ParseError> = Authority::try_from(b"\xFF:80".as_slice());
let expected: Result<Authority, ParseError> = Err(InvalidHost);
assert_eq!(result, expected);
}
#[test]
fn try_from_string() {
let test_cases: &[(&str, Result<Authority, &str>)] = &[
("localhost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("LocalHost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("[::1]:80", Ok(IPv6Address::LOCALHOST.to_host().to_authority(80))),
("Local!Host:80", Err("Local!Host:80")),
];
for (input, expected) in test_cases {
let result: Result<Authority, InvalidAddress<String>> = Authority::try_from(input.to_string());
let result: Result<Authority, String> = result.map_err(|e| e.into_value());
assert_eq!(result, expected.clone().map_err(String::from), "input={}", input);
}
}
#[test]
fn try_from_vec() {
let test_cases: &[(&str, Result<Authority, &str>)] = &[
("localhost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("LocalHost:80", Ok(Domain::localhost().to_host().to_authority(80))),
("[::1]:80", Ok(IPv6Address::LOCALHOST.to_host().to_authority(80))),
("Local!Host:80", Err("Local!Host:80")),
];
for (input, expected) in test_cases {
let result: Result<Authority, InvalidAddress<Vec<u8>>> = Authority::try_from(Vec::from(*input));
let result: Result<Authority, Vec<u8>> = result.map_err(|e| e.into_value());
assert_eq!(result, expected.clone().map_err(Vec::from), "input={}", input);
}
}
}