aboutsummaryrefslogtreecommitdiff
path: root/src/file_handler/file_strategies/file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_handler/file_strategies/file.rs')
-rw-r--r--src/file_handler/file_strategies/file.rs22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs
index 8eafdaa..2346128 100644
--- a/src/file_handler/file_strategies/file.rs
+++ b/src/file_handler/file_strategies/file.rs
@@ -5,6 +5,16 @@ 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()
@@ -21,11 +31,11 @@ impl FileHandlerStrategy for Strategy {
}
}
- fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File, _l: &String) {
- 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();
+ 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);
}
}