]> Untitled Git - lemmy.git/blob - crates/api_crud/src/comment/create.rs
First pass at adding comment trees. (#2362)
[lemmy.git] / crates / api_crud / src / comment / create.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   comment::{CommentResponse, CreateComment},
5   utils::{
6     blocking,
7     check_community_ban,
8     check_community_deleted_or_removed,
9     check_post_deleted_or_removed,
10     get_local_user_view_from_jwt,
11     get_post,
12   },
13 };
14 use lemmy_apub::{
15   generate_local_apub_endpoint,
16   objects::comment::ApubComment,
17   protocol::activities::{create_or_update::comment::CreateOrUpdateComment, CreateOrUpdateType},
18   EndpointType,
19 };
20 use lemmy_db_schema::{
21   source::{
22     comment::{Comment, CommentForm, CommentLike, CommentLikeForm},
23     comment_reply::CommentReply,
24     person_mention::PersonMention,
25   },
26   traits::{Crud, Likeable},
27 };
28 use lemmy_utils::{
29   error::LemmyError,
30   utils::{remove_slurs, scrape_text_for_mentions},
31   ConnectionId,
32 };
33 use lemmy_websocket::{
34   send::{send_comment_ws_message, send_local_notifs},
35   LemmyContext,
36   UserOperationCrud,
37 };
38
39 #[async_trait::async_trait(?Send)]
40 impl PerformCrud for CreateComment {
41   type Response = CommentResponse;
42
43   #[tracing::instrument(skip(context, websocket_id))]
44   async fn perform(
45     &self,
46     context: &Data<LemmyContext>,
47     websocket_id: Option<ConnectionId>,
48   ) -> Result<CommentResponse, LemmyError> {
49     let data: &CreateComment = self;
50     let local_user_view =
51       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
52
53     let content_slurs_removed =
54       remove_slurs(&data.content.to_owned(), &context.settings().slur_regex());
55
56     // Check for a community ban
57     let post_id = data.post_id;
58     let post = get_post(post_id, context.pool()).await?;
59     let community_id = post.community_id;
60
61     check_community_ban(local_user_view.person.id, community_id, context.pool()).await?;
62     check_community_deleted_or_removed(community_id, context.pool()).await?;
63     check_post_deleted_or_removed(&post)?;
64
65     // Check if post is locked, no new comments
66     if post.locked {
67       return Err(LemmyError::from_message("locked"));
68     }
69
70     // Fetch the parent, if it exists
71     let parent_opt = if let Some(parent_id) = data.parent_id {
72       blocking(context.pool(), move |conn| Comment::read(conn, parent_id))
73         .await?
74         .ok()
75     } else {
76       None
77     };
78
79     // If there's a parent_id, check to make sure that comment is in that post
80     // Strange issue where sometimes the post ID of the parent comment is incorrect
81     if let Some(parent) = parent_opt.as_ref() {
82       if parent.post_id != post_id {
83         return Err(LemmyError::from_message("couldnt_create_comment"));
84       }
85     }
86
87     let comment_form = CommentForm {
88       content: content_slurs_removed,
89       post_id: data.post_id,
90       creator_id: local_user_view.person.id,
91       ..CommentForm::default()
92     };
93
94     // Create the comment
95     let comment_form2 = comment_form.clone();
96     let parent_path = parent_opt.to_owned().map(|t| t.path);
97     let inserted_comment = blocking(context.pool(), move |conn| {
98       Comment::create(conn, &comment_form2, parent_path.as_ref())
99     })
100     .await?
101     .map_err(|e| LemmyError::from_error_message(e, "couldnt_create_comment"))?;
102
103     // Necessary to update the ap_id
104     let inserted_comment_id = inserted_comment.id;
105     let protocol_and_hostname = context.settings().get_protocol_and_hostname();
106
107     let updated_comment: Comment =
108       blocking(context.pool(), move |conn| -> Result<Comment, LemmyError> {
109         let apub_id = generate_local_apub_endpoint(
110           EndpointType::Comment,
111           &inserted_comment_id.to_string(),
112           &protocol_and_hostname,
113         )?;
114         Ok(Comment::update_ap_id(conn, inserted_comment_id, apub_id)?)
115       })
116       .await?
117       .map_err(|e| e.with_message("couldnt_create_comment"))?;
118
119     // Scan the comment for user mentions, add those rows
120     let post_id = post.id;
121     let mentions = scrape_text_for_mentions(&comment_form.content);
122     let recipient_ids = send_local_notifs(
123       mentions,
124       &updated_comment,
125       &local_user_view.person,
126       &post,
127       true,
128       context,
129     )
130     .await?;
131
132     // You like your own comment by default
133     let like_form = CommentLikeForm {
134       comment_id: inserted_comment.id,
135       post_id,
136       person_id: local_user_view.person.id,
137       score: 1,
138     };
139
140     let like = move |conn: &'_ _| CommentLike::like(conn, &like_form);
141     blocking(context.pool(), like)
142       .await?
143       .map_err(|e| LemmyError::from_error_message(e, "couldnt_like_comment"))?;
144
145     let apub_comment: ApubComment = updated_comment.into();
146     CreateOrUpdateComment::send(
147       apub_comment.clone(),
148       &local_user_view.person.clone().into(),
149       CreateOrUpdateType::Create,
150       context,
151       &mut 0,
152     )
153     .await?;
154
155     // If its a reply, mark the parent as read
156     if let Some(parent) = parent_opt {
157       let parent_id = parent.id;
158       let comment_reply = blocking(context.pool(), move |conn| {
159         CommentReply::read_by_comment(conn, parent_id)
160       })
161       .await?;
162       if let Ok(reply) = comment_reply {
163         blocking(context.pool(), move |conn| {
164           CommentReply::update_read(conn, reply.id, true)
165         })
166         .await?
167         .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_replies"))?;
168       }
169
170       // If the parent has PersonMentions mark them as read too
171       let person_id = local_user_view.person.id;
172       let person_mention = blocking(context.pool(), move |conn| {
173         PersonMention::read_by_comment_and_person(conn, parent_id, person_id)
174       })
175       .await?;
176       if let Ok(mention) = person_mention {
177         blocking(context.pool(), move |conn| {
178           PersonMention::update_read(conn, mention.id, true)
179         })
180         .await?
181         .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_person_mentions"))?;
182       }
183     }
184
185     send_comment_ws_message(
186       inserted_comment.id,
187       UserOperationCrud::CreateComment,
188       websocket_id,
189       data.form_id.to_owned(),
190       Some(local_user_view.person.id),
191       recipient_ids,
192       context,
193     )
194     .await
195   }
196 }