feat: emit OutboundFollowAccepted when remote accepts our follow

v0.4.2 — consumers can now react to outbound follow acceptance
(e.g. import_remote_outbox to backfill). Previously the accept
handler silently updated the DB with no event for consumers.
This commit is contained in:
2026-07-10 16:59:46 +02:00
parent 9355f20616
commit f461f633b3
5 changed files with 37 additions and 4 deletions

View File

@@ -1,5 +1,13 @@
# Changelog
## [0.4.2] — 2026-07-10
### New features
- `FederationEvent::OutboundFollowAccepted { local_user_id, remote_actor_url, outbox_url }` — emitted when a remote actor accepts our outbound follow request. Consumers should call `import_remote_outbox(outbox_url, actor_url)` to backfill the remote user's content. Without this event, outbound follow acceptance was silent and consumers had no hook to trigger backfill.
---
## [0.4.1] — 2026-06-30
### Bug fixes

2
Cargo.lock generated
View File

@@ -1368,7 +1368,7 @@ dependencies = [
[[package]]
name = "k-ap"
version = "0.4.0"
version = "0.4.2"
dependencies = [
"activitypub_federation",
"anyhow",

View File

@@ -1,6 +1,6 @@
[package]
name = "k-ap"
version = "0.4.1"
version = "0.4.2"
edition = "2024"
description = "Generic ActivityPub protocol layer"
license = "MIT"

View File

@@ -49,14 +49,32 @@ impl Activity for AcceptActivity {
}
let local_user_id = crate::urls::extract_user_id_from_url(self.object.actor.inner())
.ok_or_else(|| Error::bad_request(anyhow::anyhow!("invalid actor URL in Follow")))?;
let remote_actor_url = self.actor.inner().as_str().to_string();
data.follow_repo
.update_following_status(
local_user_id,
self.actor.inner().as_str(),
&remote_actor_url,
FollowingStatus::Accepted,
)
.await?;
tracing::info!(remote_actor = %self.actor.inner(), "follow accepted by remote");
tracing::info!(remote_actor = %remote_actor_url, "follow accepted by remote");
if let Some(publisher) = &data.event_publisher {
let outbox_url = data
.actor_repo
.get_remote_actor(&remote_actor_url)
.await
.ok()
.flatten()
.and_then(|a| a.outbox_url);
let _ = publisher
.publish(crate::data::FederationEvent::OutboundFollowAccepted {
local_user_id,
remote_actor_url,
outbox_url,
})
.await;
}
Ok(())
}
}

View File

@@ -41,6 +41,13 @@ pub enum FederationEvent {
owner_user_id: uuid::Uuid,
follower_inbox_url: String,
},
/// A remote actor accepted our outbound follow request.
/// Call `ActivityPubService::import_remote_outbox(outbox_url, actor_url)` to backfill.
OutboundFollowAccepted {
local_user_id: uuid::Uuid,
remote_actor_url: String,
outbox_url: Option<String>,
},
}
/// Receives typed federation events.