mk 0.7.12

Yet another simple task runner 🦀
Documentation
use std::fs;
use std::path::Path;

use clap::Args;

use crate::secrets::context::Context;

use super::KEY_LOCATION_HELP;

#[derive(Debug, Args)]
pub struct PurgeKey {
  /// The location to store the private key
  #[arg(short, long, help = KEY_LOCATION_HELP)]
  location: Option<String>,

  /// If not provided, the key will be named "default"
  #[arg(short, long, help = "The key name")]
  name: Option<String>,
}

impl PurgeKey {
  pub fn execute(&self, context: &Context) -> anyhow::Result<()> {
    let location: &str = &self.location.clone().unwrap_or_else(|| context.keys_location());
    let name: &str = &self.name.clone().unwrap_or_else(|| context.key_name());

    assert!(!location.is_empty(), "Location must be provided");
    assert!(!name.is_empty(), "Key name must be provided");

    let filename_with_ext: &str = &format!("{name}.key");
    let file_path = Path::new(location).join(filename_with_ext);
    if file_path.exists() {
      fs::remove_file(file_path)?;
      println!("Key '{name}' removed successfully.");
    } else {
      println!("Key '{name}' not found. List available keys with: mk secrets key list");
    }

    Ok(())
  }
}