]> Untitled Git - lemmy.git/blob - crates/apub/src/objects/comment.rs
Change to_apub and from_apub to take by value and avoid cloning
[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 into_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.clone()),
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 creator = note
143       .attributed_to
144       .dereference(context, request_counter)
145       .await?;
146     let (post, parent_comment_id) = note.get_parents(context, request_counter).await?;
147     let community_id = post.community_id;
148     let community = blocking(context.pool(), move |conn| {
149       Community::read(conn, community_id)
150     })
151     .await??;
152     check_is_apub_id_valid(note.id.inner(), community.local, &context.settings())?;
153     verify_person_in_community(
154       &note.attributed_to,
155       &community.into(),
156       context,
157       request_counter,
158     )
159     .await?;
160     if post.locked {
161       return Err(anyhow!("Post is locked").into());
162     }
163
164     let content = if let SourceCompat::Lemmy(source) = &note.source {
165       source.content.clone()
166     } else {
167       parse_html(&note.content)
168     };
169     let content_slurs_removed = remove_slurs(&content, &context.settings().slur_regex());
170
171     let form = CommentForm {
172       creator_id: creator.id,
173       post_id: post.id,
174       parent_id: parent_comment_id,
175       content: content_slurs_removed,
176       removed: None,
177       read: None,
178       published: note.published.map(|u| u.naive_local()),
179       updated: note.updated.map(|u| u.naive_local()),
180       deleted: None,
181       ap_id: Some(note.id.into()),
182       local: Some(false),
183     };
184     let comment = blocking(context.pool(), move |conn| Comment::upsert(conn, &form)).await??;
185     Ok(comment.into())
186   }
187 }
188
189 #[cfg(test)]
190 pub(crate) mod tests {
191   use super::*;
192   use crate::objects::{
193     community::{tests::parse_lemmy_community, ApubCommunity},
194     person::{tests::parse_lemmy_person, ApubPerson},
195     post::ApubPost,
196     tests::{file_to_json_object, init_context},
197   };
198   use assert_json_diff::assert_json_include;
199   use serial_test::serial;
200
201   async fn prepare_comment_test(
202     url: &Url,
203     context: &LemmyContext,
204   ) -> (ApubPerson, ApubCommunity, ApubPost) {
205     let person = parse_lemmy_person(context).await;
206     let community = parse_lemmy_community(context).await;
207     let post_json = file_to_json_object("assets/lemmy/objects/page.json");
208     let post = ApubPost::from_apub(post_json, context, url, &mut 0)
209       .await
210       .unwrap();
211     (person, community, post)
212   }
213
214   fn cleanup(data: (ApubPerson, ApubCommunity, ApubPost), context: &LemmyContext) {
215     Post::delete(&*context.pool().get().unwrap(), data.2.id).unwrap();
216     Community::delete(&*context.pool().get().unwrap(), data.1.id).unwrap();
217     Person::delete(&*context.pool().get().unwrap(), data.0.id).unwrap();
218   }
219
220   #[actix_rt::test]
221   #[serial]
222   pub(crate) async fn test_parse_lemmy_comment() {
223     let context = init_context();
224     let url = Url::parse("https://enterprise.lemmy.ml/comment/38741").unwrap();
225     let data = prepare_comment_test(&url, &context).await;
226
227     let json: Note = file_to_json_object("assets/lemmy/objects/note.json");
228     let mut request_counter = 0;
229     let comment = ApubComment::from_apub(json.clone(), &context, &url, &mut request_counter)
230       .await
231       .unwrap();
232
233     assert_eq!(comment.ap_id, url.into());
234     assert_eq!(comment.content.len(), 14);
235     assert!(!comment.local);
236     assert_eq!(request_counter, 0);
237
238     let comment_id = comment.id;
239     let to_apub = comment.into_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 }