git-next/crates/repo-actor/src/load.rs

80 lines
2.2 KiB
Rust
Raw Normal View History

//
use actix::prelude::*;
use tracing::{error, info};
2024-05-23 16:50:36 +01:00
use git_next_config as config;
use git_next_forge as forge;
2024-05-23 16:50:36 +01:00
use git_next_git as git;
use super::{LoadedConfig, RepoActor};
/// Loads the [RepoConfig] from the `.git-next.toml` file in the repository
#[tracing::instrument(skip_all, fields(branch = %repo_details.branch))]
pub async fn load_file(
repo_details: git::RepoDetails,
addr: Addr<RepoActor>,
forge: forge::Forge,
open_repository: git::OpenRepository,
) {
info!("Loading .git-next.toml from repo");
let repo_config = match load(&repo_details, &forge, open_repository).await {
Ok(repo_config) => repo_config,
Err(err) => {
error!(?err, "Failed to load config");
return;
}
};
info!("Loaded .git-next.toml from repo");
addr.do_send(LoadedConfig(repo_config));
}
2024-04-09 10:44:01 +01:00
async fn load(
2024-05-23 16:50:36 +01:00
details: &git::RepoDetails,
forge: &forge::Forge,
open_repository: git::OpenRepository,
2024-05-23 16:50:36 +01:00
) -> Result<config::RepoConfig, Error> {
let contents = open_repository.read_file(&details.branch, ".git-next.toml")?;
2024-05-23 16:50:36 +01:00
let config = config::RepoConfig::load(&contents)?;
2024-05-18 22:16:17 +01:00
let config = validate(config, forge).await?;
Ok(config)
2024-04-09 10:44:01 +01:00
}
2024-05-18 22:16:17 +01:00
#[derive(Debug, derive_more::From, derive_more::Display)]
pub enum Error {
2024-05-23 16:50:36 +01:00
File(git::file::Error),
Config(config::server::Error),
2024-05-18 22:16:17 +01:00
Toml(toml::de::Error),
2024-05-23 16:50:36 +01:00
Forge(git::branch::Error),
BranchNotFound(config::BranchName),
}
2024-05-23 16:50:36 +01:00
pub async fn validate(
config: config::RepoConfig,
forge: &forge::Forge,
) -> Result<config::RepoConfig, Error> {
let branches = forge.branches_get_all().await.map_err(|e| {
error!(?e, "Failed to list branches");
Error::Forge(e)
})?;
if !branches
.iter()
.any(|branch| branch == &config.branches().main())
{
return Err(Error::BranchNotFound(config.branches().main()));
}
if !branches
.iter()
.any(|branch| branch == &config.branches().next())
{
return Err(Error::BranchNotFound(config.branches().next()));
}
if !branches
.iter()
.any(|branch| branch == &config.branches().dev())
{
return Err(Error::BranchNotFound(config.branches().dev()));
}
Ok(config)
}