]> Untitled Git - lemmy.git/blob - crates/db_views/src/comment_view.rs
c1b38e3afb4e42d92be28620843a7bc9666a2395
[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::create(pool, "my_domain.tld").await.unwrap();
454
455     let new_person = PersonInsertForm::builder()
456       .name("timmy".into())
457       .public_key("pubkey".to_string())
458       .instance_id(inserted_instance.id)
459       .build();
460     let inserted_person = Person::create(pool, &new_person).await.unwrap();
461     let local_user_form = LocalUserInsertForm::builder()
462       .person_id(inserted_person.id)
463       .password_encrypted(String::new())
464       .build();
465     let inserted_local_user = LocalUser::create(pool, &local_user_form).await.unwrap();
466
467     let new_person_2 = PersonInsertForm::builder()
468       .name("sara".into())
469       .public_key("pubkey".to_string())
470       .instance_id(inserted_instance.id)
471       .build();
472     let inserted_person_2 = Person::create(pool, &new_person_2).await.unwrap();
473
474     let new_community = CommunityInsertForm::builder()
475       .name("test community 5".to_string())
476       .title("nada".to_owned())
477       .public_key("pubkey".to_string())
478       .instance_id(inserted_instance.id)
479       .build();
480
481     let inserted_community = Community::create(pool, &new_community).await.unwrap();
482
483     let new_post = PostInsertForm::builder()
484       .name("A test post 2".into())
485       .creator_id(inserted_person.id)
486       .community_id(inserted_community.id)
487       .build();
488
489     let inserted_post = Post::create(pool, &new_post).await.unwrap();
490
491     // Create a comment tree with this hierarchy
492     //       0
493     //     \     \
494     //    1      2
495     //    \
496     //  3  4
497     //     \
498     //     5
499     let comment_form_0 = CommentInsertForm::builder()
500       .content("Comment 0".into())
501       .creator_id(inserted_person.id)
502       .post_id(inserted_post.id)
503       .build();
504
505     let inserted_comment_0 = Comment::create(pool, &comment_form_0, None).await.unwrap();
506
507     let comment_form_1 = CommentInsertForm::builder()
508       .content("Comment 1, A test blocked comment".into())
509       .creator_id(inserted_person_2.id)
510       .post_id(inserted_post.id)
511       .build();
512
513     let inserted_comment_1 = Comment::create(pool, &comment_form_1, Some(&inserted_comment_0.path))
514       .await
515       .unwrap();
516
517     let finnish_id = Language::read_id_from_code(pool, Some("fi"))
518       .await
519       .unwrap()
520       .unwrap();
521     let comment_form_2 = CommentInsertForm::builder()
522       .content("Comment 2".into())
523       .creator_id(inserted_person.id)
524       .post_id(inserted_post.id)
525       .language_id(Some(finnish_id))
526       .build();
527
528     let inserted_comment_2 = Comment::create(pool, &comment_form_2, Some(&inserted_comment_0.path))
529       .await
530       .unwrap();
531
532     let comment_form_3 = CommentInsertForm::builder()
533       .content("Comment 3".into())
534       .creator_id(inserted_person.id)
535       .post_id(inserted_post.id)
536       .build();
537
538     let _inserted_comment_3 =
539       Comment::create(pool, &comment_form_3, Some(&inserted_comment_1.path))
540         .await
541         .unwrap();
542
543     let polish_id = Language::read_id_from_code(pool, Some("pl"))
544       .await
545       .unwrap()
546       .unwrap();
547     let comment_form_4 = CommentInsertForm::builder()
548       .content("Comment 4".into())
549       .creator_id(inserted_person.id)
550       .post_id(inserted_post.id)
551       .language_id(Some(polish_id))
552       .build();
553
554     let inserted_comment_4 = Comment::create(pool, &comment_form_4, Some(&inserted_comment_1.path))
555       .await
556       .unwrap();
557
558     let comment_form_5 = CommentInsertForm::builder()
559       .content("Comment 5".into())
560       .creator_id(inserted_person.id)
561       .post_id(inserted_post.id)
562       .build();
563
564     let _inserted_comment_5 =
565       Comment::create(pool, &comment_form_5, Some(&inserted_comment_4.path))
566         .await
567         .unwrap();
568
569     let timmy_blocks_sara_form = PersonBlockForm {
570       person_id: inserted_person.id,
571       target_id: inserted_person_2.id,
572     };
573
574     let inserted_block = PersonBlock::block(pool, &timmy_blocks_sara_form)
575       .await
576       .unwrap();
577
578     let expected_block = PersonBlock {
579       id: inserted_block.id,
580       person_id: inserted_person.id,
581       target_id: inserted_person_2.id,
582       published: inserted_block.published,
583     };
584     assert_eq!(expected_block, inserted_block);
585
586     let comment_like_form = CommentLikeForm {
587       comment_id: inserted_comment_0.id,
588       post_id: inserted_post.id,
589       person_id: inserted_person.id,
590       score: 1,
591     };
592
593     let _inserted_comment_like = CommentLike::like(pool, &comment_like_form).await.unwrap();
594
595     Data {
596       inserted_instance,
597       inserted_comment_0,
598       inserted_comment_1,
599       inserted_comment_2,
600       inserted_post,
601       inserted_person,
602       inserted_local_user,
603       inserted_person_2,
604       inserted_community,
605     }
606   }
607
608   #[tokio::test]
609   #[serial]
610   async fn test_crud() {
611     let pool = &build_db_pool_for_tests().await;
612     let data = init_data(pool).await;
613
614     let expected_comment_view_no_person = expected_comment_view(&data, pool).await;
615
616     let mut expected_comment_view_with_person = expected_comment_view_no_person.clone();
617     expected_comment_view_with_person.my_vote = Some(1);
618
619     let read_comment_views_no_person = CommentQuery::builder()
620       .pool(pool)
621       .post_id(Some(data.inserted_post.id))
622       .build()
623       .list()
624       .await
625       .unwrap();
626
627     assert_eq!(
628       expected_comment_view_no_person,
629       read_comment_views_no_person[0]
630     );
631
632     let read_comment_views_with_person = CommentQuery::builder()
633       .pool(pool)
634       .post_id(Some(data.inserted_post.id))
635       .local_user(Some(&data.inserted_local_user))
636       .build()
637       .list()
638       .await
639       .unwrap();
640
641     assert_eq!(
642       expected_comment_view_with_person,
643       read_comment_views_with_person[0]
644     );
645
646     // Make sure its 1, not showing the blocked comment
647     assert_eq!(5, read_comment_views_with_person.len());
648
649     let read_comment_from_blocked_person = CommentView::read(
650       pool,
651       data.inserted_comment_1.id,
652       Some(data.inserted_person.id),
653     )
654     .await
655     .unwrap();
656
657     // Make sure block set the creator blocked
658     assert!(read_comment_from_blocked_person.creator_blocked);
659
660     cleanup(data, pool).await;
661   }
662
663   #[tokio::test]
664   #[serial]
665   async fn test_comment_tree() {
666     let pool = &build_db_pool_for_tests().await;
667     let data = init_data(pool).await;
668
669     let top_path = data.inserted_comment_0.path.clone();
670     let read_comment_views_top_path = CommentQuery::builder()
671       .pool(pool)
672       .post_id(Some(data.inserted_post.id))
673       .parent_path(Some(top_path))
674       .build()
675       .list()
676       .await
677       .unwrap();
678
679     let child_path = data.inserted_comment_1.path.clone();
680     let read_comment_views_child_path = CommentQuery::builder()
681       .pool(pool)
682       .post_id(Some(data.inserted_post.id))
683       .parent_path(Some(child_path))
684       .build()
685       .list()
686       .await
687       .unwrap();
688
689     // Make sure the comment parent-limited fetch is correct
690     assert_eq!(6, read_comment_views_top_path.len());
691     assert_eq!(4, read_comment_views_child_path.len());
692
693     // Make sure it contains the parent, but not the comment from the other tree
694     let child_comments = read_comment_views_child_path
695       .into_iter()
696       .map(|c| c.comment)
697       .collect::<Vec<Comment>>();
698     assert!(child_comments.contains(&data.inserted_comment_1));
699     assert!(!child_comments.contains(&data.inserted_comment_2));
700
701     let read_comment_views_top_max_depth = CommentQuery::builder()
702       .pool(pool)
703       .post_id(Some(data.inserted_post.id))
704       .max_depth(Some(1))
705       .build()
706       .list()
707       .await
708       .unwrap();
709
710     // Make sure a depth limited one only has the top comment
711     assert_eq!(
712       expected_comment_view(&data, pool).await,
713       read_comment_views_top_max_depth[0]
714     );
715     assert_eq!(1, read_comment_views_top_max_depth.len());
716
717     let child_path = data.inserted_comment_1.path.clone();
718     let read_comment_views_parent_max_depth = CommentQuery::builder()
719       .pool(pool)
720       .post_id(Some(data.inserted_post.id))
721       .parent_path(Some(child_path))
722       .max_depth(Some(1))
723       .sort(Some(CommentSortType::New))
724       .build()
725       .list()
726       .await
727       .unwrap();
728
729     // Make sure a depth limited one, and given child comment 1, has 3
730     assert!(read_comment_views_parent_max_depth[2]
731       .comment
732       .content
733       .eq("Comment 3"));
734     assert_eq!(3, read_comment_views_parent_max_depth.len());
735
736     cleanup(data, pool).await;
737   }
738
739   #[tokio::test]
740   #[serial]
741   async fn test_languages() {
742     let pool = &build_db_pool_for_tests().await;
743     let data = init_data(pool).await;
744
745     // by default, user has all languages enabled and should see all comments
746     // (except from blocked user)
747     let all_languages = CommentQuery::builder()
748       .pool(pool)
749       .local_user(Some(&data.inserted_local_user))
750       .build()
751       .list()
752       .await
753       .unwrap();
754     assert_eq!(5, all_languages.len());
755
756     // change user lang to finnish, should only show single finnish comment
757     let finnish_id = Language::read_id_from_code(pool, Some("fi"))
758       .await
759       .unwrap()
760       .unwrap();
761     LocalUserLanguage::update(pool, vec![finnish_id], data.inserted_local_user.id)
762       .await
763       .unwrap();
764     let finnish_comment = CommentQuery::builder()
765       .pool(pool)
766       .local_user(Some(&data.inserted_local_user))
767       .build()
768       .list()
769       .await
770       .unwrap();
771     assert_eq!(1, finnish_comment.len());
772     assert_eq!(
773       data.inserted_comment_2.content,
774       finnish_comment[0].comment.content
775     );
776     assert_eq!(finnish_id, finnish_comment[0].comment.language_id);
777
778     // now show all comments with undetermined language (which is the default value)
779     LocalUserLanguage::update(pool, vec![UNDETERMINED_ID], data.inserted_local_user.id)
780       .await
781       .unwrap();
782     let undetermined_comment = CommentQuery::builder()
783       .pool(pool)
784       .local_user(Some(&data.inserted_local_user))
785       .build()
786       .list()
787       .await
788       .unwrap();
789     assert_eq!(3, undetermined_comment.len());
790
791     cleanup(data, pool).await;
792   }
793
794   async fn cleanup(data: Data, pool: &DbPool) {
795     CommentLike::remove(pool, data.inserted_person.id, data.inserted_comment_0.id)
796       .await
797       .unwrap();
798     Comment::delete(pool, data.inserted_comment_0.id)
799       .await
800       .unwrap();
801     Comment::delete(pool, data.inserted_comment_1.id)
802       .await
803       .unwrap();
804     Post::delete(pool, data.inserted_post.id).await.unwrap();
805     Community::delete(pool, data.inserted_community.id)
806       .await
807       .unwrap();
808     Person::delete(pool, data.inserted_person.id).await.unwrap();
809     Person::delete(pool, data.inserted_person_2.id)
810       .await
811       .unwrap();
812     Instance::delete(pool, data.inserted_instance.id)
813       .await
814       .unwrap();
815   }
816
817   async fn expected_comment_view(data: &Data, pool: &DbPool) -> CommentView {
818     let agg = CommentAggregates::read(pool, data.inserted_comment_0.id)
819       .await
820       .unwrap();
821     CommentView {
822       creator_banned_from_community: false,
823       my_vote: None,
824       subscribed: SubscribedType::NotSubscribed,
825       saved: false,
826       creator_blocked: false,
827       comment: Comment {
828         id: data.inserted_comment_0.id,
829         content: "Comment 0".into(),
830         creator_id: data.inserted_person.id,
831         post_id: data.inserted_post.id,
832         removed: false,
833         deleted: false,
834         published: data.inserted_comment_0.published,
835         ap_id: data.inserted_comment_0.ap_id.clone(),
836         updated: None,
837         local: true,
838         distinguished: false,
839         path: data.inserted_comment_0.clone().path,
840         language_id: LanguageId(0),
841       },
842       creator: PersonSafe {
843         id: data.inserted_person.id,
844         name: "timmy".into(),
845         display_name: None,
846         published: data.inserted_person.published,
847         avatar: None,
848         actor_id: data.inserted_person.actor_id.clone(),
849         local: true,
850         banned: false,
851         deleted: false,
852         admin: false,
853         bot_account: false,
854         bio: None,
855         banner: None,
856         updated: None,
857         inbox_url: data.inserted_person.inbox_url.clone(),
858         shared_inbox_url: None,
859         matrix_user_id: None,
860         ban_expires: None,
861         instance_id: data.inserted_instance.id,
862       },
863       post: Post {
864         id: data.inserted_post.id,
865         name: data.inserted_post.name.clone(),
866         creator_id: data.inserted_person.id,
867         url: None,
868         body: None,
869         published: data.inserted_post.published,
870         updated: None,
871         community_id: data.inserted_community.id,
872         removed: false,
873         deleted: false,
874         locked: false,
875         nsfw: false,
876         embed_title: None,
877         embed_description: None,
878         embed_video_url: None,
879         thumbnail_url: None,
880         ap_id: data.inserted_post.ap_id.clone(),
881         local: true,
882         language_id: Default::default(),
883         featured_community: false,
884         featured_local: false,
885       },
886       community: CommunitySafe {
887         id: data.inserted_community.id,
888         name: "test community 5".to_string(),
889         icon: None,
890         removed: false,
891         deleted: false,
892         nsfw: false,
893         actor_id: data.inserted_community.actor_id.clone(),
894         local: true,
895         title: "nada".to_owned(),
896         description: None,
897         updated: None,
898         banner: None,
899         hidden: false,
900         posting_restricted_to_mods: false,
901         published: data.inserted_community.published,
902         instance_id: data.inserted_instance.id,
903       },
904       counts: CommentAggregates {
905         id: agg.id,
906         comment_id: data.inserted_comment_0.id,
907         score: 1,
908         upvotes: 1,
909         downvotes: 0,
910         published: agg.published,
911         child_count: 5,
912       },
913     }
914   }
915 }