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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
use std::{
borrow::Cow,
convert::{Infallible, TryFrom},
};
pub use bstr;
use bstr::{BStr, ByteSlice};
use crate::Scheme;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("Could not decode URL as UTF8")]
Utf8(#[from] std::str::Utf8Error),
#[error(transparent)]
Url(#[from] url::ParseError),
#[error("Protocol {protocol:?} is not supported")]
UnsupportedProtocol { protocol: String },
#[error("Paths cannot be empty")]
EmptyPath,
#[error("Relative URLs are not permitted: {url:?}")]
RelativeUrl { url: String },
}
impl From<Infallible> for Error {
fn from(_: Infallible) -> Self {
unreachable!("Cannot actually happen, but it seems there can't be a blanket impl for this")
}
}
fn str_to_protocol(s: &str) -> Result<Scheme, Error> {
Scheme::try_from(s).map_err(|invalid| Error::UnsupportedProtocol {
protocol: invalid.into(),
})
}
fn guess_protocol(url: &[u8]) -> &str {
match url.find_byte(b':') {
Some(colon_pos) => {
if url[..colon_pos].find_byte(b'.').is_some() {
"ssh"
} else {
"file"
}
}
None => "file",
}
}
fn sanitize_for_protocol<'a>(protocol: &str, url: &'a str) -> Cow<'a, str> {
match protocol {
"ssh" => url.replacen(':', "/", 1).into(),
_ => url.into(),
}
}
fn has_no_explicit_protocol(url: &[u8]) -> bool {
url.find(b"://").is_none()
}
fn try_strip_file_protocol(url: &[u8]) -> Option<&[u8]> {
url.strip_prefix(b"file://")
}
fn to_owned_url(url: url::Url) -> Result<crate::Url, Error> {
Ok(crate::Url {
serialize_alternative_form: false,
scheme: str_to_protocol(url.scheme())?,
user: if url.username().is_empty() {
None
} else {
Some(url.username().into())
},
host: url.host_str().map(Into::into),
port: url.port(),
path: url.path().into(),
})
}
pub fn parse(input: &BStr) -> Result<crate::Url, Error> {
let guessed_protocol = guess_protocol(input);
let path_without_protocol = try_strip_file_protocol(input);
if path_without_protocol.is_some() || (has_no_explicit_protocol(input) && guessed_protocol == "file") {
return Ok(crate::Url {
scheme: Scheme::File,
path: path_without_protocol.unwrap_or(input).into(),
serialize_alternative_form: !input.starts_with(b"file://"),
..Default::default()
});
}
let url_str = std::str::from_utf8(input)?;
let (mut url, mut sanitized_scp) = match url::Url::parse(url_str) {
Ok(url) => (url, false),
Err(url::ParseError::RelativeUrlWithoutBase) => {
(
url::Url::parse(&format!(
"{}://{}",
guessed_protocol,
sanitize_for_protocol(guessed_protocol, url_str)
))?,
true,
)
}
Err(err) => return Err(err.into()),
};
if url.scheme().find('.').is_some() {
url = url::Url::parse(&format!("ssh://{}", sanitize_for_protocol("ssh", url_str)))?;
sanitized_scp = true;
}
if url.scheme() != "rad" && url.path().is_empty() {
return Err(Error::EmptyPath);
}
if url.cannot_be_a_base() {
return Err(Error::RelativeUrl { url: url.into() });
}
to_owned_url(url).map(|url| url.serialize_alternate_form(sanitized_scp))
}