aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 9b823b0e9f822bc346a7866e5366bcba89db8027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
mod gemini_parser;
mod file_finder;
mod file_handler;

use std::io::Result;
use std::env::current_dir;
use std::fs::{create_dir_all, remove_dir_all};

use crate::file_finder::find_files;
use crate::file_handler::FileHandler;

fn main() -> Result<()> {
    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
    match remove_dir_all(&destination) {
        _ => {}
    };
    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(())
}