2024-05-03 17:50:50 +01:00
|
|
|
pub mod branch;
|
2024-04-16 22:21:55 +01:00
|
|
|
mod file;
|
2024-04-19 18:56:42 +01:00
|
|
|
|
2024-05-18 11:41:18 +01:00
|
|
|
use git::OpenRepository;
|
2024-05-11 19:46:20 +01:00
|
|
|
use git_next_config::{BranchName, GitDir, RepoConfig};
|
|
|
|
use git_next_git::{self as git, GitRef, RepoDetails, Repository};
|
2024-04-16 22:21:55 +01:00
|
|
|
use kxio::network::{self, Network};
|
2024-04-27 15:23:42 +01:00
|
|
|
use tracing::{error, info, warn};
|
2024-04-16 22:21:55 +01:00
|
|
|
|
2024-05-23 08:30:58 +01:00
|
|
|
use crate::validation;
|
2024-04-16 22:21:55 +01:00
|
|
|
|
|
|
|
struct ForgeJo;
|
2024-05-04 12:37:35 +01:00
|
|
|
#[derive(Clone, Debug)]
|
2024-04-16 22:21:55 +01:00
|
|
|
pub struct ForgeJoEnv {
|
|
|
|
repo_details: RepoDetails,
|
|
|
|
net: Network,
|
2024-05-18 11:41:18 +01:00
|
|
|
repo: Repository,
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
impl ForgeJoEnv {
|
2024-05-18 11:41:18 +01:00
|
|
|
pub(super) const fn new(repo_details: RepoDetails, net: Network, repo: Repository) -> Self {
|
|
|
|
Self {
|
|
|
|
repo_details,
|
|
|
|
net,
|
|
|
|
repo,
|
|
|
|
}
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl super::ForgeLike for ForgeJoEnv {
|
|
|
|
fn name(&self) -> String {
|
|
|
|
"forgejo".to_string()
|
|
|
|
}
|
|
|
|
|
2024-05-23 08:01:16 +01:00
|
|
|
async fn branches_get_all(&self) -> Result<Vec<BranchName>, crate::branch::Error> {
|
2024-04-16 22:21:55 +01:00
|
|
|
branch::get_all(&self.repo_details, &self.net).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn file_contents_get(
|
|
|
|
&self,
|
|
|
|
branch: &BranchName,
|
|
|
|
file_path: &str,
|
2024-05-23 08:01:16 +01:00
|
|
|
) -> Result<String, crate::file::Error> {
|
2024-04-16 22:21:55 +01:00
|
|
|
file::contents_get(&self.repo_details, &self.net, branch, file_path).await
|
|
|
|
}
|
|
|
|
|
2024-05-05 08:17:32 +01:00
|
|
|
async fn branches_validate_positions(
|
|
|
|
&self,
|
2024-05-18 11:41:18 +01:00
|
|
|
repository: git::OpenRepository,
|
2024-05-05 08:17:32 +01:00
|
|
|
repo_config: RepoConfig,
|
2024-05-22 08:41:30 +01:00
|
|
|
) -> validation::Result {
|
|
|
|
branch::validate_positions(self, &repository, repo_config).await
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn branch_reset(
|
|
|
|
&self,
|
2024-05-18 11:41:18 +01:00
|
|
|
repository: &git::OpenRepository,
|
2024-04-16 22:21:55 +01:00
|
|
|
branch_name: BranchName,
|
|
|
|
to_commit: GitRef,
|
2024-05-16 14:45:25 +01:00
|
|
|
force: git::push::Force,
|
|
|
|
) -> git::push::Result {
|
2024-05-18 11:41:18 +01:00
|
|
|
repository.fetch()?;
|
|
|
|
repository.push(&self.repo_details, branch_name, to_commit, force)
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
|
2024-05-23 08:30:58 +01:00
|
|
|
async fn commit_status(&self, commit: &git::Commit) -> git::commit::Status {
|
2024-04-16 22:21:55 +01:00
|
|
|
let repo_details = &self.repo_details;
|
2024-05-15 07:55:05 +01:00
|
|
|
let hostname = &repo_details.forge.hostname();
|
2024-04-20 20:49:38 +01:00
|
|
|
let repo_path = &repo_details.repo_path;
|
2024-05-15 07:55:05 +01:00
|
|
|
let api_token = &repo_details.forge.token();
|
2024-04-16 22:21:55 +01:00
|
|
|
use secrecy::ExposeSecret;
|
|
|
|
let token = api_token.expose_secret();
|
|
|
|
let url = network::NetUrl::new(format!(
|
2024-04-20 20:49:38 +01:00
|
|
|
"https://{hostname}/api/v1/repos/{repo_path}/commits/{commit}/status?token={token}"
|
2024-04-16 22:21:55 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
let request = network::NetRequest::new(
|
|
|
|
network::RequestMethod::Get,
|
|
|
|
url,
|
|
|
|
network::NetRequestHeaders::new(),
|
|
|
|
network::RequestBody::None,
|
|
|
|
network::ResponseType::Json,
|
|
|
|
None,
|
|
|
|
network::NetRequestLogging::None,
|
|
|
|
);
|
|
|
|
let result = self.net.get::<CombinedStatus>(request).await;
|
|
|
|
match result {
|
|
|
|
Ok(response) => {
|
|
|
|
match response.response_body() {
|
|
|
|
Some(status) => match status.state {
|
2024-05-23 08:30:58 +01:00
|
|
|
CommitStatusState::Success => git::commit::Status::Pass,
|
|
|
|
CommitStatusState::Pending => git::commit::Status::Pending,
|
|
|
|
CommitStatusState::Failure => git::commit::Status::Fail,
|
|
|
|
CommitStatusState::Error => git::commit::Status::Fail,
|
|
|
|
CommitStatusState::Blank => git::commit::Status::Pending,
|
2024-04-16 22:21:55 +01:00
|
|
|
},
|
|
|
|
None => {
|
|
|
|
warn!("No status found for commit");
|
2024-05-23 08:30:58 +01:00
|
|
|
git::commit::Status::Pending // assume issue is transient and allow retry
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
error!(?e, "Failed to get commit status");
|
2024-05-23 08:30:58 +01:00
|
|
|
git::commit::Status::Pending // assume issue is transient and allow retry
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-19 18:56:42 +01:00
|
|
|
|
2024-05-18 11:41:18 +01:00
|
|
|
fn repo_clone(&self, gitdir: GitDir) -> Result<OpenRepository, git::repository::Error> {
|
2024-05-09 21:53:50 +01:00
|
|
|
let repository = if !gitdir.exists() {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Local copy not found - cloning...");
|
2024-05-18 11:41:18 +01:00
|
|
|
self.repo.git_clone(&self.repo_details)?
|
2024-05-09 21:18:40 +01:00
|
|
|
} else {
|
2024-05-18 11:41:18 +01:00
|
|
|
self.repo.open(&gitdir)?
|
2024-05-09 21:18:40 +01:00
|
|
|
};
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Validating...");
|
2024-05-11 19:46:20 +01:00
|
|
|
git::validate(&repository, &self.repo_details)
|
2024-05-18 22:28:51 +01:00
|
|
|
.map_err(|e| git::repository::Error::Validation(e.to_string()))?;
|
2024-05-09 21:53:50 +01:00
|
|
|
Ok(repository)
|
2024-04-19 18:56:42 +01:00
|
|
|
}
|
2024-04-16 22:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, serde::Deserialize)]
|
|
|
|
pub struct CombinedStatus {
|
|
|
|
pub state: CommitStatusState,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, serde::Deserialize)]
|
|
|
|
pub enum CommitStatusState {
|
|
|
|
#[serde(rename = "success")]
|
|
|
|
Success,
|
|
|
|
#[serde(rename = "pending")]
|
|
|
|
Pending,
|
|
|
|
#[serde(rename = "failure")]
|
|
|
|
Failure,
|
|
|
|
#[serde(rename = "error")]
|
|
|
|
Error,
|
|
|
|
#[serde(rename = "")]
|
|
|
|
Blank,
|
|
|
|
}
|