]> Untitled Git - lemmy.git/blob - crates/db_schema/src/impls/comment.rs
Dont upsert Instance row every apub fetch (#2771)
[lemmy.git] / crates / db_schema / src / impls / comment.rs
1 use crate::{
2   newtypes::{CommentId, DbUrl, PersonId},
3   schema::comment::dsl::{ap_id, comment, content, creator_id, deleted, path, removed, updated},
4   source::comment::{
5     Comment,
6     CommentInsertForm,
7     CommentLike,
8     CommentLikeForm,
9     CommentSaved,
10     CommentSavedForm,
11     CommentUpdateForm,
12   },
13   traits::{Crud, DeleteableOrRemoveable, Likeable, Saveable},
14   utils::{get_conn, naive_now, DbPool},
15 };
16 use diesel::{
17   dsl::{insert_into, sql_query},
18   result::Error,
19   ExpressionMethods,
20   QueryDsl,
21 };
22 use diesel_async::RunQueryDsl;
23 use diesel_ltree::Ltree;
24 use url::Url;
25
26 impl Comment {
27   pub async fn permadelete_for_creator(
28     pool: &DbPool,
29     for_creator_id: PersonId,
30   ) -> Result<Vec<Self>, Error> {
31     let conn = &mut get_conn(pool).await?;
32     diesel::update(comment.filter(creator_id.eq(for_creator_id)))
33       .set((
34         content.eq("*Permananently Deleted*"),
35         deleted.eq(true),
36         updated.eq(naive_now()),
37       ))
38       .get_results::<Self>(conn)
39       .await
40   }
41
42   pub async fn update_removed_for_creator(
43     pool: &DbPool,
44     for_creator_id: PersonId,
45     new_removed: bool,
46   ) -> Result<Vec<Self>, Error> {
47     let conn = &mut get_conn(pool).await?;
48     diesel::update(comment.filter(creator_id.eq(for_creator_id)))
49       .set((removed.eq(new_removed), updated.eq(naive_now())))
50       .get_results::<Self>(conn)
51       .await
52   }
53
54   pub async fn create(
55     pool: &DbPool,
56     comment_form: &CommentInsertForm,
57     parent_path: Option<&Ltree>,
58   ) -> Result<Comment, Error> {
59     let conn = &mut get_conn(pool).await?;
60
61     // Insert, to get the id
62     let inserted_comment = insert_into(comment)
63       .values(comment_form)
64       .on_conflict(ap_id)
65       .do_update()
66       .set(comment_form)
67       .get_result::<Self>(conn)
68       .await;
69
70     if let Ok(comment_insert) = inserted_comment {
71       let comment_id = comment_insert.id;
72
73       // You need to update the ltree column
74       let ltree = Ltree(if let Some(parent_path) = parent_path {
75         // The previous parent will already have 0 in it
76         // Append this comment id
77         format!("{}.{}", parent_path.0, comment_id)
78       } else {
79         // '0' is always the first path, append to that
80         format!("{}.{}", 0, comment_id)
81       });
82
83       let updated_comment = diesel::update(comment.find(comment_id))
84         .set(path.eq(ltree))
85         .get_result::<Self>(conn)
86         .await;
87
88       // Update the child count for the parent comment_aggregates
89       // You could do this with a trigger, but since you have to do this manually anyway,
90       // you can just have it here
91       if let Some(parent_path) = parent_path {
92         // You have to update counts for all parents, not just the immediate one
93         // TODO if the performance of this is terrible, it might be better to do this as part of a
94         // scheduled query... although the counts would often be wrong.
95         //
96         // The child_count query for reference:
97         // select c.id, c.path, count(c2.id) as child_count from comment c
98         // left join comment c2 on c2.path <@ c.path and c2.path != c.path
99         // group by c.id
100
101         let path_split = parent_path.0.split('.').collect::<Vec<&str>>();
102         let parent_id = path_split.get(1);
103
104         if let Some(parent_id) = parent_id {
105           let top_parent = format!("0.{}", parent_id);
106           let update_child_count_stmt = format!(
107             "
108 update comment_aggregates ca set child_count = c.child_count
109 from (
110   select c.id, c.path, count(c2.id) as child_count from comment c
111   join comment c2 on c2.path <@ c.path and c2.path != c.path
112   and c.path <@ '{top_parent}'
113   group by c.id
114 ) as c
115 where ca.comment_id = c.id"
116           );
117
118           sql_query(update_child_count_stmt).execute(conn).await?;
119         }
120       }
121       updated_comment
122     } else {
123       inserted_comment
124     }
125   }
126   pub async fn read_from_apub_id(pool: &DbPool, object_id: Url) -> Result<Option<Self>, Error> {
127     let conn = &mut get_conn(pool).await?;
128     let object_id: DbUrl = object_id.into();
129     Ok(
130       comment
131         .filter(ap_id.eq(object_id))
132         .first::<Comment>(conn)
133         .await
134         .ok()
135         .map(Into::into),
136     )
137   }
138
139   pub fn parent_comment_id(&self) -> Option<CommentId> {
140     let mut ltree_split: Vec<&str> = self.path.0.split('.').collect();
141     ltree_split.remove(0); // The first is always 0
142     if ltree_split.len() > 1 {
143       let parent_comment_id = ltree_split.get(ltree_split.len() - 2);
144       parent_comment_id.and_then(|p| p.parse::<i32>().map(CommentId).ok())
145     } else {
146       None
147     }
148   }
149 }
150
151 #[async_trait]
152 impl Crud for Comment {
153   type InsertForm = CommentInsertForm;
154   type UpdateForm = CommentUpdateForm;
155   type IdType = CommentId;
156   async fn read(pool: &DbPool, comment_id: CommentId) -> Result<Self, Error> {
157     let conn = &mut get_conn(pool).await?;
158     comment.find(comment_id).first::<Self>(conn).await
159   }
160
161   async fn delete(pool: &DbPool, comment_id: CommentId) -> Result<usize, Error> {
162     let conn = &mut get_conn(pool).await?;
163     diesel::delete(comment.find(comment_id)).execute(conn).await
164   }
165
166   /// This is unimplemented, use [[Comment::create]]
167   async fn create(_pool: &DbPool, _comment_form: &Self::InsertForm) -> Result<Self, Error> {
168     unimplemented!();
169   }
170
171   async fn update(
172     pool: &DbPool,
173     comment_id: CommentId,
174     comment_form: &Self::UpdateForm,
175   ) -> Result<Self, Error> {
176     let conn = &mut get_conn(pool).await?;
177     diesel::update(comment.find(comment_id))
178       .set(comment_form)
179       .get_result::<Self>(conn)
180       .await
181   }
182 }
183
184 #[async_trait]
185 impl Likeable for CommentLike {
186   type Form = CommentLikeForm;
187   type IdType = CommentId;
188   async fn like(pool: &DbPool, comment_like_form: &CommentLikeForm) -> Result<Self, Error> {
189     use crate::schema::comment_like::dsl::{comment_id, comment_like, person_id};
190     let conn = &mut get_conn(pool).await?;
191     insert_into(comment_like)
192       .values(comment_like_form)
193       .on_conflict((comment_id, person_id))
194       .do_update()
195       .set(comment_like_form)
196       .get_result::<Self>(conn)
197       .await
198   }
199   async fn remove(
200     pool: &DbPool,
201     person_id_: PersonId,
202     comment_id_: CommentId,
203   ) -> Result<usize, Error> {
204     use crate::schema::comment_like::dsl::{comment_id, comment_like, person_id};
205     let conn = &mut get_conn(pool).await?;
206     diesel::delete(
207       comment_like
208         .filter(comment_id.eq(comment_id_))
209         .filter(person_id.eq(person_id_)),
210     )
211     .execute(conn)
212     .await
213   }
214 }
215
216 #[async_trait]
217 impl Saveable for CommentSaved {
218   type Form = CommentSavedForm;
219   async fn save(pool: &DbPool, comment_saved_form: &CommentSavedForm) -> Result<Self, Error> {
220     use crate::schema::comment_saved::dsl::{comment_id, comment_saved, person_id};
221     let conn = &mut get_conn(pool).await?;
222     insert_into(comment_saved)
223       .values(comment_saved_form)
224       .on_conflict((comment_id, person_id))
225       .do_update()
226       .set(comment_saved_form)
227       .get_result::<Self>(conn)
228       .await
229   }
230   async fn unsave(pool: &DbPool, comment_saved_form: &CommentSavedForm) -> Result<usize, Error> {
231     use crate::schema::comment_saved::dsl::{comment_id, comment_saved, person_id};
232     let conn = &mut get_conn(pool).await?;
233     diesel::delete(
234       comment_saved
235         .filter(comment_id.eq(comment_saved_form.comment_id))
236         .filter(person_id.eq(comment_saved_form.person_id)),
237     )
238     .execute(conn)
239     .await
240   }
241 }
242
243 impl DeleteableOrRemoveable for Comment {
244   fn blank_out_deleted_or_removed_info(mut self) -> Self {
245     self.content = String::new();
246     self
247   }
248 }
249
250 #[cfg(test)]
251 mod tests {
252   use crate::{
253     newtypes::LanguageId,
254     source::{
255       comment::{
256         Comment,
257         CommentInsertForm,
258         CommentLike,
259         CommentLikeForm,
260         CommentSaved,
261         CommentSavedForm,
262         CommentUpdateForm,
263       },
264       community::{Community, CommunityInsertForm},
265       instance::Instance,
266       person::{Person, PersonInsertForm},
267       post::{Post, PostInsertForm},
268     },
269     traits::{Crud, Likeable, Saveable},
270     utils::build_db_pool_for_tests,
271   };
272   use diesel_ltree::Ltree;
273   use serial_test::serial;
274
275   #[tokio::test]
276   #[serial]
277   async fn test_crud() {
278     let pool = &build_db_pool_for_tests().await;
279
280     let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
281       .await
282       .unwrap();
283
284     let new_person = PersonInsertForm::builder()
285       .name("terry".into())
286       .public_key("pubkey".to_string())
287       .instance_id(inserted_instance.id)
288       .build();
289
290     let inserted_person = Person::create(pool, &new_person).await.unwrap();
291
292     let new_community = CommunityInsertForm::builder()
293       .name("test community".to_string())
294       .title("nada".to_owned())
295       .public_key("pubkey".to_string())
296       .instance_id(inserted_instance.id)
297       .build();
298
299     let inserted_community = Community::create(pool, &new_community).await.unwrap();
300
301     let new_post = PostInsertForm::builder()
302       .name("A test post".into())
303       .creator_id(inserted_person.id)
304       .community_id(inserted_community.id)
305       .build();
306
307     let inserted_post = Post::create(pool, &new_post).await.unwrap();
308
309     let comment_form = CommentInsertForm::builder()
310       .content("A test comment".into())
311       .creator_id(inserted_person.id)
312       .post_id(inserted_post.id)
313       .build();
314
315     let inserted_comment = Comment::create(pool, &comment_form, None).await.unwrap();
316
317     let expected_comment = Comment {
318       id: inserted_comment.id,
319       content: "A test comment".into(),
320       creator_id: inserted_person.id,
321       post_id: inserted_post.id,
322       removed: false,
323       deleted: false,
324       path: Ltree(format!("0.{}", inserted_comment.id)),
325       published: inserted_comment.published,
326       updated: None,
327       ap_id: inserted_comment.ap_id.clone(),
328       distinguished: false,
329       local: true,
330       language_id: LanguageId::default(),
331     };
332
333     let child_comment_form = CommentInsertForm::builder()
334       .content("A child comment".into())
335       .creator_id(inserted_person.id)
336       .post_id(inserted_post.id)
337       .build();
338
339     let inserted_child_comment =
340       Comment::create(pool, &child_comment_form, Some(&inserted_comment.path))
341         .await
342         .unwrap();
343
344     // Comment Like
345     let comment_like_form = CommentLikeForm {
346       comment_id: inserted_comment.id,
347       post_id: inserted_post.id,
348       person_id: inserted_person.id,
349       score: 1,
350     };
351
352     let inserted_comment_like = CommentLike::like(pool, &comment_like_form).await.unwrap();
353
354     let expected_comment_like = CommentLike {
355       id: inserted_comment_like.id,
356       comment_id: inserted_comment.id,
357       post_id: inserted_post.id,
358       person_id: inserted_person.id,
359       published: inserted_comment_like.published,
360       score: 1,
361     };
362
363     // Comment Saved
364     let comment_saved_form = CommentSavedForm {
365       comment_id: inserted_comment.id,
366       person_id: inserted_person.id,
367     };
368
369     let inserted_comment_saved = CommentSaved::save(pool, &comment_saved_form).await.unwrap();
370
371     let expected_comment_saved = CommentSaved {
372       id: inserted_comment_saved.id,
373       comment_id: inserted_comment.id,
374       person_id: inserted_person.id,
375       published: inserted_comment_saved.published,
376     };
377
378     let comment_update_form = CommentUpdateForm::builder()
379       .content(Some("A test comment".into()))
380       .build();
381
382     let updated_comment = Comment::update(pool, inserted_comment.id, &comment_update_form)
383       .await
384       .unwrap();
385
386     let read_comment = Comment::read(pool, inserted_comment.id).await.unwrap();
387     let like_removed = CommentLike::remove(pool, inserted_person.id, inserted_comment.id)
388       .await
389       .unwrap();
390     let saved_removed = CommentSaved::unsave(pool, &comment_saved_form)
391       .await
392       .unwrap();
393     let num_deleted = Comment::delete(pool, inserted_comment.id).await.unwrap();
394     Comment::delete(pool, inserted_child_comment.id)
395       .await
396       .unwrap();
397     Post::delete(pool, inserted_post.id).await.unwrap();
398     Community::delete(pool, inserted_community.id)
399       .await
400       .unwrap();
401     Person::delete(pool, inserted_person.id).await.unwrap();
402     Instance::delete(pool, inserted_instance.id).await.unwrap();
403
404     assert_eq!(expected_comment, read_comment);
405     assert_eq!(expected_comment, inserted_comment);
406     assert_eq!(expected_comment, updated_comment);
407     assert_eq!(expected_comment_like, inserted_comment_like);
408     assert_eq!(expected_comment_saved, inserted_comment_saved);
409     assert_eq!(
410       format!("0.{}.{}", expected_comment.id, inserted_child_comment.id),
411       inserted_child_comment.path.0,
412     );
413     assert_eq!(1, like_removed);
414     assert_eq!(1, saved_removed);
415     assert_eq!(1, num_deleted);
416   }
417 }