]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/activities/community/remove_mod.rs
Use audience field to federate items in groups (fixes #2464) (#2584)
[lemmy.git] / crates / apub / src / protocol / activities / community / remove_mod.rs
index 6fd20af4b22e5be596e135c2daa21457d4c79be5..2ee744b7fbed62aed2d9db0b3b520065889c49e3 100644 (file)
@@ -1,6 +1,13 @@
-use crate::objects::person::ApubPerson;
+use crate::{
+  activities::{community::get_community_from_moderators_url, verify_community_matches},
+  local_instance,
+  objects::{community::ApubCommunity, person::ApubPerson},
+  protocol::InCommunity,
+};
 use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one_or_many};
 use activitystreams_kinds::activity::RemoveType;
+use lemmy_utils::error::LemmyError;
+use lemmy_websocket::LemmyContext;
 use serde::{Deserialize, Serialize};
 use url::Url;
 
@@ -17,4 +24,26 @@ pub struct RemoveMod {
   pub(crate) kind: RemoveType,
   pub(crate) target: Url,
   pub(crate) id: Url,
+  pub(crate) audience: Option<ObjectId<ApubCommunity>>,
+}
+
+#[async_trait::async_trait(?Send)]
+impl InCommunity for RemoveMod {
+  async fn community(
+    &self,
+    context: &LemmyContext,
+    request_counter: &mut i32,
+  ) -> Result<ApubCommunity, LemmyError> {
+    let mod_community =
+      get_community_from_moderators_url(&self.target, context, request_counter).await?;
+    if let Some(audience) = &self.audience {
+      let audience = audience
+        .dereference(context, local_instance(context).await, request_counter)
+        .await?;
+      verify_community_matches(&audience, mod_community.id)?;
+      Ok(audience)
+    } else {
+      Ok(mod_community)
+    }
+  }
 }