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