//! pre-commit hook for code formatting.

use std::{fs, path::PathBuf};

use anyhow::{bail, Result};
use xshell::cmd;

use crate::{project_root, run_rustfmt, Mode};

// FIXME: if there are changed `.ts` files, also reformat TypeScript (by
// shelling out to `npm fmt`).
pub fn run_hook() -> Result<()> {
    run_rustfmt(Mode::Overwrite)?;

    let diff = cmd!("git diff --diff-filter=MAR --name-only --cached").read()?;

    let root = project_root();
    for line in diff.lines() {
        let file = root.join(line);
        cmd!("git update-index --add {file}").run()?;
    }

    Ok(())
}

pub fn install_hook() -> Result<()> {
    let hook_path: PathBuf =
        format!("./.git/hooks/pre-commit{}", std::env::consts::EXE_SUFFIX).into();

    if hook_path.exists() {
        bail!("Git hook already created");
    }

    let me = std::env::current_exe()?;
    fs::copy(me, hook_path)?;

    Ok(())
}