]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/file.rs
Add static file copying
[rbdr/page] / src / file_handler / file_strategies / file.rs
index b1de596f110e70060b89517f09a8969714b1d341..42b87d5b692cbb382b8571be9c9f0e35eaaea591 100644 (file)
@@ -1,6 +1,7 @@
 pub struct Strategy {}
 
 use std::path::PathBuf;
+use std::fs::{copy, create_dir_all};
 
 use crate::file_handler::{File, FileType, FileHandlerStrategy};
 
@@ -20,7 +21,11 @@ impl FileHandlerStrategy for Strategy {
         }
     }
 
-    fn handle(&self, file: &File) {
-        println!("Should copy {}", file.path.display())
+    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();
     }
 }