use crate::{ activities::verify_community_matches, objects::{community::ApubCommunity, person::ApubPerson}, protocol::{activities::CreateOrUpdateType, objects::page::Page, InCommunity}, }; use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one_or_many}; use lemmy_api_common::context::LemmyContext; use lemmy_utils::error::LemmyError; use serde::{Deserialize, Serialize}; use url::Url; #[derive(Clone, Debug, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct CreateOrUpdatePage { pub(crate) actor: ObjectId, #[serde(deserialize_with = "deserialize_one_or_many")] pub(crate) to: Vec, pub(crate) object: Page, #[serde(deserialize_with = "deserialize_one_or_many")] pub(crate) cc: Vec, #[serde(rename = "type")] pub(crate) kind: CreateOrUpdateType, pub(crate) id: Url, pub(crate) audience: Option>, } #[async_trait::async_trait(?Send)] impl InCommunity for CreateOrUpdatePage { async fn community( &self, context: &LemmyContext, request_counter: &mut i32, ) -> Result { let community = self.object.community(context, request_counter).await?; if let Some(audience) = &self.audience { verify_community_matches(audience, community.actor_id.clone())?; } Ok(community) } }