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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
#[derive(Debug)]
pub struct Url {
pub scheme: Option<String>,
pub user_pass: (Option<String>, Option<String>),
pub subdomain: Option<String>,
pub domain: Option<String>,
pub top_level_domain: Option<String>,
pub port: Option<u32>,
pub path: Option<Vec<String>>,
pub query: Option<String>,
pub anchor: Option<String>,
}
impl Url {
/// Extract the representation of the host for this URL.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// let input = "https://user:pass@www.example.com:443/blog/article/search?docid=720&hl=en#dayone";
/// let expected = "example.com";
/// let parsed = Parser::new(None).parse(input).unwrap();
/// let result = parsed.host_str().unwrap();
/// assert_eq!(result, expected);
/// ```
pub fn host_str(&self) -> Option<String> {
match &self.top_level_domain {
Some(v) => Some(self.domain.as_ref().unwrap().to_owned() + "." + v),
None => Some(self.domain.as_ref().unwrap().to_owned()),
}
}
/// Extract the username from the url.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// let input = "https://user:pass@www.example.com:443/blog/article/search?docid=720&hl=en#dayone";
/// let expected = 443;
/// let parsed = Parser::new(None).parse(input).unwrap();
/// let result = parsed.port_or_known_default().unwrap();
/// assert_eq!(result, expected);
/// ```
pub fn port_or_known_default(&self) -> Option<u32> {
self.port
}
/// Extract the username from the url.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// let input = "https://user:pass@www.example.com:443/blog/article/search?docid=720&hl=en#dayone";
/// let expected = "user";
/// let parsed = Parser::new(None).parse(input).unwrap();
/// let result = parsed.username().unwrap();
/// assert_eq!(result, expected);
/// ```
pub fn username(&self) -> Option<String> {
match &self.user_pass {
(Some(user), Some(_)) | (Some(user), None) => Some(user.to_owned()),
(None, None) => None,
(None, Some(_)) => None,
}
}
/// Extract the password from the url.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// let input = "https://user:pass@www.example.com:443/blog/article/search?docid=720&hl=en#dayone";
/// let expected = "pass";
/// let parsed = Parser::new(None).parse(input).unwrap();
/// let result = parsed.password().unwrap();
/// assert_eq!(result, expected);
/// ```
pub fn password(&self) -> Option<String> {
match &self.user_pass {
(Some(_), Some(pass)) => Some(pass.to_owned()),
(None, None) => None,
(None, Some(_)) | (Some(_), None) => None,
}
}
/// Extract the path segments from the path.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// let input = "https://www.example.co.uk:443/blog/article/search?docid=720&hl=en#dayone";
/// let result = Parser::new(None).path(input).unwrap();
/// let expected = vec!["blog", "article", "search"];
/// assert_eq!(result, expected);
/// ```
pub fn path_segments(&self) -> Option<Vec<String>> {
self.path.clone()
}
/// Serialize an URL struct to a String.
///
/// # Example
/// ```rust
/// use url_parse::core::Parser;
/// use url_parse::core::global::Domain;
/// use url_parse::url::Url;
///
///let input = Url {
/// scheme: Some("https".to_string()),
/// user_pass: (Some("user".to_string()), Some("pass".to_string())),
/// subdomain: Some("www".to_string()),
/// domain: Some("example.co".to_string()),
/// top_level_domain: Some("uk".to_string()),
/// port: Some(443),
/// path: Some(vec![
/// "blog".to_string(),
/// "article".to_string(),
/// "search".to_string(),
/// ]),
/// query: Some("docid=720&hl=en".to_string()),
/// anchor: Some("dayone".to_string()),
///};
///let expected =
/// "https://user:pass@www.example.co.uk:443/blog/article/search?docid=720&hl=en#dayone";
///
///let result = input.serialize();
/// assert_eq!(result, expected);
/// ```
pub fn serialize(&self) -> String {
let mut result: String = "".to_string();
if self.scheme.is_some() {
result += self.scheme.as_ref().unwrap();
result += "://";
}
let (user, pass) = &self.user_pass;
if user.is_some() {
result += user.as_ref().unwrap();
}
if pass.is_some() {
result += ":";
result += pass.as_ref().unwrap();
result += "@";
}
if self.subdomain.is_some() {
result += self.subdomain.as_ref().unwrap();
result += ".";
}
if self.domain.is_some() {
result += self.domain.as_ref().unwrap();
result += ".";
}
if self.top_level_domain.is_some() {
result += self.top_level_domain.as_ref().unwrap();
}
if self.port.is_some() {
result += ":";
result += &self.port.unwrap().to_string();
}
if self.path.is_some() {
for segment in self.path_segments().unwrap().iter() {
result += "/";
result += segment;
}
}
if self.query.is_some() {
result += "?";
result += self.query.as_ref().unwrap();
}
if self.anchor.is_some() {
result += "#";
result += self.anchor.as_ref().unwrap();
}
result
}
/// Create a new empty instance with all fields set to none.
pub fn empty() -> Self {
Self {
scheme: None,
user_pass: (None, None),
subdomain: None,
domain: None,
top_level_domain: None,
port: None,
path: None,
query: None,
anchor: None,
}
}
}
/// Compare two objects of this type.
impl PartialEq for Url {
fn eq(&self, other: &Self) -> bool {
self.scheme == other.scheme
&& self.user_pass == other.user_pass
&& self.subdomain == other.subdomain
&& self.domain == other.domain
&& self.top_level_domain == other.top_level_domain
&& self.port == other.port
&& self.path == other.path
&& self.query == other.query
&& self.anchor == other.anchor
}
}
/// Display the serialization of this URL.
impl std::fmt::Display for Url {
#[inline]
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
write!(fmt, "{:?}", self)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_empty_works_when_typical() {
let expected = Url {
scheme: None,
user_pass: (None, None),
subdomain: None,
domain: None,
top_level_domain: None,
port: None,
path: None,
query: None,
anchor: None,
};
let result = Url::empty();
assert_eq!(result, expected);
}
#[test]
fn test_extract_host_works_when_typical() {
let mut input = Url::empty();
input.subdomain = Some("abc".to_owned());
input.domain = Some("def".to_owned());
input.top_level_domain = Some("xyz".to_owned());
let result = input.host_str().unwrap();
assert_eq!(result, "def.xyz".to_owned());
}
#[test]
fn test_extract_host_works_when_no_top_level_domain() {
let mut input = Url::empty();
input.subdomain = Some("abc".to_owned());
input.domain = Some("def".to_owned());
input.top_level_domain = None;
let result = input.host_str().unwrap();
assert_eq!(result, "def".to_owned());
}
#[test]
fn test_port_or_known_default_when_typical() {
let mut input = Url::empty();
input.port = Some(1234);
let result = input.port_or_known_default().unwrap();
assert_eq!(result, 1234);
}
#[test]
fn test_username_works_when_typical() {
let mut input = Url::empty();
input.user_pass = (Some("user".to_string()), Some("pass".to_string()));
let result = input.username().unwrap();
assert_eq!(result, "user".to_owned());
}
#[test]
fn test_username_works_when_no_password() {
let mut input = Url::empty();
input.user_pass = (Some("user".to_string()), None);
let result = input.username().unwrap();
assert_eq!(result, "user".to_owned());
}
#[test]
fn test_username_is_none_when_no_credentials() {
let input = Url::empty();
let result = input.username();
assert!(result.is_none());
}
#[test]
fn test_username_is_none_when_no_username_but_impossible_password() {
let mut input = Url::empty();
input.user_pass = (None, Some("pass".to_string()));
let result = input.username();
assert!(result.is_none());
}
#[test]
fn test_password_works_when_typical() {
let mut input = Url::empty();
input.user_pass = (Some("user".to_string()), Some("pass".to_string()));
let result = input.password().unwrap();
assert_eq!(result, "pass".to_owned());
}
#[test]
fn test_password_none_when_no_credentials() {
let mut input = Url::empty();
input.user_pass = (None, None);
let result = input.password();
assert!(result.is_none());
}
#[test]
fn test_password_none_when_no_password() {
let mut input = Url::empty();
input.user_pass = (Some("user".to_string()), None);
let result = input.password();
assert!(result.is_none());
}
#[test]
fn test_print_url_when_typical() {
let input = Url::empty();
println!("{}", input);
}
#[test]
fn test_path_works_when_partial_url() {
let mut input = Url::empty();
let expected = vec![
"blog".to_string(),
"article".to_string(),
"search".to_string(),
];
input.path = Some(expected.clone());
let result = input.path_segments().unwrap();
assert_eq!(result, expected);
}
#[test]
fn test_serialize_to_string() {
let input = Url {
scheme: Some("https".to_string()),
user_pass: (Some("user".to_string()), Some("pass".to_string())),
subdomain: Some("www".to_string()),
domain: Some("example.co".to_string()),
top_level_domain: Some("uk".to_string()),
port: Some(443),
path: Some(vec![
"blog".to_string(),
"article".to_string(),
"search".to_string(),
]),
query: Some("docid=720&hl=en".to_string()),
anchor: Some("dayone".to_string()),
};
let expected =
"https://user:pass@www.example.co.uk:443/blog/article/search?docid=720&hl=en#dayone";
let result = input.serialize();
assert_eq!(result, expected);
}
#[test]
fn test_no_regression_when_serializing() {
use crate::core::Parser;
let url = Parser::new(None).parse("google.com").unwrap();
assert_eq!("google.com/", url.serialize())
}
}