aboutsummaryrefslogtreecommitdiff
path: root/src/file_handler/file_strategies/file.rs
blob: 2346128494c796e79efe3501a1bda02e3758f832 (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
38
39
40
41
pub struct Strategy {}

use std::path::PathBuf;
use std::fs::{copy, create_dir_all};

use crate::file_handler::{File, FileType, FileHandlerStrategy};

impl Strategy {
    fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File) {
        let relative_path = file.path.strip_prefix(&source).unwrap();
        let complete_destination = destination.join(relative_path);
        let destination_parent = complete_destination.parent().unwrap();
        create_dir_all(destination_parent).unwrap();
        copy(&file.path, &complete_destination).unwrap();
    }
}

impl FileHandlerStrategy for Strategy {
    fn is(&self, path: &PathBuf) -> bool {
        !path.is_dir()
    }

    fn identify(&self) -> FileType {
        FileType::File
    }

    fn can_handle(&self, file_type: &FileType) -> bool {
        match file_type {
            FileType::File => true,
            _ => false,
        }
    }

    fn handle_html(&self, source: &PathBuf, destination: &PathBuf, file: &File, _l: &String) {
        return self.handle(source, destination, file);
    }

    fn handle_gemini(&self, source: &PathBuf, destination: &PathBuf, file: &File) {
        return self.handle(source, destination, file);
    }
}