]>
Commit | Line | Data |
---|---|---|
6352ebb0 | 1 | use std::fs::write; |
50f53dc4 | 2 | use std::io::{Error, ErrorKind::Other, Result}; |
6352ebb0 RBR |
3 | use std::path::PathBuf; |
4 | use crate::template::{find, parse, TemplateContext}; | |
5 | ||
6 | const FILENAME: &str = "index.gmi"; | |
7 | ||
8 | pub fn archive(_: &PathBuf, template_directory: &PathBuf, target: &PathBuf, context: &TemplateContext) -> Result<()> { | |
9 | match find(template_directory, FILENAME) { | |
10 | Some(template) => { | |
50f53dc4 RBR |
11 | let parsed_template = parse(&template) |
12 | .ok_or_else(|| Error::new(Other, "Unable to parse Gemini Archive template"))?; | |
13 | let rendered_template = parsed_template.render(context)?; | |
6352ebb0 RBR |
14 | let location = target.join(FILENAME); |
15 | write(location, rendered_template)?; | |
16 | }, | |
17 | None => {} | |
18 | } | |
19 | Ok(()) | |
20 | } |