]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/objects/note.rs
0aac5b854a469168a9e897880e3ebbb43b8888ca
[lemmy.git] / crates / apub / src / protocol / objects / note.rs
1 use crate::{
2   fetcher::post_or_comment::PostOrComment,
3   mentions::Mention,
4   objects::{comment::ApubComment, person::ApubPerson, post::ApubPost},
5   protocol::SourceCompat,
6 };
7 use activitystreams_kinds::object::NoteType;
8 use chrono::{DateTime, FixedOffset};
9 use lemmy_api_common::blocking;
10 use lemmy_apub_lib::{object_id::ObjectId, values::MediaTypeHtml};
11 use lemmy_db_schema::{newtypes::CommentId, source::post::Post, traits::Crud};
12 use lemmy_utils::LemmyError;
13 use lemmy_websocket::LemmyContext;
14 use serde::{Deserialize, Serialize};
15 use serde_with::skip_serializing_none;
16 use std::ops::Deref;
17 use url::Url;
18
19 #[skip_serializing_none]
20 #[derive(Clone, Debug, Deserialize, Serialize)]
21 #[serde(rename_all = "camelCase")]
22 pub struct Note {
23   pub(crate) r#type: NoteType,
24   pub(crate) id: ObjectId<ApubComment>,
25   pub(crate) attributed_to: ObjectId<ApubPerson>,
26   #[serde(deserialize_with = "crate::deserialize_one_or_many")]
27   pub(crate) to: Vec<Url>,
28   #[serde(default)]
29   #[serde(deserialize_with = "crate::deserialize_one_or_many")]
30   pub(crate) cc: Vec<Url>,
31   pub(crate) content: String,
32   pub(crate) in_reply_to: ObjectId<PostOrComment>,
33
34   pub(crate) media_type: Option<MediaTypeHtml>,
35   pub(crate) source: Option<SourceCompat>,
36   pub(crate) published: Option<DateTime<FixedOffset>>,
37   pub(crate) updated: Option<DateTime<FixedOffset>>,
38   #[serde(default)]
39   pub(crate) tag: Vec<Mention>,
40 }
41
42 impl Note {
43   pub(crate) async fn get_parents(
44     &self,
45     context: &LemmyContext,
46     request_counter: &mut i32,
47   ) -> Result<(ApubPost, Option<CommentId>), LemmyError> {
48     // Fetch parent comment chain in a box, otherwise it can cause a stack overflow.
49     let parent = Box::pin(
50       self
51         .in_reply_to
52         .dereference(context, context.client(), request_counter)
53         .await?,
54     );
55     match parent.deref() {
56       PostOrComment::Post(p) => {
57         // Workaround because I cant figure out how to get the post out of the box (and we dont
58         // want to stackoverflow in a deep comment hierarchy).
59         let post_id = p.id;
60         let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
61         Ok((post.into(), None))
62       }
63       PostOrComment::Comment(c) => {
64         let post_id = c.post_id;
65         let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
66         Ok((post.into(), Some(c.id)))
67       }
68     }
69   }
70 }