mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
193 lines
4.6 KiB
Rust
193 lines
4.6 KiB
Rust
use git2::Repository;
|
|
|
|
use crate::{error::Result, HookResult, HooksError};
|
|
|
|
use std::{
|
|
path::Path, path::PathBuf, process::Command, str::FromStr,
|
|
};
|
|
|
|
pub struct HookPaths {
|
|
pub git: PathBuf,
|
|
pub hook: PathBuf,
|
|
pub pwd: PathBuf,
|
|
}
|
|
|
|
const CONFIG_HOOKS_PATH: &str = "core.hooksPath";
|
|
const DEFAULT_HOOKS_PATH: &str = "hooks";
|
|
|
|
impl HookPaths {
|
|
/// `core.hooksPath` always takes precedence.
|
|
/// If its defined and there is no hook `hook` this is not considered
|
|
/// an error or a reason to search in other paths.
|
|
/// If the config is not set we go into search mode and
|
|
/// first check standard `.git/hooks` folder and any sub path provided in `other_paths`.
|
|
///
|
|
/// Note: we try to model as closely as possible what git shell is doing.
|
|
pub fn new(
|
|
repo: &Repository,
|
|
other_paths: Option<&[&str]>,
|
|
hook: &str,
|
|
) -> Result<Self> {
|
|
let pwd = repo
|
|
.workdir()
|
|
.unwrap_or_else(|| repo.path())
|
|
.to_path_buf();
|
|
|
|
let git_dir = repo.path().to_path_buf();
|
|
|
|
if let Some(config_path) = Self::config_hook_path(repo)? {
|
|
let hooks_path = PathBuf::from(config_path);
|
|
|
|
let hook = hooks_path.join(hook);
|
|
|
|
let hook = shellexpand::full(
|
|
hook.as_os_str()
|
|
.to_str()
|
|
.ok_or(HooksError::PathToString)?,
|
|
)?;
|
|
|
|
let hook = PathBuf::from_str(hook.as_ref())
|
|
.map_err(|_| HooksError::PathToString)?;
|
|
|
|
return Ok(Self {
|
|
git: git_dir,
|
|
hook,
|
|
pwd,
|
|
});
|
|
}
|
|
|
|
Ok(Self {
|
|
git: git_dir,
|
|
hook: Self::find_hook(repo, other_paths, hook),
|
|
pwd,
|
|
})
|
|
}
|
|
|
|
fn config_hook_path(repo: &Repository) -> Result<Option<String>> {
|
|
Ok(repo.config()?.get_string(CONFIG_HOOKS_PATH).ok())
|
|
}
|
|
|
|
/// check default hook path first and then followed by `other_paths`.
|
|
/// if no hook is found we return the default hook path
|
|
fn find_hook(
|
|
repo: &Repository,
|
|
other_paths: Option<&[&str]>,
|
|
hook: &str,
|
|
) -> PathBuf {
|
|
let mut paths = vec![DEFAULT_HOOKS_PATH.to_string()];
|
|
if let Some(others) = other_paths {
|
|
paths.extend(
|
|
others
|
|
.iter()
|
|
.map(|p| p.trim_end_matches('/').to_string()),
|
|
);
|
|
}
|
|
|
|
for p in paths {
|
|
let p = repo.path().to_path_buf().join(p).join(hook);
|
|
if p.exists() {
|
|
return p;
|
|
}
|
|
}
|
|
|
|
repo.path()
|
|
.to_path_buf()
|
|
.join(DEFAULT_HOOKS_PATH)
|
|
.join(hook)
|
|
}
|
|
|
|
/// was a hook file found and is it executable
|
|
pub fn found(&self) -> bool {
|
|
self.hook.exists() && is_executable(&self.hook)
|
|
}
|
|
|
|
/// this function calls hook scripts based on conventions documented here
|
|
/// see <https://git-scm.com/docs/githooks>
|
|
pub fn run_hook(&self, args: &[&str]) -> Result<HookResult> {
|
|
let hook = self.hook.clone();
|
|
|
|
let arg_str = format!("{:?} {}", hook, args.join(" "));
|
|
// Use -l to avoid "command not found" on Windows.
|
|
let bash_args =
|
|
vec!["-l".to_string(), "-c".to_string(), arg_str];
|
|
|
|
log::trace!("run hook '{:?}' in '{:?}'", hook, self.pwd);
|
|
|
|
let git_bash = find_bash_executable()
|
|
.unwrap_or_else(|| PathBuf::from("bash"));
|
|
let output = Command::new(git_bash)
|
|
.args(bash_args)
|
|
.current_dir(&self.pwd)
|
|
// This call forces Command to handle the Path environment correctly on windows,
|
|
// the specific env set here does not matter
|
|
// see https://github.com/rust-lang/rust/issues/37519
|
|
.env(
|
|
"DUMMY_ENV_TO_FIX_WINDOWS_CMD_RUNS",
|
|
"FixPathHandlingOnWindows",
|
|
)
|
|
.output()?;
|
|
|
|
if output.status.success() {
|
|
Ok(HookResult::Ok { hook })
|
|
} else {
|
|
let stderr =
|
|
String::from_utf8_lossy(&output.stderr).to_string();
|
|
let stdout =
|
|
String::from_utf8_lossy(&output.stdout).to_string();
|
|
|
|
Ok(HookResult::RunNotSuccessful {
|
|
code: output.status.code(),
|
|
stdout,
|
|
stderr,
|
|
hook,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
fn is_executable(path: &Path) -> bool {
|
|
use std::os::unix::fs::PermissionsExt;
|
|
|
|
let metadata = match path.metadata() {
|
|
Ok(metadata) => metadata,
|
|
Err(e) => {
|
|
log::error!("metadata error: {}", e);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
let permissions = metadata.permissions();
|
|
|
|
permissions.mode() & 0o111 != 0
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
/// windows does not consider bash scripts to be executable so we consider everything
|
|
/// to be executable (which is not far from the truth for windows platform.)
|
|
const fn is_executable(_: &Path) -> bool {
|
|
true
|
|
}
|
|
|
|
// Find bash.exe, and avoid finding wsl's bash.exe on Windows.
|
|
// None for non-Windows.
|
|
fn find_bash_executable() -> Option<PathBuf> {
|
|
if cfg!(windows) {
|
|
Command::new("where.exe")
|
|
.arg("git")
|
|
.output()
|
|
.ok()
|
|
.map(|out| {
|
|
PathBuf::from(Into::<String>::into(
|
|
String::from_utf8_lossy(&out.stdout),
|
|
))
|
|
})
|
|
.as_deref()
|
|
.and_then(Path::parent)
|
|
.and_then(Path::parent)
|
|
.map(|p| p.join("usr/bin/bash.exe"))
|
|
.filter(|p| p.exists())
|
|
} else {
|
|
None
|
|
}
|
|
}
|