2021-11-06 12:37:55 +00:00
|
|
|
use crate::PerformCrud;
|
2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
comment::{CommentResponse, CreateComment},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::{
|
|
|
|
check_community_ban,
|
|
|
|
check_community_deleted_or_removed,
|
|
|
|
check_post_deleted_or_removed,
|
2022-11-28 14:29:33 +00:00
|
|
|
generate_local_apub_endpoint,
|
2022-05-03 17:44:13 +00:00
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
get_post,
|
2022-10-27 09:24:07 +00:00
|
|
|
local_site_to_slur_regex,
|
2022-11-28 14:29:33 +00:00
|
|
|
EndpointType,
|
2022-05-03 17:44:13 +00:00
|
|
|
},
|
2023-04-13 10:53:55 +00:00
|
|
|
websocket::UserOperationCrud,
|
2021-07-31 14:57:37 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
2022-10-06 18:27:58 +00:00
|
|
|
actor_language::CommunityLanguage,
|
2022-10-27 09:24:07 +00:00
|
|
|
comment::{Comment, CommentInsertForm, CommentLike, CommentLikeForm, CommentUpdateForm},
|
|
|
|
comment_reply::{CommentReply, CommentReplyUpdateForm},
|
|
|
|
local_site::LocalSite,
|
|
|
|
person_mention::{PersonMention, PersonMentionUpdateForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
},
|
|
|
|
traits::{Crud, Likeable},
|
2021-10-08 14:28:32 +00:00
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2023-04-15 14:45:11 +00:00
|
|
|
utils::{
|
|
|
|
mention::scrape_text_for_mentions,
|
|
|
|
slurs::remove_slurs,
|
|
|
|
validation::is_valid_body_field,
|
|
|
|
},
|
2021-03-25 19:19:40 +00:00
|
|
|
ConnectionId,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for CreateComment {
|
|
|
|
type Response = CommentResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-03-25 19:19:40 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &CreateComment = self;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let content_slurs_removed = remove_slurs(
|
2022-11-19 04:33:54 +00:00
|
|
|
&data.content.clone(),
|
2022-10-27 09:24:07 +00:00
|
|
|
&local_site_to_slur_regex(&local_site),
|
|
|
|
);
|
2023-04-15 14:45:11 +00:00
|
|
|
is_valid_body_field(&Some(content_slurs_removed.clone()))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Check for a community ban
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let post = get_post(post_id, context.pool()).await?;
|
2021-08-02 20:33:40 +00:00
|
|
|
let community_id = post.community_id;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-08-02 20:33:40 +00:00
|
|
|
check_community_ban(local_user_view.person.id, community_id, context.pool()).await?;
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed(community_id, context.pool()).await?;
|
|
|
|
check_post_deleted_or_removed(&post)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Check if post is locked, no new comments
|
|
|
|
if post.locked {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("locked"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
// Fetch the parent, if it exists
|
|
|
|
let parent_opt = if let Some(parent_id) = data.parent_id {
|
2022-11-09 10:05:00 +00:00
|
|
|
Comment::read(context.pool(), parent_id).await.ok()
|
2022-07-30 03:55:59 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
// If there's a parent_id, check to make sure that comment is in that post
|
|
|
|
// Strange issue where sometimes the post ID of the parent comment is incorrect
|
|
|
|
if let Some(parent) = parent_opt.as_ref() {
|
2021-03-25 19:19:40 +00:00
|
|
|
if parent.post_id != post_id {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("couldnt_create_comment"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-23 21:40:56 +00:00
|
|
|
// if no language is set, copy language from parent post/comment
|
|
|
|
let parent_language = parent_opt
|
|
|
|
.as_ref()
|
|
|
|
.map(|p| p.language_id)
|
|
|
|
.unwrap_or(post.language_id);
|
2022-10-06 18:27:58 +00:00
|
|
|
let language_id = data.language_id.unwrap_or(parent_language);
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityLanguage::is_allowed_community_language(
|
|
|
|
context.pool(),
|
|
|
|
Some(language_id),
|
|
|
|
community_id,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-08-23 21:40:56 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let comment_form = CommentInsertForm::builder()
|
2022-11-19 04:33:54 +00:00
|
|
|
.content(content_slurs_removed.clone())
|
2022-10-27 09:24:07 +00:00
|
|
|
.post_id(data.post_id)
|
|
|
|
.creator_id(local_user_view.person.id)
|
|
|
|
.language_id(Some(language_id))
|
|
|
|
.build();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Create the comment
|
2022-11-19 04:33:54 +00:00
|
|
|
let parent_path = parent_opt.clone().map(|t| t.path);
|
2023-05-23 23:00:19 +00:00
|
|
|
let inserted_comment = Comment::create(context.pool(), &comment_form, parent_path.as_ref())
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_create_comment"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Necessary to update the ap_id
|
|
|
|
let inserted_comment_id = inserted_comment.id;
|
2021-09-22 15:57:09 +00:00
|
|
|
let protocol_and_hostname = context.settings().get_protocol_and_hostname();
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let apub_id = generate_local_apub_endpoint(
|
|
|
|
EndpointType::Comment,
|
|
|
|
&inserted_comment_id.to_string(),
|
|
|
|
&protocol_and_hostname,
|
|
|
|
)?;
|
|
|
|
let updated_comment = Comment::update(
|
|
|
|
context.pool(),
|
|
|
|
inserted_comment_id,
|
|
|
|
&CommentUpdateForm::builder().ap_id(Some(apub_id)).build(),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_create_comment"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Scan the comment for user mentions, add those rows
|
|
|
|
let post_id = post.id;
|
2022-10-27 09:24:07 +00:00
|
|
|
let mentions = scrape_text_for_mentions(&content_slurs_removed);
|
2023-04-13 10:53:55 +00:00
|
|
|
let recipient_ids = context
|
|
|
|
.send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
&updated_comment,
|
|
|
|
&local_user_view.person,
|
|
|
|
&post,
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// You like your own comment by default
|
|
|
|
let like_form = CommentLikeForm {
|
|
|
|
comment_id: inserted_comment.id,
|
|
|
|
post_id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
score: 1,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentLike::like(context.pool(), &like_form)
|
|
|
|
.await
|
2022-03-16 20:11:49 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_like_comment"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-10-08 14:28:32 +00:00
|
|
|
// If its a reply, mark the parent as read
|
2022-07-30 03:55:59 +00:00
|
|
|
if let Some(parent) = parent_opt {
|
|
|
|
let parent_id = parent.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let comment_reply = CommentReply::read_by_comment(context.pool(), parent_id).await;
|
2022-07-30 03:55:59 +00:00
|
|
|
if let Ok(reply) = comment_reply {
|
2022-11-09 10:05:00 +00:00
|
|
|
CommentReply::update(
|
|
|
|
context.pool(),
|
|
|
|
reply.id,
|
|
|
|
&CommentReplyUpdateForm { read: Some(true) },
|
|
|
|
)
|
|
|
|
.await
|
2022-07-30 03:55:59 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_update_replies"))?;
|
2021-10-08 14:28:32 +00:00
|
|
|
}
|
2022-07-30 03:55:59 +00:00
|
|
|
|
2021-10-08 14:28:32 +00:00
|
|
|
// If the parent has PersonMentions mark them as read too
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let person_mention =
|
|
|
|
PersonMention::read_by_comment_and_person(context.pool(), parent_id, person_id).await;
|
2021-10-08 14:28:32 +00:00
|
|
|
if let Ok(mention) = person_mention {
|
2022-11-09 10:05:00 +00:00
|
|
|
PersonMention::update(
|
|
|
|
context.pool(),
|
|
|
|
mention.id,
|
|
|
|
&PersonMentionUpdateForm { read: Some(true) },
|
|
|
|
)
|
|
|
|
.await
|
2022-03-16 20:11:49 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_update_person_mentions"))?;
|
2021-10-08 14:28:32 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-04-13 10:53:55 +00:00
|
|
|
context
|
|
|
|
.send_comment_ws_message(
|
|
|
|
&UserOperationCrud::CreateComment,
|
|
|
|
inserted_comment.id,
|
|
|
|
websocket_id,
|
|
|
|
data.form_id.clone(),
|
|
|
|
Some(local_user_view.person.id),
|
|
|
|
recipient_ids,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|