mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-07 00:01:00 +00:00
* consolidate deserializers * key value list doc * use string list deserializers for all entity Vec<String> * add additional env files support * plumbing for Action resource * js client readme indentation * regen lock * add action UI * action backend * start on action frontend * update lock * get up to speed * get action started * clean up default action file * seems to work * toml export include action * action works * action works part 2 * bump rust version to 1.82.0 * copy deno bin from bin image * action use local dir * update not having changes doesn't return error * format with prettier * support yaml formatting with prettier * variable no change is Ok
176 lines
3.8 KiB
Rust
176 lines
3.8 KiB
Rust
use std::path::{Path, PathBuf};
|
|
|
|
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> {
|
|
// Clean up the path by stripping any redundant `/./`
|
|
let path = repo_dir.join(file).components().collect::<PathBuf>();
|
|
|
|
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()),
|
|
false,
|
|
)
|
|
.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:?}\"",
|
|
),
|
|
false,
|
|
)
|
|
.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", false).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", false)
|
|
.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}\""),
|
|
false,
|
|
)
|
|
.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", false).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;
|
|
}
|
|
}
|