]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/layout.rs
Add gemini parsing
[rbdr/page] / src / file_handler / file_strategies / layout.rs
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..793b4609da6726db1ae45513a5d5c2ee285cccf0 100644 (file)
@@ -0,0 +1,26 @@
+pub struct Strategy {}
+
+use std::path::PathBuf;
+
+use crate::file_handler::{File, FileType, FileHandlerStrategy};
+
+impl FileHandlerStrategy for Strategy {
+    fn is(&self, path: &PathBuf) -> bool {
+        return !path.is_dir() && path.ends_with("_layout.html");
+    }
+
+    fn identify(&self) -> FileType {
+        FileType::Layout
+    }
+
+    fn can_handle(&self, file_type: &FileType) -> bool {
+        match file_type {
+            FileType::Layout => true,
+            _ => false,
+        }
+    }
+
+    // We don't implement handling for layout, as we assume there's only one
+    // and it got handled before.
+    fn handle(&self, _s: &PathBuf, _d: &PathBuf, _f: &File, _l: &String) {}
+}