diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-16 13:11:39 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-16 13:11:45 +0200 |
| commit | 4fd89b808cabc8afb0d75b9700be1da96989c4b7 (patch) | |
| tree | 4083f1c1c58b827a85a10b0b412e291cfc650133 /src/main.rs | |
| parent | 5643a0416ded5e5135a968cb57a279568b471248 (diff) | |
Add logic to read and assign files / layout
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 4b8a79f..e04da8a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,16 +2,38 @@ mod gemini_parser; mod file_finder; mod file_handler; +use std::io::Result; use std::env::current_dir; +use std::fs::create_dir_all; use crate::gemini_parser::parse; use crate::file_finder::find_files; +use crate::file_handler::FileHandler; -fn main() { +fn main() -> Result<()> { 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); - let files = find_files(current_dir().unwrap()); + let source = current_dir()?; + let source_name = source.file_name().unwrap().to_string_lossy(); + let parent = source.parent().unwrap(); + let destination_name = format!("{}_html", source_name); + let destination = parent.join(destination_name); + + // Step 1. Identify the files + let files = find_files(&source); + + // Step 2. Prepare the target priority + create_dir_all(&destination)?; + println!("Found {} files", files.len()); + + // Step 3. Load the layout + let mut file_handler = FileHandler::default(); + file_handler.get_layout_or_panic(&files); + + // Step 4. Process all files + file_handler.handle_all(&source, &destination, &files); + Ok(()) } |