Files
komodo/lib/git/src/commit.rs
T
Maxwell Becker 5088dc5c3c 1.15.8 (#124)
* fix all containers restart and unpause

* add CommitSync to Procedure

* validate resource query tags causes failure on non exist

* files on host init working. match tags fail if tag doesnt exist

* intelligent sync match tag selector

* fix linting

* Wait for user initialize file on host
2024-10-13 15:03:16 -07:00

171 lines
3.7 KiB
Rust

use std::path::Path;
use anyhow::Context;
use command::run_komodo_command;
use formatting::format_serror;
use komodo_client::entities::{all_logs_success, update::Log};
use run_command::async_run_command;
use tokio::fs;
use crate::{get_commit_hash_log, GitRes};
/// Write file, add, commit, force push.
/// Repo must be cloned.
pub async fn write_commit_file(
commit_msg: &str,
repo_dir: &Path,
// relative to repo root
file: &Path,
contents: &str,
) -> anyhow::Result<GitRes> {
let path = repo_dir.join(file);
if let Some(parent) = path.parent() {
let _ = fs::create_dir_all(&parent).await;
}
fs::write(&path, contents).await.with_context(|| {
format!("Failed to write contents to {path:?}")
})?;
let mut res = GitRes::default();
res.logs.push(Log::simple(
"Write file",
format!("File contents written to {path:?}"),
));
commit_file_inner(commit_msg, &mut res, repo_dir, file).await;
Ok(res)
}
/// Add file, commit, force push.
/// Repo must be cloned.
pub async fn commit_file(
commit_msg: &str,
repo_dir: &Path,
// relative to repo root
file: &Path,
) -> GitRes {
let mut res = GitRes::default();
commit_file_inner(commit_msg, &mut res, repo_dir, file).await;
res
}
pub async fn commit_file_inner(
commit_msg: &str,
res: &mut GitRes,
repo_dir: &Path,
// relative to repo root
file: &Path,
) {
ensure_global_git_config_set().await;
let add_log = run_komodo_command(
"add files",
repo_dir,
format!("git add {}", file.display()),
)
.await;
res.logs.push(add_log);
if !all_logs_success(&res.logs) {
return;
}
let commit_log = run_komodo_command(
"commit",
repo_dir,
format!(
"git commit -m \"[Komodo] {commit_msg}: update {file:?}\""
),
)
.await;
res.logs.push(commit_log);
if !all_logs_success(&res.logs) {
return;
}
match get_commit_hash_log(repo_dir).await {
Ok((log, hash, message)) => {
res.logs.push(log);
res.hash = Some(hash);
res.message = Some(message);
}
Err(e) => {
res.logs.push(Log::error(
"get commit hash",
format_serror(&e.into()),
));
return;
}
};
let push_log =
run_komodo_command("push", repo_dir, "git push -f").await;
res.logs.push(push_log);
}
/// Add, commit, and force push.
/// Repo must be cloned.
pub async fn commit_all(repo_dir: &Path, message: &str) -> GitRes {
ensure_global_git_config_set().await;
let mut res = GitRes::default();
let add_log =
run_komodo_command("add files", repo_dir, "git add -A").await;
res.logs.push(add_log);
if !all_logs_success(&res.logs) {
return res;
}
let commit_log = run_komodo_command(
"commit",
repo_dir,
format!("git commit -m \"[Komodo] {message}\""),
)
.await;
res.logs.push(commit_log);
if !all_logs_success(&res.logs) {
return res;
}
match get_commit_hash_log(repo_dir).await {
Ok((log, hash, message)) => {
res.logs.push(log);
res.hash = Some(hash);
res.message = Some(message);
}
Err(e) => {
res.logs.push(Log::error(
"get commit hash",
format_serror(&e.into()),
));
return res;
}
};
let push_log =
run_komodo_command("push", repo_dir, "git push -f").await;
res.logs.push(push_log);
res
}
async fn ensure_global_git_config_set() {
let res =
async_run_command("git config --global --get user.email").await;
if !res.success() {
let _ = async_run_command(
"git config --global user.email komodo@komo.do",
)
.await;
}
let res =
async_run_command("git config --global --get user.name").await;
if !res.success() {
let _ =
async_run_command("git config --global user.name komodo").await;
}
}