]>
Commit | Line | Data |
---|---|---|
8d4fac52 | 1 | mod gemini_parser; |
260e8ec6 | 2 | mod html_renderer; |
1e2d00b6 RBR |
3 | mod file_finder; |
4 | mod file_handler; | |
5 | ||
4fd89b80 | 6 | use std::io::Result; |
48ea9080 | 7 | use std::process::exit; |
1e2d00b6 | 8 | use std::env::current_dir; |
ea529736 | 9 | use std::fs::{create_dir_all, remove_dir_all}; |
8d4fac52 | 10 | |
1e2d00b6 | 11 | use crate::file_finder::find_files; |
4fd89b80 | 12 | use crate::file_handler::FileHandler; |
8d4fac52 | 13 | |
4fd89b80 | 14 | fn main() -> Result<()> { |
4fd89b80 RBR |
15 | let source = current_dir()?; |
16 | let source_name = source.file_name().unwrap().to_string_lossy(); | |
17 | let parent = source.parent().unwrap(); | |
dd0a540c RBR |
18 | let gemini_destination_name = format!("{}_gemini", source_name); |
19 | let gemini_destination = parent.join(gemini_destination_name); | |
20 | let html_destination_name = format!("{}_html", source_name); | |
21 | let html_destination = parent.join(html_destination_name); | |
4fd89b80 RBR |
22 | |
23 | // Step 1. Identify the files | |
24 | let files = find_files(&source); | |
25 | ||
1c5797fa | 26 | // Step 2. Load the layout |
4fd89b80 | 27 | let mut file_handler = FileHandler::default(); |
48ea9080 RBR |
28 | match file_handler.get_layout_or_panic(&files) { |
29 | Ok(_) => {}, | |
30 | Err(error) => { | |
31 | eprintln!("{}", error); | |
32 | exit(1); | |
33 | } | |
34 | } | |
4fd89b80 | 35 | |
1c5797fa RBR |
36 | // Step 3. Prepare the target priority |
37 | match remove_dir_all(&html_destination) { | |
38 | _ => {} | |
39 | }; | |
40 | match remove_dir_all(&gemini_destination) { | |
41 | _ => {} | |
42 | }; | |
43 | ||
44 | create_dir_all(&html_destination) | |
45 | .expect("Could not create HTML directory."); | |
46 | create_dir_all(&gemini_destination) | |
47 | .expect("Could not create Gemini directory."); | |
48 | ||
4fd89b80 | 49 | // Step 4. Process all files |
dd0a540c | 50 | file_handler.handle_all(&source, &html_destination, &gemini_destination, &files); |
4fd89b80 | 51 | Ok(()) |
8d4fac52 | 52 | } |