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