use crate::{ activities::verify_community_matches, objects::{community::ApubCommunity, person::ApubPerson}, protocol::{activities::voting::vote::Vote, InCommunity}, }; use activitypub_federation::{config::Data, fetch::object_id::ObjectId, kinds::activity::UndoType}; 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 UndoVote { pub(crate) actor: ObjectId, pub(crate) object: Vote, #[serde(rename = "type")] pub(crate) kind: UndoType, pub(crate) id: Url, pub(crate) audience: Option>, } #[async_trait::async_trait] impl InCommunity for UndoVote { async fn community(&self, context: &Data) -> Result { let community = self.object.community(context).await?; if let Some(audience) = &self.audience { verify_community_matches(audience, community.actor_id.clone())?; } Ok(community) } }