feat: add FollowBackfillHandler to worker

This commit is contained in:
2026-05-13 01:34:04 +02:00
parent e92c6789d9
commit 20e70325c6
3 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
use std::sync::Arc;
use async_trait::async_trait;
use domain::{errors::DomainError, events::DomainEvent, ports::EventHandler};
pub struct FollowBackfillHandler {
pub ap_service: Arc<dyn activitypub::ActivityPubPort>,
}
#[async_trait]
impl EventHandler for FollowBackfillHandler {
async fn handle(&self, event: &DomainEvent) -> Result<(), DomainError> {
let DomainEvent::FollowAccepted { remote_actor_url, outbox_url, .. } = event else {
return Ok(());
};
tracing::info!(actor = %remote_actor_url, outbox = %outbox_url, "starting outbox backfill");
self.ap_service
.backfill_outbox(outbox_url, remote_actor_url)
.await
.map_err(|e| DomainError::InfrastructureError(e.to_string()))
}
}