oxen-cli 0.50.6

Oxen is a fast, unstructured data version control, to help version large machine learning datasets written in Rust.
use anyhow::Context;
use async_trait::async_trait;
use clap::{Arg, Command};
use dialoguer::Confirm;
use liboxen::api;
use liboxen::constants::DEFAULT_HOST;

use crate::cmd::RunCmd;

pub struct DeleteRemoteCmd;

const NAME: &str = "delete-remote";

#[async_trait]
impl RunCmd for DeleteRemoteCmd {
    fn name(&self) -> &str {
        NAME
    }

    fn args(&self) -> Command {
        // Setups the CLI args for the command
        Command::new(NAME)
        .about("Deletes a remote repository with the name on the host. Default behavior is to delete a remote on the hub.oxen.ai remote.")
        .arg(
            Arg::new("name")
                .long("name")
                .short('n')
                .help("The namespace/name of the remote repository you want to create. For example: 'ox/my_repo'")
                .required(true)
                .action(clap::ArgAction::Set),
        )
        .arg(
            Arg::new("host")
                .long("host")
                .help("The host you want to create the remote repository on. For example: 'hub.oxen.ai'")
                .action(clap::ArgAction::Set),
        )
        .arg(
            Arg::new("scheme")
                .long("scheme")
                .help("The scheme for the url of the remote repository. For example: 'https' or 'http'")
                .action(clap::ArgAction::Set),
        )
        .arg(
            Arg::new("yes")
                .long("yes")
                .short('y')
                .help("Automatically confirm the deletion without prompting.")
                .action(clap::ArgAction::SetTrue),
        )
    }

    async fn run(&self, args: &clap::ArgMatches) -> Result<(), anyhow::Error> {
        // Parse Args
        let Some(namespace_name) = args.get_one::<String>("name") else {
            return Err(anyhow::anyhow!(
                "Must supply a namespace/name for the remote repository.",
            ));
        };
        // Default the host to the oxen.ai hub
        let host = args
            .get_one::<String>("host")
            .map(String::from)
            .unwrap_or(DEFAULT_HOST.to_string());
        // Default scheme
        let scheme = args
            .get_one::<String>("scheme")
            .map(String::from)
            .unwrap_or("https".to_string());

        let url = format!("{scheme}://{host}/{namespace_name}");
        let remote_repo = api::client::repositories::get_by_url(&url).await?;

        // Check if the user wants to skip confirmation
        let skip_confirmation = args.get_flag("yes");

        if !skip_confirmation {
            // Confirm the user wants to delete the remote repository
            match Confirm::new()
                .with_prompt(format!(
                    "Are you sure you want to delete the remote repository: {namespace_name}?"
                ))
                .interact()
            {
                Ok(true) => {
                    api::client::repositories::delete(&remote_repo).await?;
                }
                Ok(false) => {
                    return Ok(());
                }
                error => {
                    error.context("Error confirming deletion.")?;
                }
            }
        } else {
            // Automatically delete without confirmation
            api::client::repositories::delete(&remote_repo).await?;
        }

        Ok(())
    }
}