diff options
author | Cara Salter <cara@devcara.com> | 2022-04-23 21:31:34 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-04-23 21:31:34 -0400 |
commit | c06184b2ff121ad829db9cc65e92af56f66d442e (patch) | |
tree | 8345f4b4cb52e6ba3a861a3f1ec9e607443ab5b0 /src/van.rs | |
parent | 013a7488c8d2d11daf2cb6184f7fe2d25f6da8a4 (diff) | |
download | solarlib-c06184b2ff121ad829db9cc65e92af56f66d442e.tar.gz solarlib-c06184b2ff121ad829db9cc65e92af56f66d442e.zip |
teach Houses how to download Vans
Diffstat (limited to 'src/van.rs')
-rw-r--r-- | src/van.rs | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/src/van.rs b/src/van.rs new file mode 100644 index 0000000..7024f73 --- /dev/null +++ b/src/van.rs @@ -0,0 +1,80 @@ +/*! A Van is a moving van, or an installation ISO */ + +use tokio::process::Command; +use std::process::ExitStatus; +use std::os::unix::process::ExitStatusExt; +use std::str::FromStr; + +use crate::errors::Error; + +/// Describes a hash of a file +pub struct Sha256(pub String); + +impl FromStr for Sha256 { + type Err = Error; + fn from_str(s: &str) -> Result<Self, Self::Err> { + let sum = s.clone(); + + Ok(Sha256(sum.to_string())) + } +} + +impl ToString for Sha256 { + fn to_string(&self) -> String { + self.0.clone() + } +} + +/// Describes a moving Van, or a way to install a distribution +pub struct Van { + /// The common name of the distribution (e.g "Arch Linux") + pub name: String, + /// The SHA-256 hash of the downloaded file + pub shasum: Sha256, + /// Where the ISO can be downloaded from + pub download_url: String, + /// The commonly accepted version (e.g "rolling", "21.11", "unstable") + pub version: String, +} + +impl Van { + pub fn new(name: String, + shasum: String, + download_url: String, + version: String + ) -> Self { + Self { + name, + shasum: Sha256(shasum), + download_url, + version + } + } + + pub async fn download(&self, target: String) -> Result<(), Error> { + let mut output = Command::new("ssh") + .args([ + "-oStrictHostKeyChecking=accept-new", + &target.clone(), + "wget", + "-O", + &self.download_url.clone(), + &format!("/var/lib/libvirt/images/{}", self.make_pretty_name().clone()) + ]) + .output() + .await?; + + if output.status != ExitStatus::from_raw(0) { + Err(Error::RemoteCommand(String::from_utf8(output.stdout).unwrap())) + } else { + Ok(()) + } + } + + pub fn make_pretty_name(&self) -> String { + let safe_name = self.name.clone().to_lowercase().replace(" ", "-"); + let file_name = format!("{}-{}-{}.van", safe_name, self.version.clone(), self.shasum.0.clone()); + + file_name + } +} |