1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
use crate::endpoint_lib::diagnostic::DiagnosticCollector;
use http::Uri;
use url::{Host, Url as ParsedUrl};
#[derive(PartialEq, Debug)]
pub(crate) struct Url<'a> {
uri: Uri,
url: ParsedUrl,
raw: &'a str,
}
#[allow(unused)]
impl<'a> Url<'a> {
pub(crate) fn is_ip(&self) -> bool {
matches!(self.url.host(), Some(Host::Ipv4(_) | Host::Ipv6(_)))
}
pub(crate) fn scheme(&self) -> &str {
self.url.scheme()
}
pub(crate) fn authority(&self) -> &str {
self.uri.authority().unwrap().as_str()
}
pub(crate) fn normalized_path(&self) -> &str {
match self.uri.path() {
path if !path.is_empty() => path,
_ => "/",
}
}
pub(crate) fn path(&self) -> &str {
if self.uri.path() == "/" && !self.raw.ends_with('/') {
""
} else {
self.uri.path()
}
}
}
pub(crate) fn parse_url<'a, 'b>(url: &'a str, e: &'b mut DiagnosticCollector) -> Option<Url<'a>> {
let raw = url;
let uri: Uri = e.capture(url.parse())?;
let url: ParsedUrl = e.capture(url.parse())?;
if let Some(query) = uri.query() {
e.report_error(format!(
"URL cannot have a query component (found {})",
query
));
return None;
}
if !["http", "https"].contains(&url.scheme()) {
e.report_error(format!(
"URL scheme must be HTTP or HTTPS (found {})",
url.scheme()
));
return None;
}
Some(Url { url, uri, raw })
}
#[cfg(test)]
mod test {
use super::*;
use crate::endpoint_lib::diagnostic::DiagnosticCollector;
#[test]
fn parse_simple_url() {
let url = "https://control.vpce-1a2b3c4d-5e6f.s3.us-west-2.vpce.amazonaws.com";
let url = parse_url(url, &mut DiagnosticCollector::new()).expect("valid url");
assert_eq!(url.path(), "");
assert_eq!(url.normalized_path(), "/");
assert_eq!(url.is_ip(), false);
assert_eq!(url.scheme(), "https");
assert_eq!(
url.authority(),
"control.vpce-1a2b3c4d-5e6f.s3.us-west-2.vpce.amazonaws.com"
);
}
#[test]
fn schemes_are_normalized() {
let url = "HTTPS://control.vpce-1a2b3c4d-5e6f.s3.us-west-2.vpce.amazonaws.com";
let url = parse_url(url, &mut DiagnosticCollector::new()).expect("valid url");
assert_eq!(url.scheme(), "https");
}
#[test]
fn parse_url_with_port() {
let url = "http://localhost:8000/path";
let url = parse_url(url, &mut DiagnosticCollector::new()).expect("valid url");
assert_eq!(url.path(), "/path");
assert_eq!(url.normalized_path(), "/path");
assert_eq!(url.is_ip(), false);
assert_eq!(url.scheme(), "http");
assert_eq!(url.authority(), "localhost:8000");
}
#[test]
fn only_http_https_supported() {
let url = "wss://localhost:8443/path";
assert_eq!(parse_url(url, &mut DiagnosticCollector::new()), None);
}
}