X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/6352ebb0eb4cb83240c6d4998e0ef1375b041191..440adc8c924f451936c7f5f2fa2dcd97fffb5573:/src/archiver/gopher.rs diff --git a/src/archiver/gopher.rs b/src/archiver/gopher.rs index 820e4d1..454e8c4 100644 --- a/src/archiver/gopher.rs +++ b/src/archiver/gopher.rs @@ -1,19 +1,22 @@ +use crate::template::{find, parse, Context}; use std::fs::write; -use std::io::Result; -use std::path::PathBuf; -use crate::template::{find, parse, TemplateContext}; +use std::io::{Error, ErrorKind::Other, Result}; +use std::path::Path; const FILENAME: &str = "index.gph"; -pub fn archive(_: &PathBuf, template_directory: &PathBuf, target: &PathBuf, context: &TemplateContext) -> Result<()> { - match find(template_directory, FILENAME) { - Some(template) => { - let parsed_template = parse(&template); - let rendered_template = parsed_template.render(context); - let location = target.join(FILENAME); - write(location, rendered_template)?; - }, - None => {} +pub fn archive( + _: &Path, + template_directory: &Path, + target: &Path, + context: &Context, +) -> Result<()> { + if let Some(template) = find(template_directory, FILENAME) { + let parsed_template = parse(&template) + .ok_or_else(|| Error::new(Other, "Unable to parse Gopher Archive template"))?; + let rendered_template = parsed_template.render(context)?; + let location = target.join(FILENAME); + write(location, rendered_template)?; } Ok(()) }