X-Git-Url: https://git.r.bdr.sh/rbdr/page/blobdiff_plain/1e2d00b62ecce95f71d4bfd60a043c8e86631eee..3f1aa0b6eb90bd7912a63c6b72c2571486fbc21f:/src/main.rs?ds=sidebyside diff --git a/src/main.rs b/src/main.rs index 4b8a79f..0414288 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,17 +1,44 @@ -mod gemini_parser; mod file_finder; mod file_handler; use std::env::current_dir; +use std::fs::{create_dir_all, remove_dir_all}; +use std::io::Result; +use std::process::exit; -use crate::gemini_parser::parse; use crate::file_finder::find_files; +use crate::file_handler::FileHandler; -fn main() { - let gemini_source = "# Test\n## 2nd H\na line\n another line\n```\npreformat\n=> preformat\n```\n=> http://lol.com\n=> http://lol.com lol\n* lol\nbla\n* lol\n* lmao\n> blabla\n> blabla"; - let html = parse(gemini_source); - println!("{}", html); +fn main() -> Result<()> { + let source = current_dir()?; + let source_name = source.file_name().unwrap().to_string_lossy(); + let parent = source.parent().unwrap(); + let gemini_destination_name = format!("{source_name}_gemini"); + let gemini_destination = parent.join(gemini_destination_name); + let html_destination_name = format!("{source_name}_html"); + let html_destination = parent.join(html_destination_name); - let files = find_files(current_dir().unwrap()); - println!("Found {} files", files.len()); + // Step 1. Identify the files + let files = find_files(&source); + + // Step 2. Load the layout + let mut file_handler = FileHandler::default(); + match file_handler.get_layout_or_panic(&files) { + Ok(()) => {} + Err(error) => { + eprintln!("{error}"); + exit(1); + } + } + + // Step 3. Prepare the target priority + let _ = remove_dir_all(&html_destination); + let _ = remove_dir_all(&gemini_destination); + + create_dir_all(&html_destination).expect("Could not create HTML directory."); + create_dir_all(&gemini_destination).expect("Could not create Gemini directory."); + + // Step 4. Process all files + file_handler.handle_all(&source, &html_destination, &gemini_destination, &files); + Ok(()) }