2023-08-01 13:53:36 +00:00
|
|
|
use activitypub_federation::config::Data;
|
|
|
|
use actix_web::web::Json;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::{
|
2023-06-06 16:27:22 +00:00
|
|
|
build_response::{build_comment_response, send_local_notifs},
|
2022-05-03 17:44:13 +00:00
|
|
|
comment::{CommentResponse, EditComment},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-08-01 13:53:36 +00:00
|
|
|
send_activity::{ActivityChannel, SendActivityData},
|
2023-07-26 18:01:15 +00:00
|
|
|
utils::{
|
|
|
|
check_community_ban,
|
|
|
|
local_site_to_slur_regex,
|
|
|
|
local_user_view_from_jwt,
|
|
|
|
sanitize_html_opt,
|
|
|
|
},
|
2021-07-31 15:09:43 +00:00
|
|
|
};
|
2022-08-23 21:40:56 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-06 18:27:58 +00:00
|
|
|
source::{
|
|
|
|
actor_language::CommunityLanguage,
|
2022-10-27 09:24:07 +00:00
|
|
|
comment::{Comment, CommentUpdateForm},
|
|
|
|
local_site::LocalSite,
|
2022-10-06 18:27:58 +00:00
|
|
|
},
|
2022-08-23 21:40:56 +00:00
|
|
|
traits::Crud,
|
2023-02-14 21:41:22 +00:00
|
|
|
utils::naive_now,
|
2022-08-23 21:40:56 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::CommentView;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2023-07-10 14:50:07 +00:00
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
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
|
|
|
};
|
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn update_comment(
|
|
|
|
data: Json<EditComment>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<CommentResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let comment_id = data.comment_id;
|
|
|
|
let orig_comment = CommentView::read(&mut context.pool(), comment_id, None).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
orig_comment.community.id,
|
|
|
|
&mut context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Verify that only the creator can edit
|
|
|
|
if local_user_view.person.id != orig_comment.creator.id {
|
|
|
|
return Err(LemmyErrorType::NoCommentEditAllowed)?;
|
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let language_id = data.language_id;
|
|
|
|
CommunityLanguage::is_allowed_community_language(
|
|
|
|
&mut context.pool(),
|
|
|
|
language_id,
|
|
|
|
orig_comment.community.id,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Update the Content
|
|
|
|
let content = data
|
|
|
|
.content
|
|
|
|
.as_ref()
|
|
|
|
.map(|c| remove_slurs(c, &local_site_to_slur_regex(&local_site)));
|
|
|
|
is_valid_body_field(&content, false)?;
|
|
|
|
let content = sanitize_html_opt(&content);
|
2022-10-06 18:27:58 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let comment_id = data.comment_id;
|
2023-08-08 09:41:41 +00:00
|
|
|
let form = CommentUpdateForm {
|
|
|
|
content,
|
|
|
|
language_id: data.language_id,
|
|
|
|
updated: Some(Some(naive_now())),
|
|
|
|
..Default::default()
|
|
|
|
};
|
2023-08-01 13:53:36 +00:00
|
|
|
let updated_comment = Comment::update(&mut context.pool(), comment_id, &form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateComment)?;
|
2023-04-15 14:45:11 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Do the mentions / recipients
|
|
|
|
let updated_comment_content = updated_comment.content.clone();
|
|
|
|
let mentions = scrape_text_for_mentions(&updated_comment_content);
|
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
&updated_comment,
|
|
|
|
&local_user_view.person,
|
|
|
|
&orig_comment.post,
|
|
|
|
false,
|
|
|
|
&context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
ActivityChannel::submit_activity(
|
|
|
|
SendActivityData::UpdateComment(updated_comment.clone()),
|
|
|
|
&context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
Ok(Json(
|
2023-06-06 16:27:22 +00:00
|
|
|
build_comment_response(
|
2023-08-01 13:53:36 +00:00
|
|
|
&context,
|
2023-06-06 16:27:22 +00:00
|
|
|
updated_comment.id,
|
|
|
|
Some(local_user_view),
|
|
|
|
recipient_ids,
|
|
|
|
)
|
2023-08-01 13:53:36 +00:00
|
|
|
.await?,
|
|
|
|
))
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|