2022-10-28 17:39:15 +00:00
|
|
|
//! [`clap`] Derive structs.
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2022-11-04 16:54:05 +00:00
|
|
|
use clap::{Args as Arguments, Parser, Subcommand};
|
2022-10-28 17:39:15 +00:00
|
|
|
|
2022-11-04 17:09:15 +00:00
|
|
|
mod install;
|
2022-10-30 20:14:12 +00:00
|
|
|
mod run;
|
2022-11-04 17:09:15 +00:00
|
|
|
mod uninstall;
|
2022-10-30 20:14:12 +00:00
|
|
|
|
2022-11-04 17:09:15 +00:00
|
|
|
pub use install::hooked_install;
|
2022-10-30 20:14:12 +00:00
|
|
|
pub use run::hooked_run;
|
2022-11-04 17:09:15 +00:00
|
|
|
pub use uninstall::hooked_uninstall;
|
2022-10-30 20:14:12 +00:00
|
|
|
|
2022-10-28 17:39:15 +00:00
|
|
|
/// CLI arguments struct using [`clap::Parser`].
|
|
|
|
#[derive(Debug, Parser)]
|
|
|
|
#[clap(about, author, version)]
|
|
|
|
#[clap(propagate_version = true)]
|
|
|
|
pub struct Args {
|
|
|
|
/// The CLI subcommand.
|
|
|
|
#[clap(subcommand)]
|
|
|
|
pub command: MainSubcommands,
|
|
|
|
|
|
|
|
/// Path to a Hooked configuration.
|
|
|
|
#[clap(short, long, global = true, default_value = "Hooked.toml")]
|
|
|
|
pub config: PathBuf,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Main CLI subcommands.
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
|
|
pub enum MainSubcommands {
|
|
|
|
/// Install Hooked into ".git/hooks".
|
2022-11-04 16:54:05 +00:00
|
|
|
Install(InstallArgs),
|
2022-10-28 18:24:07 +00:00
|
|
|
|
|
|
|
/// Remove installed hooks.
|
2022-11-04 16:54:05 +00:00
|
|
|
Uninstall(UninstallArgs),
|
2022-10-30 20:14:12 +00:00
|
|
|
|
|
|
|
/// Manually run hooks.
|
2022-11-04 16:54:05 +00:00
|
|
|
Run(RunArgs),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The `install` subcommand arguments.
|
|
|
|
#[derive(Debug, Arguments)]
|
|
|
|
pub struct InstallArgs {
|
|
|
|
/// Overwrite existing files.
|
|
|
|
#[clap(long)]
|
|
|
|
pub overwrite: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The `uninstall` subcommand arguments.
|
|
|
|
#[derive(Debug, Arguments)]
|
|
|
|
pub struct UninstallArgs {
|
|
|
|
/// Remove hooks not installed by Hooked.
|
|
|
|
#[clap(long)]
|
|
|
|
pub all: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The `run` subcommand arguments.
|
|
|
|
#[derive(Debug, Arguments)]
|
|
|
|
pub struct RunArgs {
|
|
|
|
/// The hook type to run.
|
|
|
|
#[clap(value_parser = crate::HOOK_TYPES)]
|
|
|
|
pub hook_type: String,
|
2022-10-28 17:39:15 +00:00
|
|
|
}
|