]> git.r.bdr.sh - rbdr/page/blobdiff - src/main.rs
Format and lint the code
[rbdr/page] / src / main.rs
index e04da8abb815f787d599ef457fe23c70b7a0d6d2..cedd55761a9ced615637ca98326c693e10be9491 100644 (file)
@@ -1,39 +1,46 @@
-mod gemini_parser;
 mod file_finder;
 mod file_handler;
+mod gemini_parser;
+mod html_renderer;
 
-use std::io::Result;
 use std::env::current_dir;
-use std::fs::create_dir_all;
+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() -> 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 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);
+    let gemini_destination_name = format!("{}_gemini", source_name);
+    let gemini_destination = parent.join(gemini_destination_name);
+    let html_destination_name = format!("{}_html", source_name);
+    let html_destination = parent.join(html_destination_name);
 
     // Step 1. Identify the files
     let files = find_files(&source);
 
-    // Step 2. Prepare the target priority
-    create_dir_all(&destination)?;
+    // 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);
+        }
+    }
 
-    println!("Found {} files", files.len());
+    // Step 3. Prepare the target priority
+    let _ = remove_dir_all(&html_destination);
+    let _ = remove_dir_all(&gemini_destination);
 
-    // Step 3. Load the layout
-    let mut file_handler = FileHandler::default();
-    file_handler.get_layout_or_panic(&files);
+    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, &destination, &files);
+    file_handler.handle_all(&source, &html_destination, &gemini_destination, &files);
     Ok(())
 }