use clap::{Parser, Subcommand}; use reqwest; use scraper; use std::{ collections::HashMap, fs::File, io::Write, path::{Path, PathBuf}, string::String, sync::LazyLock, }; use std::{thread, time::Duration}; // Setup the command line options #[derive(Parser)] #[command(about, long_about=None)] struct Cli { /// Working directory #[arg(short, long, default_value = "bible")] work: PathBuf, /// Bible Version #[arg(short, long, default_value = "ESV")] version: String, #[command(subcommand)] command: Option, } #[derive(Subcommand)] enum Commands { /// Fetch from the web, using work directory for cache Fetch { /// Delay #[arg(short, long, default_value = "10")] delay: u32, }, /// Extract information from cached files Extract { /// Count #[arg(short, long, default_value = "5")] count: u32, /// All #[arg(short, long, action=clap::ArgAction::SetTrue)] all: bool, }, /// Test something out Test {}, } static APP_USER_AGENT: &str = "Mozilla/5.0 (X11; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0"; static BASE_URL: &str = "https://www.bible.com"; static VERSION_URLS: LazyLock> = 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"), // https://www.bible.com/bible/111/GEN.1.NIV"), ("YLT98", "https://www.bible.com/bible/821/GEN.1.YLT98"), ]) }); static BOOKS: LazyLock> = LazyLock::new(|| { Vec::from([ "GEN", "EXO", "LEV", "NUM", "DEU", "JOS", "JDG", "RUT", "1SA", "2SA", "1KI", "2KI", "1CH", "2CH", "EZR", "NEH", "EST", "JOB", "PSA", "PRO", "ECC", "SNG", "ISA", "JER", "LAM", "EZK", "DAN", "HOS", "JOL", "AMO", "OBA", "JON", "MIC", "NAM", "HAB", "ZEP", "HAG", "ZEC", "MAL", "MAT", "MRK", "LUK", "JHN", "ACT", "ROM", "1CO", "2CO", "GAL", "EPH", "PHP", "COL", "1TH", "2TH", "1TI", "2TI", "TIT", "PHM", "HEB", "JAS", "1PE", "2PE", "1JN", "2JN", "3JN", "JUD", "REV", ]) }); static BOOK_MAP: LazyLock> = LazyLock::new(|| { HashMap::from_iter(BOOKS.iter().enumerate().map(|x| (*x.1, x.0 + 1)))}); // find_files in base_dir that end with extension bible version. fn find_files(base_dir: &str, version: &str) -> Vec { let paths = std::fs::read_dir(base_dir).unwrap(); let mut result = Vec::::new(); for path in paths { if let Ok(dir) = path { 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()); } } } let sorter_helper = |x:&String| -> (usize,i32) { let v : Vec<&str> = x.split(".").collect(); let mut b:usize = 0; if BOOK_MAP.contains_key(v[0]) { b = BOOK_MAP[v[0]]; } let c:i32 = v[1].parse().unwrap_or(0); (b,c) }; // 1. Make it work. 2. Make it fast. // It would be nice to sort these (by book and chapter), so they are in order. // Should I just return file_names instead of path? result.sort_by(|a, b| { let a_v = sorter_helper(a); let b_v = sorter_helper(b); a_v.cmp(&b_v) }); 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 // https://www.bible.com/bible/2692/GEN.1.NASB2020 // https://www.bible.com/bible/111/GEN.1.NIV // https://www.bible.com/bible/821/GEN.1.YLT98 // Catholic // https://www.bible.com/bible/42/GEN.1.CPDV // Audio // https://www.bible.com/audio-bible/59/GEN.1.ESV //