]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/mod.rs
Add static file copying
[rbdr/page] / src / file_handler / mod.rs
index 53aaba9d3011e5d33149e5ce8834c06145c54237..64224ee4061e896b51358f0d36615d903695e65c 100644 (file)
@@ -58,7 +58,7 @@ impl FileHandler {
     pub fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File) {
         for strategy in self.strategies.iter() {
             if strategy.can_handle(&file.file_type) {
-                return strategy.handle(file);
+                return strategy.handle(source, destination, file);
             }
         }
     }
@@ -68,7 +68,7 @@ pub trait FileHandlerStrategy {
     fn is(&self, path: &PathBuf) -> bool;
     fn identify(&self) -> FileType;
     fn can_handle(&self, file_type: &FileType) -> bool;
-    fn handle(&self, file: &File);
+    fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File);
 }
 
 pub enum FileType {