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