mk 0.7.0

Yet another simple task runner 🦀
Documentation
use std::fs::{
  self,
  File,
};
use std::io::{
  self,
  IsTerminal,
  Read as _,
  Write as _,
};
use std::path::Path;

use clap::Args;
use mk_lib::file::ToUtf8 as _;
use pgp::composed::{
  ArmorOptions,
  Deserializable,
  SignedSecretKey,
};
use pgp::crypto::sym::SymmetricKeyAlgorithm;
use rand::thread_rng;

use crate::secrets::context::Context;
use crate::secrets::vault::{
  verify_key,
  verify_vault,
};

#[derive(Debug, Args)]
pub struct StoreSecret {
  #[arg(help = "The secret identifier")]
  path: String,

  #[arg(help = "The secret value")]
  value: Option<String>,

  #[arg(short, long, help = "The path to the secret vault")]
  vault_location: Option<String>,

  #[arg(long, help = "The key location")]
  keys_location: Option<String>,

  #[arg(short, long, help = "The key name")]
  key_name: Option<String>,

  /// If the secret already exists, it will be overwritten
  #[arg(short, long, help = "Force overwrite the secret")]
  force: bool,
}

impl StoreSecret {
  pub fn execute(&self, context: &Context) -> anyhow::Result<()> {
    let path: &str = &self.path.clone();
    let value: String = match &self.value {
      Some(value) => value.clone(),
      None => {
        let stdin = io::stdin();
        if stdin.is_terminal() {
          return Err(anyhow::anyhow!("No value provided"));
        }

        let mut buffer = String::new();
        let mut handle = stdin.lock();
        match handle.read_to_string(&mut buffer) {
          Ok(0) => return Err(anyhow::anyhow!("No value provided")),
          Ok(_) => buffer.trim().to_string(),
          Err(e) => return Err(anyhow::anyhow!("Failed to read from stdin: {}", e)),
        }
      },
    };

    let vault_location: &str = &self
      .vault_location
      .clone()
      .unwrap_or_else(|| context.vault_location());
    let keys_location: &str = &self
      .keys_location
      .clone()
      .unwrap_or_else(|| context.keys_location());
    let key_name: &str = &self.key_name.clone().unwrap_or_else(|| context.key_name());

    assert!(!path.is_empty(), "Path must be provided");
    assert!(!value.is_empty(), "Value must be provided");
    assert!(!vault_location.is_empty(), "Store location must be provided");
    assert!(!keys_location.is_empty(), "Keys location must be provided");
    assert!(!key_name.is_empty(), "Key name must be provided");

    verify_vault(vault_location)?;
    verify_key(keys_location, key_name)?;

    let secret_path = Path::new(vault_location).join(path);
    let data_path = secret_path.clone().join("data.asc");
    if secret_path.exists()
      && secret_path.is_dir()
      && data_path.exists()
      && data_path.is_file()
      && !self.force
    {
      println!(
        "Secret already exists at path {path} in {}",
        secret_path.to_utf8()?
      );
    } else {
      fs::create_dir_all(secret_path.clone())?;

      // Open the secret key file
      let key_name = format!("{}.key", key_name);
      let key_path = Path::new(keys_location).join(key_name);
      let mut secret_key_string = File::open(key_path)?;
      let (signed_secret_key, _) = SignedSecretKey::from_armor_single(&mut secret_key_string)?;
      signed_secret_key.verify()?;

      // Get the public key (signed form implements PublicKeyTrait)
      let pubkey = signed_secret_key.signed_public_key();

      // Encrypt the value using MessageBuilder and write armored output
      let mut rng = thread_rng();
      let builder = pgp::composed::MessageBuilder::from_bytes("", value.into_bytes())
        .seipd_v1(&mut rng, SymmetricKeyAlgorithm::AES128);
      // Add recipient public key(s)
      let mut builder = builder;
      builder.encrypt_to_key(&mut rng, &pubkey)?;
      let armored = builder.to_armored_string(&mut rng, ArmorOptions::default())?;

      // Save the armored encrypted message to a file
      let mut writer = File::create(data_path)?;
      write!(writer, "{}", armored)?;
      writer.flush()?;

      println!("Secret stored at {}", secret_path.to_utf8()?);
    }
    Ok(())
  }
}