X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/d620665f6b2e1ae5db4c98a09e35bd63133ae87f..50f53dc480fda8b3daab7a34454c2dd9f3f5f991:/src/command/publish.rs diff --git a/src/command/publish.rs b/src/command/publish.rs index d8ca949..34ca0d2 100644 --- a/src/command/publish.rs +++ b/src/command/publish.rs @@ -1,4 +1,8 @@ -use std::io::Result; +use std::io::{Error, ErrorKind::Other, Result}; +use crate::configuration::Configuration; +use std::process::{Command, Stdio}; + +const COMMAND: &str = "rsync"; pub struct Publish; @@ -13,8 +17,27 @@ impl super::Command for Publish { vec![] } - fn execute(&self, input: Option<&String>) -> Result<()> { - println!("Publish: {:?}!", input); + fn execute(&self, input: Option<&String>, configuration: &Configuration, _: &String) -> Result<()> { + + let input = input + .ok_or_else(|| Error::new(Other, "You must provide a location to publish the blog"))?; + + Command::new(COMMAND) + .arg("--version") + .stdout(Stdio::null()) + .stderr(Stdio::null()) + .status() + .map_err(|_| Error::new(Other, "Publishing requires rsync"))?; + + + Command::new(COMMAND) + .arg("-r") + .arg(format!("{}/", &configuration.blog_output_directory.display())) + .arg(input.as_str()) + .stdout(Stdio::null()) + .stderr(Stdio::null()) + .status() + .map_err(|_| Error::new(Other, "Rsync failed to publish."))?; return Ok(()) } @@ -27,6 +50,6 @@ impl super::Command for Publish { } fn help(&self) -> &'static str { - "\tPublishes the blog to a remote host." + "\t\tPublishes the blog to a remote host" } }