]> Untitled Git - lemmy.git/blob - crates/db_views/src/comment_view.rs
Make sure comments are sorted by hot_rank, then score. (#3667)
[lemmy.git] / crates / db_views / src / comment_view.rs
1 use crate::structs::{CommentView, LocalUserView};
2 use diesel::{
3   result::Error,
4   BoolExpressionMethods,
5   ExpressionMethods,
6   JoinOnDsl,
7   NullableExpressionMethods,
8   PgTextExpressionMethods,
9   QueryDsl,
10 };
11 use diesel_async::RunQueryDsl;
12 use diesel_ltree::{nlevel, subpath, Ltree, LtreeExtensions};
13 use lemmy_db_schema::{
14   aggregates::structs::CommentAggregates,
15   newtypes::{CommentId, CommunityId, LocalUserId, PersonId, PostId},
16   schema::{
17     comment,
18     comment_aggregates,
19     comment_like,
20     comment_saved,
21     community,
22     community_block,
23     community_follower,
24     community_person_ban,
25     local_user_language,
26     person,
27     person_block,
28     post,
29   },
30   source::{
31     comment::{Comment, CommentSaved},
32     community::{Community, CommunityFollower, CommunityPersonBan},
33     person::Person,
34     person_block::PersonBlock,
35     post::Post,
36   },
37   traits::JoinView,
38   utils::{fuzzy_search, get_conn, limit_and_offset, DbPool},
39   CommentSortType,
40   ListingType,
41 };
42
43 type CommentViewTuple = (
44   Comment,
45   Person,
46   Post,
47   Community,
48   CommentAggregates,
49   Option<CommunityPersonBan>,
50   Option<CommunityFollower>,
51   Option<CommentSaved>,
52   Option<PersonBlock>,
53   Option<i16>,
54 );
55
56 impl CommentView {
57   pub async fn read(
58     pool: &mut DbPool<'_>,
59     comment_id: CommentId,
60     my_person_id: Option<PersonId>,
61   ) -> Result<Self, Error> {
62     let conn = &mut get_conn(pool).await?;
63
64     // The left join below will return None in this case
65     let person_id_join = my_person_id.unwrap_or(PersonId(-1));
66
67     let (
68       comment,
69       creator,
70       post,
71       community,
72       counts,
73       creator_banned_from_community,
74       follower,
75       saved,
76       creator_blocked,
77       comment_like,
78     ) = comment::table
79       .find(comment_id)
80       .inner_join(person::table)
81       .inner_join(post::table)
82       .inner_join(community::table.on(post::community_id.eq(community::id)))
83       .inner_join(comment_aggregates::table)
84       .left_join(
85         community_person_ban::table.on(
86           community::id
87             .eq(community_person_ban::community_id)
88             .and(community_person_ban::person_id.eq(comment::creator_id)),
89         ),
90       )
91       .left_join(
92         community_follower::table.on(
93           post::community_id
94             .eq(community_follower::community_id)
95             .and(community_follower::person_id.eq(person_id_join)),
96         ),
97       )
98       .left_join(
99         comment_saved::table.on(
100           comment::id
101             .eq(comment_saved::comment_id)
102             .and(comment_saved::person_id.eq(person_id_join)),
103         ),
104       )
105       .left_join(
106         person_block::table.on(
107           comment::creator_id
108             .eq(person_block::target_id)
109             .and(person_block::person_id.eq(person_id_join)),
110         ),
111       )
112       .left_join(
113         comment_like::table.on(
114           comment::id
115             .eq(comment_like::comment_id)
116             .and(comment_like::person_id.eq(person_id_join)),
117         ),
118       )
119       .select((
120         comment::all_columns,
121         person::all_columns,
122         post::all_columns,
123         community::all_columns,
124         comment_aggregates::all_columns,
125         community_person_ban::all_columns.nullable(),
126         community_follower::all_columns.nullable(),
127         comment_saved::all_columns.nullable(),
128         person_block::all_columns.nullable(),
129         comment_like::score.nullable(),
130       ))
131       .first::<CommentViewTuple>(conn)
132       .await?;
133
134     // If a person is given, then my_vote, if None, should be 0, not null
135     // Necessary to differentiate between other person's votes
136     let my_vote = if my_person_id.is_some() && comment_like.is_none() {
137       Some(0)
138     } else {
139       comment_like
140     };
141
142     Ok(CommentView {
143       comment,
144       post,
145       creator,
146       community,
147       counts,
148       creator_banned_from_community: creator_banned_from_community.is_some(),
149       subscribed: CommunityFollower::to_subscribed_type(&follower),
150       saved: saved.is_some(),
151       creator_blocked: creator_blocked.is_some(),
152       my_vote,
153     })
154   }
155 }
156
157 #[derive(Default)]
158 pub struct CommentQuery<'a> {
159   pub listing_type: Option<ListingType>,
160   pub sort: Option<CommentSortType>,
161   pub community_id: Option<CommunityId>,
162   pub post_id: Option<PostId>,
163   pub parent_path: Option<Ltree>,
164   pub creator_id: Option<PersonId>,
165   pub local_user: Option<&'a LocalUserView>,
166   pub search_term: Option<String>,
167   pub saved_only: Option<bool>,
168   pub is_profile_view: Option<bool>,
169   pub show_deleted_and_removed: Option<bool>,
170   pub page: Option<i64>,
171   pub limit: Option<i64>,
172   pub max_depth: Option<i32>,
173 }
174
175 impl<'a> CommentQuery<'a> {
176   pub async fn list(self, pool: &mut DbPool<'_>) -> Result<Vec<CommentView>, Error> {
177     let conn = &mut get_conn(pool).await?;
178
179     // The left join below will return None in this case
180     let person_id_join = self.local_user.map(|l| l.person.id).unwrap_or(PersonId(-1));
181     let local_user_id_join = self
182       .local_user
183       .map(|l| l.local_user.id)
184       .unwrap_or(LocalUserId(-1));
185
186     let mut query = comment::table
187       .inner_join(person::table)
188       .inner_join(post::table)
189       .inner_join(community::table.on(post::community_id.eq(community::id)))
190       .inner_join(comment_aggregates::table)
191       .left_join(
192         community_person_ban::table.on(
193           community::id
194             .eq(community_person_ban::community_id)
195             .and(community_person_ban::person_id.eq(comment::creator_id)),
196         ),
197       )
198       .left_join(
199         community_follower::table.on(
200           post::community_id
201             .eq(community_follower::community_id)
202             .and(community_follower::person_id.eq(person_id_join)),
203         ),
204       )
205       .left_join(
206         comment_saved::table.on(
207           comment::id
208             .eq(comment_saved::comment_id)
209             .and(comment_saved::person_id.eq(person_id_join)),
210         ),
211       )
212       .left_join(
213         person_block::table.on(
214           comment::creator_id
215             .eq(person_block::target_id)
216             .and(person_block::person_id.eq(person_id_join)),
217         ),
218       )
219       .left_join(
220         community_block::table.on(
221           community::id
222             .eq(community_block::community_id)
223             .and(community_block::person_id.eq(person_id_join)),
224         ),
225       )
226       .left_join(
227         comment_like::table.on(
228           comment::id
229             .eq(comment_like::comment_id)
230             .and(comment_like::person_id.eq(person_id_join)),
231         ),
232       )
233       .left_join(
234         local_user_language::table.on(
235           comment::language_id
236             .eq(local_user_language::language_id)
237             .and(local_user_language::local_user_id.eq(local_user_id_join)),
238         ),
239       )
240       .select((
241         comment::all_columns,
242         person::all_columns,
243         post::all_columns,
244         community::all_columns,
245         comment_aggregates::all_columns,
246         community_person_ban::all_columns.nullable(),
247         community_follower::all_columns.nullable(),
248         comment_saved::all_columns.nullable(),
249         person_block::all_columns.nullable(),
250         comment_like::score.nullable(),
251       ))
252       .into_boxed();
253
254     if let Some(creator_id) = self.creator_id {
255       query = query.filter(comment::creator_id.eq(creator_id));
256     };
257
258     if let Some(post_id) = self.post_id {
259       query = query.filter(comment::post_id.eq(post_id));
260     };
261
262     if let Some(parent_path) = self.parent_path.as_ref() {
263       query = query.filter(comment::path.contained_by(parent_path));
264     };
265
266     if let Some(search_term) = self.search_term {
267       query = query.filter(comment::content.ilike(fuzzy_search(&search_term)));
268     };
269
270     if let Some(community_id) = self.community_id {
271       query = query.filter(post::community_id.eq(community_id));
272     }
273
274     if let Some(listing_type) = self.listing_type {
275       match listing_type {
276         ListingType::Subscribed => {
277           query = query.filter(community_follower::person_id.is_not_null())
278         } // TODO could be this: and(community_follower::person_id.eq(person_id_join)),
279         ListingType::Local => {
280           query = query.filter(community::local.eq(true)).filter(
281             community::hidden
282               .eq(false)
283               .or(community_follower::person_id.eq(person_id_join)),
284           )
285         }
286         ListingType::All => {
287           query = query.filter(
288             community::hidden
289               .eq(false)
290               .or(community_follower::person_id.eq(person_id_join)),
291           )
292         }
293       }
294     }
295
296     if self.saved_only.unwrap_or(false) {
297       query = query.filter(comment_saved::comment_id.is_not_null());
298     }
299
300     let is_profile_view = self.is_profile_view.unwrap_or(false);
301     let is_creator = self.creator_id == self.local_user.map(|l| l.person.id);
302     // only show deleted comments to creator
303     if !is_creator {
304       query = query.filter(comment::deleted.eq(false));
305     }
306
307     let is_admin = self.local_user.map(|l| l.person.admin).unwrap_or(false);
308     // only show removed comments to admin when viewing user profile
309     if !(is_profile_view && is_admin) {
310       query = query.filter(comment::removed.eq(false));
311     }
312
313     if !self
314       .local_user
315       .map(|l| l.local_user.show_bot_accounts)
316       .unwrap_or(true)
317     {
318       query = query.filter(person::bot_account.eq(false));
319     };
320
321     if self.local_user.is_some() {
322       // Filter out the rows with missing languages
323       query = query.filter(local_user_language::language_id.is_not_null());
324
325       // Don't show blocked communities or persons
326       if self.post_id.is_none() {
327         query = query.filter(community_block::person_id.is_null());
328       }
329       query = query.filter(person_block::person_id.is_null());
330     }
331
332     // A Max depth given means its a tree fetch
333     let (limit, offset) = if let Some(max_depth) = self.max_depth {
334       let depth_limit = if let Some(parent_path) = self.parent_path.as_ref() {
335         parent_path.0.split('.').count() as i32 + max_depth
336         // Add one because of root "0"
337       } else {
338         max_depth + 1
339       };
340
341       query = query.filter(nlevel(comment::path).le(depth_limit));
342
343       // Always order by the parent path first
344       query = query.order_by(subpath(comment::path, 0, -1));
345
346       // TODO limit question. Limiting does not work for comment threads ATM, only max_depth
347       // For now, don't do any limiting for tree fetches
348       // https://stackoverflow.com/questions/72983614/postgres-ltree-how-to-limit-the-max-number-of-children-at-any-given-level
349
350       // Don't use the regular error-checking one, many more comments must ofter be fetched.
351       // This does not work for comment trees, and the limit should be manually set to a high number
352       //
353       // If a max depth is given, then you know its a tree fetch, and limits should be ignored
354       // TODO a kludge to prevent attacks. Limit comments to 300 for now.
355       // (i64::MAX, 0)
356       (300, 0)
357     } else {
358       // limit_and_offset_unlimited(self.page, self.limit)
359       limit_and_offset(self.page, self.limit)?
360     };
361
362     query = match self.sort.unwrap_or(CommentSortType::Hot) {
363       CommentSortType::Hot => query
364         .then_order_by(comment_aggregates::hot_rank.desc())
365         .then_order_by(comment_aggregates::score.desc()),
366       CommentSortType::New => query.then_order_by(comment::published.desc()),
367       CommentSortType::Old => query.then_order_by(comment::published.asc()),
368       CommentSortType::Top => query.order_by(comment_aggregates::score.desc()),
369     };
370
371     // Note: deleted and removed comments are done on the front side
372     let res = query
373       .limit(limit)
374       .offset(offset)
375       .load::<CommentViewTuple>(conn)
376       .await?;
377
378     Ok(res.into_iter().map(CommentView::from_tuple).collect())
379   }
380 }
381
382 impl JoinView for CommentView {
383   type JoinTuple = CommentViewTuple;
384   fn from_tuple(a: Self::JoinTuple) -> Self {
385     Self {
386       comment: a.0,
387       creator: a.1,
388       post: a.2,
389       community: a.3,
390       counts: a.4,
391       creator_banned_from_community: a.5.is_some(),
392       subscribed: CommunityFollower::to_subscribed_type(&a.6),
393       saved: a.7.is_some(),
394       creator_blocked: a.8.is_some(),
395       my_vote: a.9,
396     }
397   }
398 }
399
400 #[cfg(test)]
401 mod tests {
402   #![allow(clippy::unwrap_used)]
403   #![allow(clippy::indexing_slicing)]
404
405   use crate::{
406     comment_view::{
407       Comment,
408       CommentQuery,
409       CommentSortType,
410       CommentView,
411       Community,
412       DbPool,
413       Person,
414       PersonBlock,
415       Post,
416     },
417     structs::LocalUserView,
418   };
419   use lemmy_db_schema::{
420     aggregates::structs::CommentAggregates,
421     impls::actor_language::UNDETERMINED_ID,
422     newtypes::LanguageId,
423     source::{
424       actor_language::LocalUserLanguage,
425       comment::{CommentInsertForm, CommentLike, CommentLikeForm},
426       community::CommunityInsertForm,
427       instance::Instance,
428       language::Language,
429       local_user::{LocalUser, LocalUserInsertForm},
430       person::PersonInsertForm,
431       person_block::PersonBlockForm,
432       post::PostInsertForm,
433     },
434     traits::{Blockable, Crud, Likeable},
435     utils::build_db_pool_for_tests,
436     SubscribedType,
437   };
438   use serial_test::serial;
439
440   struct Data {
441     inserted_instance: Instance,
442     inserted_comment_0: Comment,
443     inserted_comment_1: Comment,
444     inserted_comment_2: Comment,
445     inserted_post: Post,
446     local_user_view: LocalUserView,
447     inserted_person_2: Person,
448     inserted_community: Community,
449   }
450
451   async fn init_data(pool: &mut DbPool<'_>) -> Data {
452     let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
453       .await
454       .unwrap();
455
456     let new_person = PersonInsertForm::builder()
457       .name("timmy".into())
458       .public_key("pubkey".to_string())
459       .instance_id(inserted_instance.id)
460       .build();
461     let inserted_person = Person::create(pool, &new_person).await.unwrap();
462     let local_user_form = LocalUserInsertForm::builder()
463       .person_id(inserted_person.id)
464       .password_encrypted(String::new())
465       .build();
466     let inserted_local_user = LocalUser::create(pool, &local_user_form).await.unwrap();
467
468     let new_person_2 = PersonInsertForm::builder()
469       .name("sara".into())
470       .public_key("pubkey".to_string())
471       .instance_id(inserted_instance.id)
472       .build();
473     let inserted_person_2 = Person::create(pool, &new_person_2).await.unwrap();
474
475     let new_community = CommunityInsertForm::builder()
476       .name("test community 5".to_string())
477       .title("nada".to_owned())
478       .public_key("pubkey".to_string())
479       .instance_id(inserted_instance.id)
480       .build();
481
482     let inserted_community = Community::create(pool, &new_community).await.unwrap();
483
484     let new_post = PostInsertForm::builder()
485       .name("A test post 2".into())
486       .creator_id(inserted_person.id)
487       .community_id(inserted_community.id)
488       .build();
489
490     let inserted_post = Post::create(pool, &new_post).await.unwrap();
491     let english_id = Language::read_id_from_code(pool, Some("en")).await.unwrap();
492
493     // Create a comment tree with this hierarchy
494     //       0
495     //     \     \
496     //    1      2
497     //    \
498     //  3  4
499     //     \
500     //     5
501     let comment_form_0 = CommentInsertForm::builder()
502       .content("Comment 0".into())
503       .creator_id(inserted_person.id)
504       .post_id(inserted_post.id)
505       .language_id(english_id)
506       .build();
507
508     let inserted_comment_0 = Comment::create(pool, &comment_form_0, None).await.unwrap();
509
510     let comment_form_1 = CommentInsertForm::builder()
511       .content("Comment 1, A test blocked comment".into())
512       .creator_id(inserted_person_2.id)
513       .post_id(inserted_post.id)
514       .language_id(english_id)
515       .build();
516
517     let inserted_comment_1 = Comment::create(pool, &comment_form_1, Some(&inserted_comment_0.path))
518       .await
519       .unwrap();
520
521     let finnish_id = Language::read_id_from_code(pool, Some("fi")).await.unwrap();
522     let comment_form_2 = CommentInsertForm::builder()
523       .content("Comment 2".into())
524       .creator_id(inserted_person.id)
525       .post_id(inserted_post.id)
526       .language_id(finnish_id)
527       .build();
528
529     let inserted_comment_2 = Comment::create(pool, &comment_form_2, Some(&inserted_comment_0.path))
530       .await
531       .unwrap();
532
533     let comment_form_3 = CommentInsertForm::builder()
534       .content("Comment 3".into())
535       .creator_id(inserted_person.id)
536       .post_id(inserted_post.id)
537       .language_id(english_id)
538       .build();
539
540     let _inserted_comment_3 =
541       Comment::create(pool, &comment_form_3, Some(&inserted_comment_1.path))
542         .await
543         .unwrap();
544
545     let polish_id = Language::read_id_from_code(pool, Some("pl"))
546       .await
547       .unwrap()
548       .unwrap();
549     let comment_form_4 = CommentInsertForm::builder()
550       .content("Comment 4".into())
551       .creator_id(inserted_person.id)
552       .post_id(inserted_post.id)
553       .language_id(Some(polish_id))
554       .build();
555
556     let inserted_comment_4 = Comment::create(pool, &comment_form_4, Some(&inserted_comment_1.path))
557       .await
558       .unwrap();
559
560     let comment_form_5 = CommentInsertForm::builder()
561       .content("Comment 5".into())
562       .creator_id(inserted_person.id)
563       .post_id(inserted_post.id)
564       .build();
565
566     let _inserted_comment_5 =
567       Comment::create(pool, &comment_form_5, Some(&inserted_comment_4.path))
568         .await
569         .unwrap();
570
571     let timmy_blocks_sara_form = PersonBlockForm {
572       person_id: inserted_person.id,
573       target_id: inserted_person_2.id,
574     };
575
576     let inserted_block = PersonBlock::block(pool, &timmy_blocks_sara_form)
577       .await
578       .unwrap();
579
580     let expected_block = PersonBlock {
581       id: inserted_block.id,
582       person_id: inserted_person.id,
583       target_id: inserted_person_2.id,
584       published: inserted_block.published,
585     };
586     assert_eq!(expected_block, inserted_block);
587
588     let comment_like_form = CommentLikeForm {
589       comment_id: inserted_comment_0.id,
590       post_id: inserted_post.id,
591       person_id: inserted_person.id,
592       score: 1,
593     };
594
595     let _inserted_comment_like = CommentLike::like(pool, &comment_like_form).await.unwrap();
596
597     let local_user_view = LocalUserView {
598       local_user: inserted_local_user.clone(),
599       person: inserted_person.clone(),
600       counts: Default::default(),
601     };
602     Data {
603       inserted_instance,
604       inserted_comment_0,
605       inserted_comment_1,
606       inserted_comment_2,
607       inserted_post,
608       local_user_view,
609       inserted_person_2,
610       inserted_community,
611     }
612   }
613
614   #[tokio::test]
615   #[serial]
616   async fn test_crud() {
617     let pool = &build_db_pool_for_tests().await;
618     let pool = &mut pool.into();
619     let data = init_data(pool).await;
620
621     let expected_comment_view_no_person = expected_comment_view(&data, pool).await;
622
623     let mut expected_comment_view_with_person = expected_comment_view_no_person.clone();
624     expected_comment_view_with_person.my_vote = Some(1);
625
626     let read_comment_views_no_person = CommentQuery {
627       sort: (Some(CommentSortType::Old)),
628       post_id: (Some(data.inserted_post.id)),
629       ..Default::default()
630     }
631     .list(pool)
632     .await
633     .unwrap();
634
635     assert_eq!(
636       expected_comment_view_no_person,
637       read_comment_views_no_person[0]
638     );
639
640     let read_comment_views_with_person = CommentQuery {
641       sort: (Some(CommentSortType::Old)),
642       post_id: (Some(data.inserted_post.id)),
643       local_user: (Some(&data.local_user_view)),
644       ..Default::default()
645     }
646     .list(pool)
647     .await
648     .unwrap();
649
650     assert_eq!(
651       expected_comment_view_with_person,
652       read_comment_views_with_person[0]
653     );
654
655     // Make sure its 1, not showing the blocked comment
656     assert_eq!(5, read_comment_views_with_person.len());
657
658     let read_comment_from_blocked_person = CommentView::read(
659       pool,
660       data.inserted_comment_1.id,
661       Some(data.local_user_view.person.id),
662     )
663     .await
664     .unwrap();
665
666     // Make sure block set the creator blocked
667     assert!(read_comment_from_blocked_person.creator_blocked);
668
669     cleanup(data, pool).await;
670   }
671
672   #[tokio::test]
673   #[serial]
674   async fn test_comment_tree() {
675     let pool = &build_db_pool_for_tests().await;
676     let pool = &mut pool.into();
677     let data = init_data(pool).await;
678
679     let top_path = data.inserted_comment_0.path.clone();
680     let read_comment_views_top_path = CommentQuery {
681       post_id: (Some(data.inserted_post.id)),
682       parent_path: (Some(top_path)),
683       ..Default::default()
684     }
685     .list(pool)
686     .await
687     .unwrap();
688
689     let child_path = data.inserted_comment_1.path.clone();
690     let read_comment_views_child_path = CommentQuery {
691       post_id: (Some(data.inserted_post.id)),
692       parent_path: (Some(child_path)),
693       ..Default::default()
694     }
695     .list(pool)
696     .await
697     .unwrap();
698
699     // Make sure the comment parent-limited fetch is correct
700     assert_eq!(6, read_comment_views_top_path.len());
701     assert_eq!(4, read_comment_views_child_path.len());
702
703     // Make sure it contains the parent, but not the comment from the other tree
704     let child_comments = read_comment_views_child_path
705       .into_iter()
706       .map(|c| c.comment)
707       .collect::<Vec<Comment>>();
708     assert!(child_comments.contains(&data.inserted_comment_1));
709     assert!(!child_comments.contains(&data.inserted_comment_2));
710
711     let read_comment_views_top_max_depth = CommentQuery {
712       post_id: (Some(data.inserted_post.id)),
713       max_depth: (Some(1)),
714       ..Default::default()
715     }
716     .list(pool)
717     .await
718     .unwrap();
719
720     // Make sure a depth limited one only has the top comment
721     assert_eq!(
722       expected_comment_view(&data, pool).await,
723       read_comment_views_top_max_depth[0]
724     );
725     assert_eq!(1, read_comment_views_top_max_depth.len());
726
727     let child_path = data.inserted_comment_1.path.clone();
728     let read_comment_views_parent_max_depth = CommentQuery {
729       post_id: (Some(data.inserted_post.id)),
730       parent_path: (Some(child_path)),
731       max_depth: (Some(1)),
732       sort: (Some(CommentSortType::New)),
733       ..Default::default()
734     }
735     .list(pool)
736     .await
737     .unwrap();
738
739     // Make sure a depth limited one, and given child comment 1, has 3
740     assert!(read_comment_views_parent_max_depth[2]
741       .comment
742       .content
743       .eq("Comment 3"));
744     assert_eq!(3, read_comment_views_parent_max_depth.len());
745
746     cleanup(data, pool).await;
747   }
748
749   #[tokio::test]
750   #[serial]
751   async fn test_languages() {
752     let pool = &build_db_pool_for_tests().await;
753     let pool = &mut pool.into();
754     let data = init_data(pool).await;
755
756     // by default, user has all languages enabled and should see all comments
757     // (except from blocked user)
758     let all_languages = CommentQuery {
759       local_user: (Some(&data.local_user_view)),
760       ..Default::default()
761     }
762     .list(pool)
763     .await
764     .unwrap();
765     assert_eq!(5, all_languages.len());
766
767     // change user lang to finnish, should only show one post in finnish and one undetermined
768     let finnish_id = Language::read_id_from_code(pool, Some("fi"))
769       .await
770       .unwrap()
771       .unwrap();
772     LocalUserLanguage::update(pool, vec![finnish_id], data.local_user_view.local_user.id)
773       .await
774       .unwrap();
775     let finnish_comments = CommentQuery {
776       local_user: (Some(&data.local_user_view)),
777       ..Default::default()
778     }
779     .list(pool)
780     .await
781     .unwrap();
782     assert_eq!(2, finnish_comments.len());
783     let finnish_comment = finnish_comments
784       .iter()
785       .find(|c| c.comment.language_id == finnish_id);
786     assert!(finnish_comment.is_some());
787     assert_eq!(
788       data.inserted_comment_2.content,
789       finnish_comment.unwrap().comment.content
790     );
791
792     // now show all comments with undetermined language (which is the default value)
793     LocalUserLanguage::update(
794       pool,
795       vec![UNDETERMINED_ID],
796       data.local_user_view.local_user.id,
797     )
798     .await
799     .unwrap();
800     let undetermined_comment = CommentQuery {
801       local_user: (Some(&data.local_user_view)),
802       ..Default::default()
803     }
804     .list(pool)
805     .await
806     .unwrap();
807     assert_eq!(1, undetermined_comment.len());
808
809     cleanup(data, pool).await;
810   }
811
812   async fn cleanup(data: Data, pool: &mut DbPool<'_>) {
813     CommentLike::remove(
814       pool,
815       data.local_user_view.person.id,
816       data.inserted_comment_0.id,
817     )
818     .await
819     .unwrap();
820     Comment::delete(pool, data.inserted_comment_0.id)
821       .await
822       .unwrap();
823     Comment::delete(pool, data.inserted_comment_1.id)
824       .await
825       .unwrap();
826     Post::delete(pool, data.inserted_post.id).await.unwrap();
827     Community::delete(pool, data.inserted_community.id)
828       .await
829       .unwrap();
830     Person::delete(pool, data.local_user_view.person.id)
831       .await
832       .unwrap();
833     Person::delete(pool, data.inserted_person_2.id)
834       .await
835       .unwrap();
836     Instance::delete(pool, data.inserted_instance.id)
837       .await
838       .unwrap();
839   }
840
841   async fn expected_comment_view(data: &Data, pool: &mut DbPool<'_>) -> CommentView {
842     let agg = CommentAggregates::read(pool, data.inserted_comment_0.id)
843       .await
844       .unwrap();
845     CommentView {
846       creator_banned_from_community: false,
847       my_vote: None,
848       subscribed: SubscribedType::NotSubscribed,
849       saved: false,
850       creator_blocked: false,
851       comment: Comment {
852         id: data.inserted_comment_0.id,
853         content: "Comment 0".into(),
854         creator_id: data.local_user_view.person.id,
855         post_id: data.inserted_post.id,
856         removed: false,
857         deleted: false,
858         published: data.inserted_comment_0.published,
859         ap_id: data.inserted_comment_0.ap_id.clone(),
860         updated: None,
861         local: true,
862         distinguished: false,
863         path: data.inserted_comment_0.clone().path,
864         language_id: LanguageId(37),
865       },
866       creator: Person {
867         id: data.local_user_view.person.id,
868         name: "timmy".into(),
869         display_name: None,
870         published: data.local_user_view.person.published,
871         avatar: None,
872         actor_id: data.local_user_view.person.actor_id.clone(),
873         local: true,
874         banned: false,
875         deleted: false,
876         admin: false,
877         bot_account: false,
878         bio: None,
879         banner: None,
880         updated: None,
881         inbox_url: data.local_user_view.person.inbox_url.clone(),
882         shared_inbox_url: None,
883         matrix_user_id: None,
884         ban_expires: None,
885         instance_id: data.inserted_instance.id,
886         private_key: data.local_user_view.person.private_key.clone(),
887         public_key: data.local_user_view.person.public_key.clone(),
888         last_refreshed_at: data.local_user_view.person.last_refreshed_at,
889       },
890       post: Post {
891         id: data.inserted_post.id,
892         name: data.inserted_post.name.clone(),
893         creator_id: data.local_user_view.person.id,
894         url: None,
895         body: None,
896         published: data.inserted_post.published,
897         updated: None,
898         community_id: data.inserted_community.id,
899         removed: false,
900         deleted: false,
901         locked: false,
902         nsfw: false,
903         embed_title: None,
904         embed_description: None,
905         embed_video_url: None,
906         thumbnail_url: None,
907         ap_id: data.inserted_post.ap_id.clone(),
908         local: true,
909         language_id: Default::default(),
910         featured_community: false,
911         featured_local: false,
912       },
913       community: Community {
914         id: data.inserted_community.id,
915         name: "test community 5".to_string(),
916         icon: None,
917         removed: false,
918         deleted: false,
919         nsfw: false,
920         actor_id: data.inserted_community.actor_id.clone(),
921         local: true,
922         title: "nada".to_owned(),
923         description: None,
924         updated: None,
925         banner: None,
926         hidden: false,
927         posting_restricted_to_mods: false,
928         published: data.inserted_community.published,
929         instance_id: data.inserted_instance.id,
930         private_key: data.inserted_community.private_key.clone(),
931         public_key: data.inserted_community.public_key.clone(),
932         last_refreshed_at: data.inserted_community.last_refreshed_at,
933         followers_url: data.inserted_community.followers_url.clone(),
934         inbox_url: data.inserted_community.inbox_url.clone(),
935         shared_inbox_url: data.inserted_community.shared_inbox_url.clone(),
936         moderators_url: data.inserted_community.moderators_url.clone(),
937         featured_url: data.inserted_community.featured_url.clone(),
938       },
939       counts: CommentAggregates {
940         id: agg.id,
941         comment_id: data.inserted_comment_0.id,
942         score: 1,
943         upvotes: 1,
944         downvotes: 0,
945         published: agg.published,
946         child_count: 5,
947         hot_rank: 1728,
948       },
949     }
950   }
951 }