use crate::{ activities::verify_community_matches, fetcher::post_or_comment::PostOrComment, objects::{community::ApubCommunity, person::ApubPerson}, protocol::InCommunity, }; use activitypub_federation::{ config::Data, fetch::object_id::ObjectId, kinds::activity::FlagType, protocol::helpers::deserialize_one, }; use lemmy_api_common::context::LemmyContext; use lemmy_utils::error::{LemmyError, LemmyErrorType, LemmyResult}; use serde::{Deserialize, Serialize}; use url::Url; #[derive(Clone, Debug, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct Report { pub(crate) actor: ObjectId, #[serde(deserialize_with = "deserialize_one")] pub(crate) to: [ObjectId; 1], pub(crate) object: ReportObject, /// Report reason as sent by Lemmy pub(crate) summary: Option, /// Report reason as sent by Mastodon pub(crate) content: Option, #[serde(rename = "type")] pub(crate) kind: FlagType, pub(crate) id: Url, pub(crate) audience: Option>, } impl Report { pub fn reason(&self) -> LemmyResult { self .summary .clone() .or(self.content.clone()) .ok_or(LemmyErrorType::CouldntFindObject.into()) } } #[derive(Clone, Debug, Deserialize, Serialize)] #[serde(untagged)] pub(crate) enum ReportObject { Lemmy(ObjectId), /// Mastodon sends an array containing user id and one or more post ids Mastodon(Vec), } impl ReportObject { pub async fn dereference(self, context: &Data) -> LemmyResult { match self { ReportObject::Lemmy(l) => l.dereference(context).await, ReportObject::Mastodon(objects) => { for o in objects { // Find the first reported item which can be dereferenced as post or comment (Lemmy can // only handle one item per report). let deref = ObjectId::from(o).dereference(context).await; if deref.is_ok() { return deref; } } Err(LemmyErrorType::CouldntFindObject.into()) } } } } #[async_trait::async_trait] impl InCommunity for Report { async fn community(&self, context: &Data) -> Result { let community = self.to[0].dereference(context).await?; if let Some(audience) = &self.audience { verify_community_matches(audience, community.actor_id.clone())?; } Ok(community) } }