]> Untitled Git - lemmy.git/blob - crates/db_views/src/comment_view.rs
Fixing hot_ranks and scores to append a published sort. (#3618)
[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::published.desc()),
366       CommentSortType::Top => query
367         .order_by(comment_aggregates::score.desc())
368         .then_order_by(comment_aggregates::published.desc()),
369       CommentSortType::New => query.then_order_by(comment::published.desc()),
370       CommentSortType::Old => query.then_order_by(comment::published.asc()),
371     };
372
373     // Note: deleted and removed comments are done on the front side
374     let res = query
375       .limit(limit)
376       .offset(offset)
377       .load::<CommentViewTuple>(conn)
378       .await?;
379
380     Ok(res.into_iter().map(CommentView::from_tuple).collect())
381   }
382 }
383
384 impl JoinView for CommentView {
385   type JoinTuple = CommentViewTuple;
386   fn from_tuple(a: Self::JoinTuple) -> Self {
387     Self {
388       comment: a.0,
389       creator: a.1,
390       post: a.2,
391       community: a.3,
392       counts: a.4,
393       creator_banned_from_community: a.5.is_some(),
394       subscribed: CommunityFollower::to_subscribed_type(&a.6),
395       saved: a.7.is_some(),
396       creator_blocked: a.8.is_some(),
397       my_vote: a.9,
398     }
399   }
400 }
401
402 #[cfg(test)]
403 mod tests {
404   #![allow(clippy::unwrap_used)]
405   #![allow(clippy::indexing_slicing)]
406
407   use crate::{
408     comment_view::{
409       Comment,
410       CommentQuery,
411       CommentSortType,
412       CommentView,
413       Community,
414       DbPool,
415       Person,
416       PersonBlock,
417       Post,
418     },
419     structs::LocalUserView,
420   };
421   use lemmy_db_schema::{
422     aggregates::structs::CommentAggregates,
423     impls::actor_language::UNDETERMINED_ID,
424     newtypes::LanguageId,
425     source::{
426       actor_language::LocalUserLanguage,
427       comment::{CommentInsertForm, CommentLike, CommentLikeForm},
428       community::CommunityInsertForm,
429       instance::Instance,
430       language::Language,
431       local_user::{LocalUser, LocalUserInsertForm},
432       person::PersonInsertForm,
433       person_block::PersonBlockForm,
434       post::PostInsertForm,
435     },
436     traits::{Blockable, Crud, Likeable},
437     utils::build_db_pool_for_tests,
438     SubscribedType,
439   };
440   use serial_test::serial;
441
442   struct Data {
443     inserted_instance: Instance,
444     inserted_comment_0: Comment,
445     inserted_comment_1: Comment,
446     inserted_comment_2: Comment,
447     inserted_post: Post,
448     local_user_view: LocalUserView,
449     inserted_person_2: Person,
450     inserted_community: Community,
451   }
452
453   async fn init_data(pool: &mut DbPool<'_>) -> Data {
454     let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
455       .await
456       .unwrap();
457
458     let new_person = PersonInsertForm::builder()
459       .name("timmy".into())
460       .public_key("pubkey".to_string())
461       .instance_id(inserted_instance.id)
462       .build();
463     let inserted_person = Person::create(pool, &new_person).await.unwrap();
464     let local_user_form = LocalUserInsertForm::builder()
465       .person_id(inserted_person.id)
466       .password_encrypted(String::new())
467       .build();
468     let inserted_local_user = LocalUser::create(pool, &local_user_form).await.unwrap();
469
470     let new_person_2 = PersonInsertForm::builder()
471       .name("sara".into())
472       .public_key("pubkey".to_string())
473       .instance_id(inserted_instance.id)
474       .build();
475     let inserted_person_2 = Person::create(pool, &new_person_2).await.unwrap();
476
477     let new_community = CommunityInsertForm::builder()
478       .name("test community 5".to_string())
479       .title("nada".to_owned())
480       .public_key("pubkey".to_string())
481       .instance_id(inserted_instance.id)
482       .build();
483
484     let inserted_community = Community::create(pool, &new_community).await.unwrap();
485
486     let new_post = PostInsertForm::builder()
487       .name("A test post 2".into())
488       .creator_id(inserted_person.id)
489       .community_id(inserted_community.id)
490       .build();
491
492     let inserted_post = Post::create(pool, &new_post).await.unwrap();
493     let english_id = Language::read_id_from_code(pool, Some("en")).await.unwrap();
494
495     // Create a comment tree with this hierarchy
496     //       0
497     //     \     \
498     //    1      2
499     //    \
500     //  3  4
501     //     \
502     //     5
503     let comment_form_0 = CommentInsertForm::builder()
504       .content("Comment 0".into())
505       .creator_id(inserted_person.id)
506       .post_id(inserted_post.id)
507       .language_id(english_id)
508       .build();
509
510     let inserted_comment_0 = Comment::create(pool, &comment_form_0, None).await.unwrap();
511
512     let comment_form_1 = CommentInsertForm::builder()
513       .content("Comment 1, A test blocked comment".into())
514       .creator_id(inserted_person_2.id)
515       .post_id(inserted_post.id)
516       .language_id(english_id)
517       .build();
518
519     let inserted_comment_1 = Comment::create(pool, &comment_form_1, Some(&inserted_comment_0.path))
520       .await
521       .unwrap();
522
523     let finnish_id = Language::read_id_from_code(pool, Some("fi")).await.unwrap();
524     let comment_form_2 = CommentInsertForm::builder()
525       .content("Comment 2".into())
526       .creator_id(inserted_person.id)
527       .post_id(inserted_post.id)
528       .language_id(finnish_id)
529       .build();
530
531     let inserted_comment_2 = Comment::create(pool, &comment_form_2, Some(&inserted_comment_0.path))
532       .await
533       .unwrap();
534
535     let comment_form_3 = CommentInsertForm::builder()
536       .content("Comment 3".into())
537       .creator_id(inserted_person.id)
538       .post_id(inserted_post.id)
539       .language_id(english_id)
540       .build();
541
542     let _inserted_comment_3 =
543       Comment::create(pool, &comment_form_3, Some(&inserted_comment_1.path))
544         .await
545         .unwrap();
546
547     let polish_id = Language::read_id_from_code(pool, Some("pl"))
548       .await
549       .unwrap()
550       .unwrap();
551     let comment_form_4 = CommentInsertForm::builder()
552       .content("Comment 4".into())
553       .creator_id(inserted_person.id)
554       .post_id(inserted_post.id)
555       .language_id(Some(polish_id))
556       .build();
557
558     let inserted_comment_4 = Comment::create(pool, &comment_form_4, Some(&inserted_comment_1.path))
559       .await
560       .unwrap();
561
562     let comment_form_5 = CommentInsertForm::builder()
563       .content("Comment 5".into())
564       .creator_id(inserted_person.id)
565       .post_id(inserted_post.id)
566       .build();
567
568     let _inserted_comment_5 =
569       Comment::create(pool, &comment_form_5, Some(&inserted_comment_4.path))
570         .await
571         .unwrap();
572
573     let timmy_blocks_sara_form = PersonBlockForm {
574       person_id: inserted_person.id,
575       target_id: inserted_person_2.id,
576     };
577
578     let inserted_block = PersonBlock::block(pool, &timmy_blocks_sara_form)
579       .await
580       .unwrap();
581
582     let expected_block = PersonBlock {
583       id: inserted_block.id,
584       person_id: inserted_person.id,
585       target_id: inserted_person_2.id,
586       published: inserted_block.published,
587     };
588     assert_eq!(expected_block, inserted_block);
589
590     let comment_like_form = CommentLikeForm {
591       comment_id: inserted_comment_0.id,
592       post_id: inserted_post.id,
593       person_id: inserted_person.id,
594       score: 1,
595     };
596
597     let _inserted_comment_like = CommentLike::like(pool, &comment_like_form).await.unwrap();
598
599     let local_user_view = LocalUserView {
600       local_user: inserted_local_user.clone(),
601       person: inserted_person.clone(),
602       counts: Default::default(),
603     };
604     Data {
605       inserted_instance,
606       inserted_comment_0,
607       inserted_comment_1,
608       inserted_comment_2,
609       inserted_post,
610       local_user_view,
611       inserted_person_2,
612       inserted_community,
613     }
614   }
615
616   #[tokio::test]
617   #[serial]
618   async fn test_crud() {
619     let pool = &build_db_pool_for_tests().await;
620     let pool = &mut pool.into();
621     let data = init_data(pool).await;
622
623     let expected_comment_view_no_person = expected_comment_view(&data, pool).await;
624
625     let mut expected_comment_view_with_person = expected_comment_view_no_person.clone();
626     expected_comment_view_with_person.my_vote = Some(1);
627
628     let read_comment_views_no_person = CommentQuery {
629       sort: (Some(CommentSortType::Old)),
630       post_id: (Some(data.inserted_post.id)),
631       ..Default::default()
632     }
633     .list(pool)
634     .await
635     .unwrap();
636
637     assert_eq!(
638       expected_comment_view_no_person,
639       read_comment_views_no_person[0]
640     );
641
642     let read_comment_views_with_person = CommentQuery {
643       sort: (Some(CommentSortType::Old)),
644       post_id: (Some(data.inserted_post.id)),
645       local_user: (Some(&data.local_user_view)),
646       ..Default::default()
647     }
648     .list(pool)
649     .await
650     .unwrap();
651
652     assert_eq!(
653       expected_comment_view_with_person,
654       read_comment_views_with_person[0]
655     );
656
657     // Make sure its 1, not showing the blocked comment
658     assert_eq!(5, read_comment_views_with_person.len());
659
660     let read_comment_from_blocked_person = CommentView::read(
661       pool,
662       data.inserted_comment_1.id,
663       Some(data.local_user_view.person.id),
664     )
665     .await
666     .unwrap();
667
668     // Make sure block set the creator blocked
669     assert!(read_comment_from_blocked_person.creator_blocked);
670
671     cleanup(data, pool).await;
672   }
673
674   #[tokio::test]
675   #[serial]
676   async fn test_comment_tree() {
677     let pool = &build_db_pool_for_tests().await;
678     let pool = &mut pool.into();
679     let data = init_data(pool).await;
680
681     let top_path = data.inserted_comment_0.path.clone();
682     let read_comment_views_top_path = CommentQuery {
683       post_id: (Some(data.inserted_post.id)),
684       parent_path: (Some(top_path)),
685       ..Default::default()
686     }
687     .list(pool)
688     .await
689     .unwrap();
690
691     let child_path = data.inserted_comment_1.path.clone();
692     let read_comment_views_child_path = CommentQuery {
693       post_id: (Some(data.inserted_post.id)),
694       parent_path: (Some(child_path)),
695       ..Default::default()
696     }
697     .list(pool)
698     .await
699     .unwrap();
700
701     // Make sure the comment parent-limited fetch is correct
702     assert_eq!(6, read_comment_views_top_path.len());
703     assert_eq!(4, read_comment_views_child_path.len());
704
705     // Make sure it contains the parent, but not the comment from the other tree
706     let child_comments = read_comment_views_child_path
707       .into_iter()
708       .map(|c| c.comment)
709       .collect::<Vec<Comment>>();
710     assert!(child_comments.contains(&data.inserted_comment_1));
711     assert!(!child_comments.contains(&data.inserted_comment_2));
712
713     let read_comment_views_top_max_depth = CommentQuery {
714       post_id: (Some(data.inserted_post.id)),
715       max_depth: (Some(1)),
716       ..Default::default()
717     }
718     .list(pool)
719     .await
720     .unwrap();
721
722     // Make sure a depth limited one only has the top comment
723     assert_eq!(
724       expected_comment_view(&data, pool).await,
725       read_comment_views_top_max_depth[0]
726     );
727     assert_eq!(1, read_comment_views_top_max_depth.len());
728
729     let child_path = data.inserted_comment_1.path.clone();
730     let read_comment_views_parent_max_depth = CommentQuery {
731       post_id: (Some(data.inserted_post.id)),
732       parent_path: (Some(child_path)),
733       max_depth: (Some(1)),
734       sort: (Some(CommentSortType::New)),
735       ..Default::default()
736     }
737     .list(pool)
738     .await
739     .unwrap();
740
741     // Make sure a depth limited one, and given child comment 1, has 3
742     assert!(read_comment_views_parent_max_depth[2]
743       .comment
744       .content
745       .eq("Comment 3"));
746     assert_eq!(3, read_comment_views_parent_max_depth.len());
747
748     cleanup(data, pool).await;
749   }
750
751   #[tokio::test]
752   #[serial]
753   async fn test_languages() {
754     let pool = &build_db_pool_for_tests().await;
755     let pool = &mut pool.into();
756     let data = init_data(pool).await;
757
758     // by default, user has all languages enabled and should see all comments
759     // (except from blocked user)
760     let all_languages = CommentQuery {
761       local_user: (Some(&data.local_user_view)),
762       ..Default::default()
763     }
764     .list(pool)
765     .await
766     .unwrap();
767     assert_eq!(5, all_languages.len());
768
769     // change user lang to finnish, should only show one post in finnish and one undetermined
770     let finnish_id = Language::read_id_from_code(pool, Some("fi"))
771       .await
772       .unwrap()
773       .unwrap();
774     LocalUserLanguage::update(pool, vec![finnish_id], data.local_user_view.local_user.id)
775       .await
776       .unwrap();
777     let finnish_comments = CommentQuery {
778       local_user: (Some(&data.local_user_view)),
779       ..Default::default()
780     }
781     .list(pool)
782     .await
783     .unwrap();
784     assert_eq!(2, finnish_comments.len());
785     let finnish_comment = finnish_comments
786       .iter()
787       .find(|c| c.comment.language_id == finnish_id);
788     assert!(finnish_comment.is_some());
789     assert_eq!(
790       data.inserted_comment_2.content,
791       finnish_comment.unwrap().comment.content
792     );
793
794     // now show all comments with undetermined language (which is the default value)
795     LocalUserLanguage::update(
796       pool,
797       vec![UNDETERMINED_ID],
798       data.local_user_view.local_user.id,
799     )
800     .await
801     .unwrap();
802     let undetermined_comment = CommentQuery {
803       local_user: (Some(&data.local_user_view)),
804       ..Default::default()
805     }
806     .list(pool)
807     .await
808     .unwrap();
809     assert_eq!(1, undetermined_comment.len());
810
811     cleanup(data, pool).await;
812   }
813
814   async fn cleanup(data: Data, pool: &mut DbPool<'_>) {
815     CommentLike::remove(
816       pool,
817       data.local_user_view.person.id,
818       data.inserted_comment_0.id,
819     )
820     .await
821     .unwrap();
822     Comment::delete(pool, data.inserted_comment_0.id)
823       .await
824       .unwrap();
825     Comment::delete(pool, data.inserted_comment_1.id)
826       .await
827       .unwrap();
828     Post::delete(pool, data.inserted_post.id).await.unwrap();
829     Community::delete(pool, data.inserted_community.id)
830       .await
831       .unwrap();
832     Person::delete(pool, data.local_user_view.person.id)
833       .await
834       .unwrap();
835     Person::delete(pool, data.inserted_person_2.id)
836       .await
837       .unwrap();
838     Instance::delete(pool, data.inserted_instance.id)
839       .await
840       .unwrap();
841   }
842
843   async fn expected_comment_view(data: &Data, pool: &mut DbPool<'_>) -> CommentView {
844     let agg = CommentAggregates::read(pool, data.inserted_comment_0.id)
845       .await
846       .unwrap();
847     CommentView {
848       creator_banned_from_community: false,
849       my_vote: None,
850       subscribed: SubscribedType::NotSubscribed,
851       saved: false,
852       creator_blocked: false,
853       comment: Comment {
854         id: data.inserted_comment_0.id,
855         content: "Comment 0".into(),
856         creator_id: data.local_user_view.person.id,
857         post_id: data.inserted_post.id,
858         removed: false,
859         deleted: false,
860         published: data.inserted_comment_0.published,
861         ap_id: data.inserted_comment_0.ap_id.clone(),
862         updated: None,
863         local: true,
864         distinguished: false,
865         path: data.inserted_comment_0.clone().path,
866         language_id: LanguageId(37),
867       },
868       creator: Person {
869         id: data.local_user_view.person.id,
870         name: "timmy".into(),
871         display_name: None,
872         published: data.local_user_view.person.published,
873         avatar: None,
874         actor_id: data.local_user_view.person.actor_id.clone(),
875         local: true,
876         banned: false,
877         deleted: false,
878         admin: false,
879         bot_account: false,
880         bio: None,
881         banner: None,
882         updated: None,
883         inbox_url: data.local_user_view.person.inbox_url.clone(),
884         shared_inbox_url: None,
885         matrix_user_id: None,
886         ban_expires: None,
887         instance_id: data.inserted_instance.id,
888         private_key: data.local_user_view.person.private_key.clone(),
889         public_key: data.local_user_view.person.public_key.clone(),
890         last_refreshed_at: data.local_user_view.person.last_refreshed_at,
891       },
892       post: Post {
893         id: data.inserted_post.id,
894         name: data.inserted_post.name.clone(),
895         creator_id: data.local_user_view.person.id,
896         url: None,
897         body: None,
898         published: data.inserted_post.published,
899         updated: None,
900         community_id: data.inserted_community.id,
901         removed: false,
902         deleted: false,
903         locked: false,
904         nsfw: false,
905         embed_title: None,
906         embed_description: None,
907         embed_video_url: None,
908         thumbnail_url: None,
909         ap_id: data.inserted_post.ap_id.clone(),
910         local: true,
911         language_id: Default::default(),
912         featured_community: false,
913         featured_local: false,
914       },
915       community: Community {
916         id: data.inserted_community.id,
917         name: "test community 5".to_string(),
918         icon: None,
919         removed: false,
920         deleted: false,
921         nsfw: false,
922         actor_id: data.inserted_community.actor_id.clone(),
923         local: true,
924         title: "nada".to_owned(),
925         description: None,
926         updated: None,
927         banner: None,
928         hidden: false,
929         posting_restricted_to_mods: false,
930         published: data.inserted_community.published,
931         instance_id: data.inserted_instance.id,
932         private_key: data.inserted_community.private_key.clone(),
933         public_key: data.inserted_community.public_key.clone(),
934         last_refreshed_at: data.inserted_community.last_refreshed_at,
935         followers_url: data.inserted_community.followers_url.clone(),
936         inbox_url: data.inserted_community.inbox_url.clone(),
937         shared_inbox_url: data.inserted_community.shared_inbox_url.clone(),
938         moderators_url: data.inserted_community.moderators_url.clone(),
939         featured_url: data.inserted_community.featured_url.clone(),
940       },
941       counts: CommentAggregates {
942         id: agg.id,
943         comment_id: data.inserted_comment_0.id,
944         score: 1,
945         upvotes: 1,
946         downvotes: 0,
947         published: agg.published,
948         child_count: 5,
949         hot_rank: 1728,
950       },
951     }
952   }
953 }