2024-04-09 15:31:59 +01:00
|
|
|
mod branch;
|
2024-04-09 10:44:01 +01:00
|
|
|
mod config;
|
2024-04-10 09:16:42 +01:00
|
|
|
pub mod status;
|
2024-04-14 19:12:51 +01:00
|
|
|
pub mod webhook;
|
2024-04-09 10:44:01 +01:00
|
|
|
|
|
|
|
use actix::prelude::*;
|
|
|
|
use kxio::network::Network;
|
2024-05-04 12:37:35 +01:00
|
|
|
use tracing::{debug, info, warn, Instrument};
|
2024-04-09 10:44:01 +01:00
|
|
|
|
2024-04-09 18:18:19 +01:00
|
|
|
use crate::server::{
|
2024-04-14 19:12:51 +01:00
|
|
|
actors::repo::webhook::WebhookAuth,
|
2024-04-14 06:48:26 +01:00
|
|
|
config::{RepoConfig, RepoDetails, Webhook},
|
2024-04-18 19:15:26 +01:00
|
|
|
gitforge,
|
2024-04-09 18:18:19 +01:00
|
|
|
};
|
2024-04-09 10:44:01 +01:00
|
|
|
|
2024-04-09 19:30:05 +01:00
|
|
|
use self::webhook::WebhookId;
|
|
|
|
|
2024-04-09 10:44:01 +01:00
|
|
|
pub struct RepoActor {
|
2024-05-04 12:37:35 +01:00
|
|
|
span: tracing::Span,
|
2024-04-09 10:44:01 +01:00
|
|
|
details: RepoDetails,
|
2024-04-14 06:48:26 +01:00
|
|
|
webhook: Webhook,
|
2024-04-09 19:30:05 +01:00
|
|
|
webhook_id: Option<WebhookId>, // INFO: if [None] then no webhook is configured
|
2024-04-14 19:12:51 +01:00
|
|
|
webhook_auth: Option<WebhookAuth>, // INFO: if [None] then no webhook is configured
|
2024-04-18 19:15:26 +01:00
|
|
|
last_main_commit: Option<gitforge::Commit>,
|
|
|
|
last_next_commit: Option<gitforge::Commit>,
|
|
|
|
last_dev_commit: Option<gitforge::Commit>,
|
2024-04-09 10:44:01 +01:00
|
|
|
net: Network,
|
2024-04-16 22:21:55 +01:00
|
|
|
forge: gitforge::Forge,
|
2024-04-09 10:44:01 +01:00
|
|
|
}
|
|
|
|
impl RepoActor {
|
2024-04-16 22:21:55 +01:00
|
|
|
pub(crate) fn new(details: RepoDetails, webhook: Webhook, net: Network) -> Self {
|
2024-05-04 12:37:35 +01:00
|
|
|
let span = tracing::info_span!("RepoActor", repo = %details);
|
2024-04-16 22:21:55 +01:00
|
|
|
let forge = match details.forge.forge_type {
|
|
|
|
#[cfg(feature = "forgejo")]
|
|
|
|
crate::server::config::ForgeType::ForgeJo => {
|
|
|
|
gitforge::Forge::new_forgejo(details.clone(), net.clone())
|
|
|
|
}
|
|
|
|
#[cfg(test)]
|
|
|
|
crate::server::config::ForgeType::MockForge => gitforge::Forge::new_mock(),
|
|
|
|
};
|
2024-05-04 12:37:35 +01:00
|
|
|
debug!(?forge, "new");
|
2024-04-09 10:44:01 +01:00
|
|
|
Self {
|
2024-05-04 12:37:35 +01:00
|
|
|
span,
|
2024-04-09 10:44:01 +01:00
|
|
|
details,
|
2024-04-14 06:48:26 +01:00
|
|
|
webhook,
|
2024-04-09 19:30:05 +01:00
|
|
|
webhook_id: None,
|
2024-04-14 06:48:26 +01:00
|
|
|
webhook_auth: None,
|
2024-04-14 15:46:21 +01:00
|
|
|
last_main_commit: None,
|
|
|
|
last_next_commit: None,
|
|
|
|
last_dev_commit: None,
|
2024-04-09 10:44:01 +01:00
|
|
|
net,
|
2024-04-16 22:21:55 +01:00
|
|
|
forge,
|
2024-04-09 10:44:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Actor for RepoActor {
|
|
|
|
type Context = Context<Self>;
|
2024-04-09 19:30:05 +01:00
|
|
|
fn stopping(&mut self, ctx: &mut Self::Context) -> Running {
|
2024-05-04 12:37:35 +01:00
|
|
|
let _gaurd = self.span.enter();
|
|
|
|
info!("Checking webhook");
|
2024-04-09 19:30:05 +01:00
|
|
|
match self.webhook_id.take() {
|
|
|
|
Some(webhook_id) => {
|
|
|
|
let repo_details = self.details.clone();
|
|
|
|
let net = self.net.clone();
|
2024-04-13 20:59:57 +01:00
|
|
|
webhook::unregister(webhook_id, repo_details, net)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-09 19:30:05 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
Running::Continue
|
|
|
|
}
|
|
|
|
None => Running::Stop,
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 10:44:01 +01:00
|
|
|
}
|
2024-05-03 17:50:50 +01:00
|
|
|
impl std::fmt::Display for RepoActor {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(
|
|
|
|
f,
|
2024-05-04 12:37:35 +01:00
|
|
|
"{}/{}",
|
2024-05-03 17:50:50 +01:00
|
|
|
self.details.forge.forge_name, self.details.repo_alias
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 10:44:01 +01:00
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
2024-04-23 07:09:30 +01:00
|
|
|
pub struct CloneRepo;
|
|
|
|
impl Handler<CloneRepo> for RepoActor {
|
2024-04-09 10:44:01 +01:00
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::CloneRepo", skip_all, fields(repo = %self, gitdir = %self.details.gitdir))]
|
2024-04-23 07:09:30 +01:00
|
|
|
fn handle(&mut self, _msg: CloneRepo, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-23 07:09:30 +01:00
|
|
|
let gitdir = self.details.gitdir.clone();
|
|
|
|
match self.forge.repo_clone(gitdir) {
|
|
|
|
Ok(_) => ctx.address().do_send(LoadConfigFromRepo),
|
2024-05-03 17:50:50 +01:00
|
|
|
Err(err) => warn!("Could not Clone repo: {err}"),
|
2024-04-23 07:09:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
|
|
|
pub struct LoadConfigFromRepo;
|
|
|
|
impl Handler<LoadConfigFromRepo> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::LoadConfigFromRepo", skip_all, fields(repo = %self))]
|
2024-04-23 07:09:30 +01:00
|
|
|
fn handle(&mut self, _msg: LoadConfigFromRepo, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-09 10:44:01 +01:00
|
|
|
let details = self.details.clone();
|
|
|
|
let addr = ctx.address();
|
2024-04-16 22:21:55 +01:00
|
|
|
let forge = self.forge.clone();
|
|
|
|
config::load(details, addr, forge)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-16 22:21:55 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
2024-04-09 10:44:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
|
|
|
struct LoadedConfig(pub RepoConfig);
|
|
|
|
impl Handler<LoadedConfig> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::LoadedConfig", skip_all, fields(repo = %self.details, branches = %msg.0))]
|
2024-04-09 15:31:59 +01:00
|
|
|
fn handle(&mut self, msg: LoadedConfig, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-21 19:33:18 +01:00
|
|
|
let repo_config = msg.0;
|
|
|
|
self.details.repo_config.replace(repo_config);
|
2024-04-14 06:48:26 +01:00
|
|
|
if self.webhook_id.is_none() {
|
|
|
|
webhook::register(
|
|
|
|
self.details.clone(),
|
|
|
|
self.webhook.clone(),
|
|
|
|
ctx.address(),
|
|
|
|
self.net.clone(),
|
|
|
|
)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-14 06:48:26 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
}
|
2024-04-11 15:43:02 +01:00
|
|
|
ctx.address().do_send(ValidateRepo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
|
|
|
pub struct ValidateRepo;
|
|
|
|
impl Handler<ValidateRepo> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::ValidateRepo", skip_all, fields(repo = %self.details))]
|
2024-04-11 15:43:02 +01:00
|
|
|
fn handle(&mut self, _msg: ValidateRepo, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-21 19:33:18 +01:00
|
|
|
if let Some(repo_config) = self.details.repo_config.clone() {
|
2024-04-16 22:21:55 +01:00
|
|
|
let forge = self.forge.clone();
|
2024-04-11 15:43:02 +01:00
|
|
|
let addr = ctx.address();
|
2024-04-16 22:21:55 +01:00
|
|
|
async move { forge.branches_validate_positions(repo_config, addr).await }
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-11 15:43:02 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
}
|
2024-04-09 10:44:01 +01:00
|
|
|
}
|
|
|
|
}
|
2024-04-09 18:18:19 +01:00
|
|
|
|
2024-04-10 18:02:04 +01:00
|
|
|
#[derive(Debug, Message)]
|
2024-04-09 18:18:19 +01:00
|
|
|
#[rtype(result = "()")]
|
|
|
|
pub struct StartMonitoring {
|
2024-04-18 19:15:26 +01:00
|
|
|
pub main: gitforge::Commit,
|
|
|
|
pub next: gitforge::Commit,
|
|
|
|
pub dev: gitforge::Commit,
|
|
|
|
pub dev_commit_history: Vec<gitforge::Commit>,
|
2024-04-09 18:18:19 +01:00
|
|
|
}
|
|
|
|
impl Handler<StartMonitoring> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::StartMonitoring", skip_all, fields(repo = %self.details, main = %msg.main, next= %msg.next, dev = %msg.dev))]
|
2024-04-09 19:30:05 +01:00
|
|
|
fn handle(&mut self, msg: StartMonitoring, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-21 19:33:18 +01:00
|
|
|
let Some(repo_config) = self.details.repo_config.clone() else {
|
2024-04-10 15:18:48 +01:00
|
|
|
warn!("No config loaded");
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2024-04-11 07:15:19 +01:00
|
|
|
let next_ahead_of_main = msg.main != msg.next;
|
|
|
|
let dev_ahead_of_next = msg.next != msg.dev;
|
2024-05-04 12:37:35 +01:00
|
|
|
info!(next_ahead_of_main, dev_ahead_of_next, "StartMonitoring");
|
2024-04-11 07:15:19 +01:00
|
|
|
|
2024-04-09 19:30:05 +01:00
|
|
|
let addr = ctx.address();
|
2024-04-16 22:21:55 +01:00
|
|
|
let forge = self.forge.clone();
|
2024-04-10 15:18:48 +01:00
|
|
|
|
2024-04-09 19:30:05 +01:00
|
|
|
if next_ahead_of_main {
|
2024-04-16 22:21:55 +01:00
|
|
|
status::check_next(msg.next, addr, forge)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-09 19:30:05 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
} else if dev_ahead_of_next {
|
2024-05-03 17:50:50 +01:00
|
|
|
branch::advance_next(msg.next, msg.dev_commit_history, repo_config, forge, addr)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-16 22:21:55 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
2024-04-09 19:30:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
2024-04-14 19:12:51 +01:00
|
|
|
pub struct WebhookRegistered(pub WebhookId, pub WebhookAuth);
|
2024-04-09 19:30:05 +01:00
|
|
|
impl Handler<WebhookRegistered> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::WebhookRegistered", skip_all, fields(webhook_id = %msg.0))]
|
2024-04-09 19:30:05 +01:00
|
|
|
fn handle(&mut self, msg: WebhookRegistered, _ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-09 19:30:05 +01:00
|
|
|
self.webhook_id.replace(msg.0);
|
2024-04-14 06:48:26 +01:00
|
|
|
self.webhook_auth.replace(msg.1);
|
2024-04-09 18:18:19 +01:00
|
|
|
}
|
|
|
|
}
|
2024-04-09 22:43:54 +01:00
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
2024-04-18 19:15:26 +01:00
|
|
|
pub struct AdvanceMainTo(pub gitforge::Commit);
|
2024-04-09 22:43:54 +01:00
|
|
|
impl Handler<AdvanceMainTo> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-04 12:37:35 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::AdvanceMainTo", skip_all, fields(commit = %msg.0))]
|
2024-04-09 22:43:54 +01:00
|
|
|
fn handle(&mut self, msg: AdvanceMainTo, ctx: &mut Self::Context) -> Self::Result {
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-04-21 19:33:18 +01:00
|
|
|
let Some(repo_config) = self.details.repo_config.clone() else {
|
2024-04-10 17:36:08 +01:00
|
|
|
warn!("No config loaded");
|
|
|
|
return;
|
|
|
|
};
|
2024-04-16 22:21:55 +01:00
|
|
|
let forge = self.forge.clone();
|
2024-05-03 17:50:50 +01:00
|
|
|
let addr = ctx.address();
|
|
|
|
branch::advance_main(msg.0, repo_config, forge, addr)
|
2024-05-04 12:37:35 +01:00
|
|
|
.in_current_span()
|
2024-04-09 22:43:54 +01:00
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
}
|
|
|
|
}
|