]> Untitled Git - lemmy.git/blob - crates/api_crud/src/comment/list.rs
e7632cba2dd1fe441b5836862de9f923c929ca00
[lemmy.git] / crates / api_crud / src / comment / list.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   comment::{GetComments, GetCommentsResponse},
5   utils::{
6     blocking,
7     check_private_instance,
8     get_local_user_view_from_jwt_opt,
9     listing_type_with_site_default,
10   },
11 };
12 use lemmy_apub::{fetcher::resolve_actor_identifier, objects::community::ApubCommunity};
13 use lemmy_db_schema::{
14   source::{comment::Comment, community::Community},
15   traits::{Crud, DeleteableOrRemoveable},
16 };
17 use lemmy_db_views::comment_view::CommentQuery;
18 use lemmy_utils::{error::LemmyError, ConnectionId};
19 use lemmy_websocket::LemmyContext;
20
21 #[async_trait::async_trait(?Send)]
22 impl PerformCrud for GetComments {
23   type Response = GetCommentsResponse;
24
25   #[tracing::instrument(skip(context, _websocket_id))]
26   async fn perform(
27     &self,
28     context: &Data<LemmyContext>,
29     _websocket_id: Option<ConnectionId>,
30   ) -> Result<GetCommentsResponse, LemmyError> {
31     let data: &GetComments = self;
32     let local_user_view =
33       get_local_user_view_from_jwt_opt(data.auth.as_ref(), context.pool(), context.secret())
34         .await?;
35     check_private_instance(&local_user_view, context.pool()).await?;
36
37     let community_id = data.community_id;
38     let listing_type = listing_type_with_site_default(data.type_, context.pool()).await?;
39
40     let community_actor_id = if let Some(name) = &data.community_name {
41       resolve_actor_identifier::<ApubCommunity, Community>(name, context)
42         .await
43         .ok()
44         .map(|c| c.actor_id)
45     } else {
46       None
47     };
48     let sort = data.sort;
49     let max_depth = data.max_depth;
50     let saved_only = data.saved_only;
51     let page = data.page;
52     let limit = data.limit;
53     let parent_id = data.parent_id;
54
55     // If a parent_id is given, fetch the comment to get the path
56     let parent_path = if let Some(parent_id) = parent_id {
57       Some(
58         blocking(context.pool(), move |conn| Comment::read(conn, parent_id))
59           .await??
60           .path,
61       )
62     } else {
63       None
64     };
65
66     let post_id = data.post_id;
67     let local_user = local_user_view.map(|l| l.local_user);
68     let mut comments = blocking(context.pool(), move |conn| {
69       CommentQuery::builder()
70         .conn(conn)
71         .listing_type(Some(listing_type))
72         .sort(sort)
73         .max_depth(max_depth)
74         .saved_only(saved_only)
75         .community_id(community_id)
76         .community_actor_id(community_actor_id)
77         .parent_path(parent_path)
78         .post_id(post_id)
79         .local_user(local_user.as_ref())
80         .page(page)
81         .limit(limit)
82         .build()
83         .list()
84     })
85     .await?
86     .map_err(|e| LemmyError::from_error_message(e, "couldnt_get_comments"))?;
87
88     // Blank out deleted or removed info
89     for cv in comments
90       .iter_mut()
91       .filter(|cv| cv.comment.deleted || cv.comment.removed)
92     {
93       cv.comment = cv.to_owned().comment.blank_out_deleted_or_removed_info();
94     }
95
96     Ok(GetCommentsResponse { comments })
97   }
98 }