Browse Source

Fixed relative absolute url call.

Steve Thielemann 1 month ago
parent
commit
15fee3b1fc
2 changed files with 11 additions and 10 deletions
  1. 3 3
      src/fetch.rs
  2. 8 7
      src/main.rs

+ 3 - 3
src/fetch.rs

@@ -4,9 +4,9 @@ use url::Url;
 use super::parse;
 
 /// Convert relate to absolute
-pub fn relative_to_absolute(url: &str, href: &str) -> Result<String> {
-    let base_url = Url::parse(url)?;
-    let new_url = base_url.join(href)?;
+pub fn relative_to_absolute(base_url: &str, relative_href: &str) -> Result<String> {
+    let base_url = Url::parse(base_url).context(format!("Url::parse({})", base_url))?;
+    let new_url = base_url.join(relative_href).context(format!("join({})", relative_href))?;
     Ok(new_url.to_string())
 }
 

+ 8 - 7
src/main.rs

@@ -1,4 +1,4 @@
-use anyhow::Result; // , Context};
+use anyhow::{Result, Context};
 use clap::{Parser, Subcommand};
 use config::save_basic_json;
 use reqwest;
@@ -243,7 +243,7 @@ fn main() -> Result<()> {
                 .build()?;
             // .unwrap();
             let mut url = config.versions[cli.version.as_str()].to_string();
-            println!("Fetch! [{}] with delay {} secs.", cli.version, delay);
+            println!("Fetch! [{}] with delay {} secs {}", cli.version, delay, url);
             let mut more = true;
             let mut cache_hit_once = true;
 
@@ -255,18 +255,19 @@ fn main() -> Result<()> {
                         .expect("Work should be valid."),
                     &client,
                     url.as_str(),
-                )?;
+                )
+                .context(format!("Failed fetch {}", url))?;
 
                 let next_chapter = parse::find_next_chapter(&result.html);
 
                 if let Ok(next_url) = next_chapter {
-                    if let Ok(abs_url) = fetch::relative_to_absolute(&next_url, &url) {
+                    // println!("next_url: {}", next_url);
+                    let abs_url = fetch::relative_to_absolute(&url, &next_url)?;
+                        // println!("now: {}", abs_url);
                         url = abs_url;
-                    } else {
-                        more = false;
-                    }
                 } else {
                     // We didn't find the Next Chapter link, so stop.
+                    println!("Did not find Next Chapter link. {}", next_chapter.unwrap_err());
                     more = false;
                 }