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
|
|
|
|
2024-05-14 07:59:31 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2024-04-09 10:44:01 +01:00
|
|
|
use actix::prelude::*;
|
2024-05-11 19:46:20 +01:00
|
|
|
use git_next_config::{ForgeType, RepoConfig};
|
|
|
|
use git_next_git::{self as git, Generation, RepoDetails};
|
2024-04-09 10:44:01 +01:00
|
|
|
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-05-11 19:46:20 +01:00
|
|
|
use crate::{actors::repo::webhook::WebhookAuth, config::Webhook, gitforge, types::MessageToken};
|
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-11 19:46:20 +01:00
|
|
|
generation: Generation,
|
2024-05-05 08:17:32 +01:00
|
|
|
message_token: MessageToken,
|
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-05-11 19:46:20 +01:00
|
|
|
last_main_commit: Option<git::Commit>,
|
|
|
|
last_next_commit: Option<git::Commit>,
|
|
|
|
last_dev_commit: Option<git::Commit>,
|
|
|
|
repository: Option<git::Repository>,
|
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-05-11 19:46:20 +01:00
|
|
|
pub fn new(
|
2024-05-07 08:17:29 +01:00
|
|
|
details: RepoDetails,
|
|
|
|
webhook: Webhook,
|
2024-05-11 19:46:20 +01:00
|
|
|
generation: Generation,
|
2024-05-07 08:17:29 +01:00
|
|
|
net: Network,
|
|
|
|
) -> Self {
|
2024-05-15 07:55:05 +01:00
|
|
|
let forge = match details.forge.forge_type() {
|
2024-04-16 22:21:55 +01:00
|
|
|
#[cfg(feature = "forgejo")]
|
2024-05-11 19:46:20 +01:00
|
|
|
ForgeType::ForgeJo => gitforge::Forge::new_forgejo(details.clone(), net.clone()),
|
|
|
|
ForgeType::MockForge => gitforge::Forge::new_mock(),
|
2024-04-16 22:21:55 +01:00
|
|
|
};
|
2024-05-04 12:37:35 +01:00
|
|
|
debug!(?forge, "new");
|
2024-04-09 10:44:01 +01:00
|
|
|
Self {
|
2024-05-07 08:17:29 +01:00
|
|
|
generation,
|
2024-05-05 08:17:32 +01:00
|
|
|
message_token: MessageToken::new(),
|
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-05-09 21:18:40 +01:00
|
|
|
repository: 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-05-09 20:39:04 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::stopping", skip_all, fields(repo = %self.details))]
|
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
|
|
|
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-05-07 08:17:29 +01:00
|
|
|
info!(%webhook_id, "Unregistring webhook");
|
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-07 08:17:29 +01:00
|
|
|
"{}:{}:{}",
|
2024-05-15 07:55:05 +01:00
|
|
|
self.generation,
|
|
|
|
self.details.forge.forge_name(),
|
|
|
|
self.details.repo_alias
|
2024-05-03 17:50:50 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
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-09 20:39:04 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::CloneRepo", skip_all, fields(repo = %self.details, 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) {
|
2024-05-09 21:18:40 +01:00
|
|
|
Ok(repository) => {
|
|
|
|
self.repository.replace(repository);
|
2024-05-08 07:14:14 +01:00
|
|
|
if self.details.repo_config.is_none() {
|
|
|
|
ctx.address().do_send(LoadConfigFromRepo);
|
|
|
|
} else {
|
|
|
|
ctx.address().do_send(ValidateRepo {
|
|
|
|
message_token: self.message_token,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
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-09 20:39:04 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::LoadConfigFromRepo", skip_all, fields(repo = %self.details))]
|
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-05-08 07:14:14 +01:00
|
|
|
|
2024-05-05 08:17:32 +01:00
|
|
|
ctx.address().do_send(ValidateRepo {
|
|
|
|
message_token: self.message_token,
|
|
|
|
});
|
2024-04-11 15:43:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "()")]
|
2024-05-05 08:17:32 +01:00
|
|
|
pub struct ValidateRepo {
|
|
|
|
message_token: MessageToken,
|
|
|
|
}
|
|
|
|
impl ValidateRepo {
|
|
|
|
pub const fn new(message_token: MessageToken) -> Self {
|
|
|
|
Self { message_token }
|
|
|
|
}
|
|
|
|
}
|
2024-04-11 15:43:02 +01:00
|
|
|
impl Handler<ValidateRepo> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-05 08:17:32 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::ValidateRepo", skip_all, fields(repo = %self.details, token = %msg.message_token))]
|
|
|
|
fn handle(&mut self, msg: ValidateRepo, ctx: &mut Self::Context) -> Self::Result {
|
|
|
|
match msg.message_token {
|
|
|
|
message_token if self.message_token < message_token => {
|
|
|
|
info!(%message_token, "New message token");
|
|
|
|
self.message_token = msg.message_token;
|
|
|
|
}
|
|
|
|
message_token if self.message_token > message_token => {
|
|
|
|
info!("Dropping message from previous generation");
|
|
|
|
return; // message is expired
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|
2024-05-04 12:37:35 +01:00
|
|
|
info!("Message Received");
|
2024-05-08 07:14:14 +01:00
|
|
|
if self.webhook_id.is_none() {
|
|
|
|
webhook::register(
|
|
|
|
self.details.clone(),
|
|
|
|
self.webhook.clone(),
|
|
|
|
ctx.address(),
|
|
|
|
self.net.clone(),
|
|
|
|
)
|
|
|
|
.in_current_span()
|
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
|
|
|
}
|
2024-05-09 21:53:50 +01:00
|
|
|
if let (Some(repository), Some(repo_config)) =
|
|
|
|
(self.repository.clone(), 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-05-05 08:17:32 +01:00
|
|
|
let message_token = self.message_token;
|
|
|
|
async move {
|
|
|
|
forge
|
2024-05-09 21:53:50 +01:00
|
|
|
.branches_validate_positions(repository, repo_config, addr, message_token)
|
2024-05-05 08:17:32 +01:00
|
|
|
.await
|
|
|
|
}
|
|
|
|
.in_current_span()
|
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
2024-04-11 15:43:02 +01:00
|
|
|
}
|
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-05-11 19:46:20 +01:00
|
|
|
pub main: git::Commit,
|
|
|
|
pub next: git::Commit,
|
|
|
|
pub dev: git::Commit,
|
|
|
|
pub dev_commit_history: Vec<git::Commit>,
|
2024-04-09 18:18:19 +01:00
|
|
|
}
|
|
|
|
impl Handler<StartMonitoring> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-05 08:17:32 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::StartMonitoring", skip_all, fields(token = %self.message_token, 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-05-05 08:17:32 +01:00
|
|
|
status::check_next(msg.next, addr, forge, self.message_token)
|
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-09 21:53:50 +01:00
|
|
|
if let Some(repository) = self.repository.clone() {
|
|
|
|
branch::advance_next(
|
|
|
|
msg.next,
|
|
|
|
msg.dev_commit_history,
|
|
|
|
repo_config,
|
|
|
|
forge,
|
|
|
|
repository,
|
|
|
|
addr,
|
|
|
|
self.message_token,
|
|
|
|
)
|
|
|
|
.in_current_span()
|
|
|
|
.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-09 20:39:04 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::WebhookRegistered", skip_all, fields(repo = %self.details, 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-05-11 19:46:20 +01:00
|
|
|
pub struct AdvanceMainTo(pub git::Commit);
|
2024-04-09 22:43:54 +01:00
|
|
|
impl Handler<AdvanceMainTo> for RepoActor {
|
|
|
|
type Result = ();
|
2024-05-09 20:39:04 +01:00
|
|
|
#[tracing::instrument(name = "RepoActor::AdvanceMainTo", skip_all, fields(repo = %self.details, 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-05-09 21:53:50 +01:00
|
|
|
let Some(repository) = self.repository.clone() else {
|
|
|
|
warn!("No repository opened");
|
|
|
|
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();
|
2024-05-09 21:53:50 +01:00
|
|
|
branch::advance_main(
|
|
|
|
msg.0,
|
|
|
|
repo_config,
|
|
|
|
forge,
|
|
|
|
repository,
|
|
|
|
addr,
|
|
|
|
self.message_token,
|
|
|
|
)
|
|
|
|
.in_current_span()
|
|
|
|
.into_actor(self)
|
|
|
|
.wait(ctx);
|
2024-04-09 22:43:54 +01:00
|
|
|
}
|
|
|
|
}
|