|
@@ -63,31 +63,12 @@ enum Commands {
|
|
|
Test {},
|
|
|
}
|
|
|
|
|
|
+/// Configuration filename
|
|
|
const CONFIG_FILE : &str = "app.config";
|
|
|
|
|
|
-/*
|
|
|
-static APP_USER_AGENT: &str =
|
|
|
- "Mozilla/5.0 (X11; Linux x86_64; rv:135.0) Gecko/20100101 Firefox/135.0";
|
|
|
-*/
|
|
|
-
|
|
|
-// Not needed, I process relative URLs correctly now.
|
|
|
-// static BASE_URL: &str = "https://www.bible.com";
|
|
|
-
|
|
|
+/// Verse of the Day URL
|
|
|
static VOD_URL: &str = "https://www.bible.com/verse-of-the-day";
|
|
|
|
|
|
-/*
|
|
|
-static VERSION_URLS: LazyLock<HashMap<&str, &str>> = LazyLock::new(|| {
|
|
|
- HashMap::from([
|
|
|
- ("ESV", "https://www.bible.com/bible/59/GEN.1.ESV"),
|
|
|
- ("KJV", "https://www.bible.com/bible/1/GEN.1.KJV"),
|
|
|
- ("NIV", "https://www.bible.com/bible/111/GEN.INTRO1.NIV"),
|
|
|
- ("NKJV", "https://www.bible.com/bible/114/GEN.1.NKJV"),
|
|
|
- // https://www.bible.com/bible/111/GEN.1.NIV"),
|
|
|
- ("YLT98", "https://www.bible.com/bible/821/GEN.1.YLT98"),
|
|
|
- ])
|
|
|
-});
|
|
|
-*/
|
|
|
-
|
|
|
static BOOKS: LazyLock<Vec<&str>> = LazyLock::new(|| {
|
|
|
Vec::from([
|
|
|
"GEN", "EXO", "LEV", "NUM", "DEU", "JOS", "JDG", "RUT", "1SA", "2SA", "1KI", "2KI", "1CH",
|
|
@@ -112,11 +93,12 @@ fn find_files(base_dir: &str, version: &str) -> Vec<String> {
|
|
|
let filename = dir.file_name().to_string_lossy().to_string();
|
|
|
if filename.ends_with(version) {
|
|
|
result.push(filename);
|
|
|
- // result.push(dir.path().to_string_lossy().to_string());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // Sort filenames by the order of the books in BOOKS.
|
|
|
+
|
|
|
let sorter_helper = |x: &String| -> (usize, i32) {
|
|
|
let v: Vec<&str> = x.split(".").collect();
|
|
|
let mut b: usize = 0;
|
|
@@ -139,10 +121,6 @@ fn find_files(base_dir: &str, version: &str) -> Vec<String> {
|
|
|
result
|
|
|
}
|
|
|
|
|
|
-// Start here
|
|
|
-// static URL: &str = "https://www.bible.com/bible/59/PSA.95.ESV";
|
|
|
-// "https://www.bible.com/bible/59/GEN.1.ESV";
|
|
|
-
|
|
|
// And maybe:
|
|
|
// https://www.bible.com/bible/2692/GEN.1.NASB2020
|
|
|
// https://www.bible.com/bible/1/GEN.1.KJV
|
|
@@ -181,25 +159,11 @@ fn main() -> Result<()> {
|
|
|
config.user_agent = new_agent;
|
|
|
println!("User agent now {}", &config.user_agent);
|
|
|
config::write_config(CONFIG_FILE, &config)?;
|
|
|
- return Ok(());
|
|
|
} else {
|
|
|
println!("User agent OK.");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- if !VERSION_URLS.contains_key(cli.version.as_str()) {
|
|
|
- println!("Sorry, I don't know about Bible Version [{}].", cli.version);
|
|
|
- println!("I do know about the following:");
|
|
|
-
|
|
|
- // Keys sorted in order.
|
|
|
- for (name, _) in VERSION_URLS.iter() {
|
|
|
- println!(" {}", name);
|
|
|
- }
|
|
|
- return Ok(());
|
|
|
- }
|
|
|
- */
|
|
|
-
|
|
|
match &cli.command {
|
|
|
Some(Commands::Fetch { delay }) => {
|
|
|
let client = reqwest::blocking::Client::builder()
|
|
@@ -224,18 +188,10 @@ fn main() -> Result<()> {
|
|
|
let next_chapter = parse::find_next_chapter(&result.html);
|
|
|
|
|
|
if let Ok(next_url) = next_chapter {
|
|
|
- // Ok! We have something
|
|
|
- // more = true;
|
|
|
-
|
|
|
- /*
|
|
|
- if next_url.starts_with("/") {
|
|
|
- url = String::from(BASE_URL) + &next_url;
|
|
|
- } else {
|
|
|
- url = next_url.to_string();
|
|
|
- }
|
|
|
- */
|
|
|
if let Ok(abs_url) = fetch::relative_to_absolute(&next_url, &url) {
|
|
|
url = abs_url;
|
|
|
+ } else {
|
|
|
+ more = false;
|
|
|
}
|
|
|
} else {
|
|
|
// We didn't find the Next Chapter link, so stop.
|
|
@@ -390,6 +346,7 @@ fn main() -> Result<()> {
|
|
|
println!("------");
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
Some(Commands::Test {}) => {
|
|
|
println!("Testing...");
|
|
|
let client = reqwest::blocking::Client::builder()
|