Skip to content

Commit

Permalink
chore(abs): fix abs handling domain
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Dec 14, 2024
1 parent 6e14f1c commit 5a0f96a
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 46 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion spider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider"
version = "2.21.27"
version = "2.21.28"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
47 changes: 13 additions & 34 deletions spider/src/utils/abs.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::page::IGNORE_ASSETS;
use phf::phf_set;
use url::Url;

Expand Down Expand Up @@ -97,26 +96,6 @@ pub(crate) fn convert_abs_path(base: &Url, href: &str) -> Url {
}
}
}

if let Some(position) = href.rfind('.') {
let hlen = href.len();
let has_asset = hlen - position;

if has_asset >= 3 {
let next_position = position + 1;

if IGNORE_ASSETS.contains::<case_insensitive_string::CaseInsensitiveString>(
&href[next_position..].into(),
) {
let full_url = format!("{}://{}", base.scheme(), href);

if let Ok(mut next_url) = Url::parse(&full_url) {
next_url.set_fragment(None);
return next_url;
}
}
}
}
}

// we can swap the domains if they do not match incase of crawler redirect anti-bot
Expand All @@ -131,64 +110,64 @@ pub(crate) fn convert_abs_path(base: &Url, href: &str) -> Url {

#[cfg(test)]
mod tests {
use crate::utils::parse_absolute_url;
use super::convert_abs_path;
use url::Url;

#[test]
fn test_basic_join() {
let base = Url::parse("https://example.com/path/").unwrap();
let base = parse_absolute_url("https://example.com/path/").unwrap();
let href = "/subpage";
let result = convert_abs_path(&base, href);
assert_eq!(result.as_str(), "https://example.com/subpage");
}

#[test]
fn test_absolute_href() {
let base = Url::parse("https://example.com/path/").unwrap();
let base = parse_absolute_url("https://example.com/path/").unwrap();
let href = "https://example.org/anotherpath";
let result = convert_abs_path(&base, href);
assert_eq!(result.as_str(), href);
}

#[test]
fn test_slash_join() {
let base = Url::parse("https://example.com/path/").unwrap();
let base = parse_absolute_url("https://example.com/path/").unwrap();
let href = "/absolute";
let result = convert_abs_path(&base, href);
assert_eq!(result.as_str(), "https://example.com/absolute");
}

#[test]
fn test_empty_href() {
let base = Url::parse("https://example.com/path/").unwrap();
let base = parse_absolute_url("https://example.com/path/").unwrap();
let href = "";
let result = convert_abs_path(&base, href);
assert_eq!(result.as_str(), "https://example.com/path/");
assert_eq!(result.as_str(), "https://example.com/");
}

#[test]
fn test_double_dot_href() {
let base = Url::parse("https://example.com/path/").unwrap();
let base = parse_absolute_url("https://example.com/path/").unwrap();
let href = "..";
let result = convert_abs_path(&base, href);
assert_eq!(result.as_str(), "https://example.com/");
}

#[test]
fn test_domain_like_link() {
let base = Url::parse("https://www.example.com/path/").unwrap();
let base = parse_absolute_url("https://www.example.com/path/").unwrap();
let href = "example.org/another-path";
let result = convert_abs_path(&base, href);
assert_eq!(
result.as_str(),
"https://example.org/another-path",
"https://www.example.com/example.org/another-path",
"Should treat as a domain"
);
}

#[test]
fn test_relative_path_with_slash() {
let base = Url::parse("https://www.example.com/path/").unwrap();
let base = parse_absolute_url("https://www.example.com/path/").unwrap();
let href = "/another-path";
let result = convert_abs_path(&base, href);
assert_eq!(
Expand All @@ -200,19 +179,19 @@ mod tests {

#[test]
fn test_no_protocol_with_slash() {
let base = Url::parse("https://www.example.com/path/").unwrap();
let base = parse_absolute_url("https://www.example.com/path/").unwrap();
let href = "example.com/other-path";
let result = convert_abs_path(&base, href);
assert_eq!(
result.as_str(),
"https://example.com/other-path",
"https://www.example.com/example.com/other-path",
"Should treat domain-like href as full URL"
);
}

#[test]
fn test_no_invalid_protocols() {
let base = Url::parse("https://www.example.com").unwrap();
let base = parse_absolute_url("https://www.example.com").unwrap();
let href = "mailto:[email protected]";
let result = convert_abs_path(&base, href);

Expand Down
2 changes: 1 addition & 1 deletion spider_chrome/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_chrome"
version = "2.21.27"
version = "2.21.28"
rust-version = "1.70"
authors = [
"j-mendez <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion spider_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_cli"
version = "2.21.27"
version = "2.21.28"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_transformations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_transformations"
version = "2.21.27"
version = "2.21.28"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_utils"
version = "2.21.27"
version = "2.21.28"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_worker"
version = "2.21.27"
version = "2.21.28"
authors = [
"j-mendez <[email protected]>"
]
Expand Down

0 comments on commit 5a0f96a

Please sign in to comment.