X-Git-Url: https://git.r.bdr.sh/rbdr/page/blobdiff_plain/4fd89b808cabc8afb0d75b9700be1da96989c4b7..dd0a540c2002f479ac56a7e0169e86d0f6f14d85:/src/file_handler/file_strategies/file.rs diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs index b1de596..2346128 100644 --- a/src/file_handler/file_strategies/file.rs +++ b/src/file_handler/file_strategies/file.rs @@ -1,9 +1,20 @@ 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() @@ -20,7 +31,11 @@ impl FileHandlerStrategy for Strategy { } } - fn handle(&self, file: &File) { - println!("Should copy {}", file.path.display()) + 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); } }