use crate::{ activities::verify_community_matches, fetcher::post_or_comment::PostOrComment, local_instance, mentions::MentionOrValue, objects::{comment::ApubComment, community::ApubCommunity, person::ApubPerson, post::ApubPost}, protocol::{objects::LanguageTag, InCommunity, Source}, }; use activitypub_federation::{ core::object_id::ObjectId, deser::{ helpers::{deserialize_one_or_many, deserialize_skip_error}, values::MediaTypeMarkdownOrHtml, }, }; use activitystreams_kinds::object::NoteType; use chrono::{DateTime, FixedOffset}; use lemmy_api_common::context::LemmyContext; use lemmy_db_schema::{ source::{community::Community, post::Post}, traits::Crud, }; use lemmy_utils::error::LemmyError; use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; use std::ops::Deref; use url::Url; #[skip_serializing_none] #[derive(Clone, Debug, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct Note { pub(crate) r#type: NoteType, pub(crate) id: ObjectId, pub(crate) attributed_to: ObjectId, #[serde(deserialize_with = "deserialize_one_or_many")] pub(crate) to: Vec, #[serde(deserialize_with = "deserialize_one_or_many", default)] pub(crate) cc: Vec, pub(crate) content: String, pub(crate) in_reply_to: ObjectId, pub(crate) media_type: Option, #[serde(deserialize_with = "deserialize_skip_error", default)] pub(crate) source: Option, pub(crate) published: Option>, pub(crate) updated: Option>, #[serde(default)] pub(crate) tag: Vec, // lemmy extension pub(crate) distinguished: Option, pub(crate) language: Option, pub(crate) audience: Option>, } impl Note { pub(crate) async fn get_parents( &self, context: &LemmyContext, request_counter: &mut i32, ) -> Result<(ApubPost, Option), LemmyError> { // Fetch parent comment chain in a box, otherwise it can cause a stack overflow. let parent = Box::pin( self .in_reply_to .dereference(context, local_instance(context).await, request_counter) .await?, ); match parent.deref() { PostOrComment::Post(p) => { let post = p.deref().clone(); Ok((post, None)) } PostOrComment::Comment(c) => { let post_id = c.post_id; let post = Post::read(context.pool(), post_id).await?; let comment = c.deref().clone(); Ok((post.into(), Some(comment))) } } } } #[async_trait::async_trait(?Send)] impl InCommunity for Note { async fn community( &self, context: &LemmyContext, request_counter: &mut i32, ) -> Result { let (post, _) = self.get_parents(context, request_counter).await?; let community_id = post.community_id; if let Some(audience) = &self.audience { let audience = audience .dereference(context, local_instance(context).await, request_counter) .await?; verify_community_matches(&audience, community_id)?; Ok(audience) } else { Ok(Community::read(context.pool(), community_id).await?.into()) } } }