]> Untitled Git - lemmy.git/blob - crates/apub/src/objects/comment.rs
Move ObjectId to library
[lemmy.git] / crates / apub / src / objects / comment.rs
1 use crate::{
2   activities::verify_person_in_community,
3   check_is_apub_id_valid,
4   protocol::{
5     objects::{
6       note::{Note, SourceCompat},
7       tombstone::Tombstone,
8     },
9     Source,
10   },
11   PostOrComment,
12 };
13 use activitystreams::{object::kind::NoteType, public};
14 use anyhow::anyhow;
15 use chrono::NaiveDateTime;
16 use html2md::parse_html;
17 use lemmy_api_common::blocking;
18 use lemmy_apub_lib::{
19   object_id::ObjectId,
20   traits::ApubObject,
21   values::{MediaTypeHtml, MediaTypeMarkdown},
22   verify::verify_domains_match,
23 };
24 use lemmy_db_schema::{
25   source::{
26     comment::{Comment, CommentForm},
27     community::Community,
28     person::Person,
29     post::Post,
30   },
31   traits::Crud,
32 };
33 use lemmy_utils::{
34   utils::{convert_datetime, markdown_to_html, remove_slurs},
35   LemmyError,
36 };
37 use lemmy_websocket::LemmyContext;
38 use std::ops::Deref;
39 use url::Url;
40
41 #[derive(Clone, Debug)]
42 pub struct ApubComment(Comment);
43
44 impl Deref for ApubComment {
45   type Target = Comment;
46   fn deref(&self) -> &Self::Target {
47     &self.0
48   }
49 }
50
51 impl From<Comment> for ApubComment {
52   fn from(c: Comment) -> Self {
53     ApubComment { 0: c }
54   }
55 }
56
57 #[async_trait::async_trait(?Send)]
58 impl ApubObject for ApubComment {
59   type DataType = LemmyContext;
60   type ApubType = Note;
61   type TombstoneType = Tombstone;
62
63   fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
64     None
65   }
66
67   async fn read_from_apub_id(
68     object_id: Url,
69     context: &LemmyContext,
70   ) -> Result<Option<Self>, LemmyError> {
71     Ok(
72       blocking(context.pool(), move |conn| {
73         Comment::read_from_apub_id(conn, object_id)
74       })
75       .await??
76       .map(Into::into),
77     )
78   }
79
80   async fn delete(self, context: &LemmyContext) -> Result<(), LemmyError> {
81     if !self.deleted {
82       blocking(context.pool(), move |conn| {
83         Comment::update_deleted(conn, self.id, true)
84       })
85       .await??;
86     }
87     Ok(())
88   }
89
90   async fn to_apub(&self, context: &LemmyContext) -> Result<Note, LemmyError> {
91     let creator_id = self.creator_id;
92     let creator = blocking(context.pool(), move |conn| Person::read(conn, creator_id)).await??;
93
94     let post_id = self.post_id;
95     let post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
96
97     let in_reply_to = if let Some(comment_id) = self.parent_id {
98       let parent_comment =
99         blocking(context.pool(), move |conn| Comment::read(conn, comment_id)).await??;
100       ObjectId::<PostOrComment>::new(parent_comment.ap_id)
101     } else {
102       ObjectId::<PostOrComment>::new(post.ap_id)
103     };
104
105     let note = Note {
106       r#type: NoteType::Note,
107       id: ObjectId::new(self.ap_id.to_owned()),
108       attributed_to: ObjectId::new(creator.actor_id),
109       to: vec![public()],
110       content: markdown_to_html(&self.content),
111       media_type: Some(MediaTypeHtml::Html),
112       source: SourceCompat::Lemmy(Source {
113         content: self.content.clone(),
114         media_type: MediaTypeMarkdown::Markdown,
115       }),
116       in_reply_to,
117       published: Some(convert_datetime(self.published)),
118       updated: self.updated.map(convert_datetime),
119       unparsed: Default::default(),
120     };
121
122     Ok(note)
123   }
124
125   fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
126     Ok(Tombstone::new(
127       NoteType::Note,
128       self.updated.unwrap_or(self.published),
129     ))
130   }
131
132   /// Converts a `Note` to `Comment`.
133   ///
134   /// If the parent community, post and comment(s) are not known locally, these are also fetched.
135   async fn from_apub(
136     note: &Note,
137     context: &LemmyContext,
138     expected_domain: &Url,
139     request_counter: &mut i32,
140   ) -> Result<ApubComment, LemmyError> {
141     verify_domains_match(note.id.inner(), expected_domain)?;
142     let ap_id = Some(note.id.clone().into());
143     let creator = note
144       .attributed_to
145       .dereference(context, request_counter)
146       .await?;
147     let (post, parent_comment_id) = note.get_parents(context, request_counter).await?;
148     let community_id = post.community_id;
149     let community = blocking(context.pool(), move |conn| {
150       Community::read(conn, community_id)
151     })
152     .await??;
153     check_is_apub_id_valid(note.id.inner(), community.local, &context.settings())?;
154     verify_person_in_community(
155       &note.attributed_to,
156       &community.into(),
157       context,
158       request_counter,
159     )
160     .await?;
161     if post.locked {
162       return Err(anyhow!("Post is locked").into());
163     }
164
165     let content = if let SourceCompat::Lemmy(source) = &note.source {
166       source.content.clone()
167     } else {
168       parse_html(&note.content)
169     };
170     let content_slurs_removed = remove_slurs(&content, &context.settings().slur_regex());
171
172     let form = CommentForm {
173       creator_id: creator.id,
174       post_id: post.id,
175       parent_id: parent_comment_id,
176       content: content_slurs_removed,
177       removed: None,
178       read: None,
179       published: note.published.map(|u| u.to_owned().naive_local()),
180       updated: note.updated.map(|u| u.to_owned().naive_local()),
181       deleted: None,
182       ap_id,
183       local: Some(false),
184     };
185     let comment = blocking(context.pool(), move |conn| Comment::upsert(conn, &form)).await??;
186     Ok(comment.into())
187   }
188 }
189
190 #[cfg(test)]
191 pub(crate) mod tests {
192   use super::*;
193   use crate::objects::{
194     community::{tests::parse_lemmy_community, ApubCommunity},
195     person::{tests::parse_lemmy_person, ApubPerson},
196     post::ApubPost,
197     tests::{file_to_json_object, init_context},
198   };
199   use assert_json_diff::assert_json_include;
200   use serial_test::serial;
201
202   async fn prepare_comment_test(
203     url: &Url,
204     context: &LemmyContext,
205   ) -> (ApubPerson, ApubCommunity, ApubPost) {
206     let person = parse_lemmy_person(context).await;
207     let community = parse_lemmy_community(context).await;
208     let post_json = file_to_json_object("assets/lemmy/objects/page.json");
209     let post = ApubPost::from_apub(&post_json, context, url, &mut 0)
210       .await
211       .unwrap();
212     (person, community, post)
213   }
214
215   fn cleanup(data: (ApubPerson, ApubCommunity, ApubPost), context: &LemmyContext) {
216     Post::delete(&*context.pool().get().unwrap(), data.2.id).unwrap();
217     Community::delete(&*context.pool().get().unwrap(), data.1.id).unwrap();
218     Person::delete(&*context.pool().get().unwrap(), data.0.id).unwrap();
219   }
220
221   #[actix_rt::test]
222   #[serial]
223   pub(crate) async fn test_parse_lemmy_comment() {
224     let context = init_context();
225     let url = Url::parse("https://enterprise.lemmy.ml/comment/38741").unwrap();
226     let data = prepare_comment_test(&url, &context).await;
227
228     let json = file_to_json_object("assets/lemmy/objects/note.json");
229     let mut request_counter = 0;
230     let comment = ApubComment::from_apub(&json, &context, &url, &mut request_counter)
231       .await
232       .unwrap();
233
234     assert_eq!(comment.ap_id, url.into());
235     assert_eq!(comment.content.len(), 14);
236     assert!(!comment.local);
237     assert_eq!(request_counter, 0);
238
239     let to_apub = comment.to_apub(&context).await.unwrap();
240     assert_json_include!(actual: json, expected: to_apub);
241
242     Comment::delete(&*context.pool().get().unwrap(), comment.id).unwrap();
243     cleanup(data, &context);
244   }
245
246   #[actix_rt::test]
247   #[serial]
248   async fn test_parse_pleroma_comment() {
249     let context = init_context();
250     let url = Url::parse("https://enterprise.lemmy.ml/comment/38741").unwrap();
251     let data = prepare_comment_test(&url, &context).await;
252
253     let pleroma_url =
254       Url::parse("https://queer.hacktivis.me/objects/8d4973f4-53de-49cd-8c27-df160e16a9c2")
255         .unwrap();
256     let person_json = file_to_json_object("assets/pleroma/objects/person.json");
257     ApubPerson::from_apub(&person_json, &context, &pleroma_url, &mut 0)
258       .await
259       .unwrap();
260     let json = file_to_json_object("assets/pleroma/objects/note.json");
261     let mut request_counter = 0;
262     let comment = ApubComment::from_apub(&json, &context, &pleroma_url, &mut request_counter)
263       .await
264       .unwrap();
265
266     assert_eq!(comment.ap_id, pleroma_url.into());
267     assert_eq!(comment.content.len(), 64);
268     assert!(!comment.local);
269     assert_eq!(request_counter, 0);
270
271     Comment::delete(&*context.pool().get().unwrap(), comment.id).unwrap();
272     cleanup(data, &context);
273   }
274
275   #[actix_rt::test]
276   #[serial]
277   async fn test_html_to_markdown_sanitize() {
278     let parsed = parse_html("<script></script><b>hello</b>");
279     assert_eq!(parsed, "**hello**");
280   }
281 }