2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
|
|
|
check_community_ban,
|
|
|
|
comment::*,
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
send_local_notifs,
|
|
|
|
};
|
2021-07-31 17:26:17 +00:00
|
|
|
use lemmy_apub::activities::{
|
|
|
|
comment::create_or_update::CreateOrUpdateComment,
|
2021-07-31 15:09:43 +00:00
|
|
|
CreateOrUpdateType,
|
|
|
|
};
|
2021-08-17 18:04:58 +00:00
|
|
|
use lemmy_db_queries::source::comment::Comment_;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_db_schema::source::comment::*;
|
|
|
|
use lemmy_db_views::comment_view::CommentView;
|
|
|
|
use lemmy_utils::{
|
|
|
|
utils::{remove_slurs, scrape_text_for_mentions},
|
|
|
|
ApiError,
|
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
|
|
|
};
|
2021-08-17 18:04:58 +00:00
|
|
|
use lemmy_websocket::{send::send_comment_ws_message, LemmyContext, UserOperationCrud};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for EditComment {
|
|
|
|
type Response = CommentResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &EditComment = 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?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let comment_id = data.comment_id;
|
|
|
|
let orig_comment = blocking(context.pool(), move |conn| {
|
2021-07-05 16:07:26 +00:00
|
|
|
CommentView::read(conn, comment_id, None)
|
2021-03-25 19:19:40 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
// TODO is this necessary? It should really only need to check on create
|
2021-03-25 19:19:40 +00:00
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
orig_comment.community.id,
|
|
|
|
context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
// Verify that only the creator can edit
|
|
|
|
if local_user_view.person.id != orig_comment.creator.id {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("no_comment_edit_allowed").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do the update
|
2021-09-22 15:57:09 +00:00
|
|
|
let content_slurs_removed =
|
|
|
|
remove_slurs(&data.content.to_owned(), &context.settings().slur_regex());
|
2021-03-25 19:19:40 +00:00
|
|
|
let comment_id = data.comment_id;
|
2021-04-16 13:10:43 +00:00
|
|
|
let updated_comment = blocking(context.pool(), move |conn| {
|
2021-03-25 19:19:40 +00:00
|
|
|
Comment::update_content(conn, comment_id, &content_slurs_removed)
|
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("couldnt_update_comment", e))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-07-31 17:26:17 +00:00
|
|
|
// Send the apub update
|
2021-07-31 15:09:43 +00:00
|
|
|
CreateOrUpdateComment::send(
|
|
|
|
&updated_comment,
|
|
|
|
&local_user_view.person,
|
|
|
|
CreateOrUpdateType::Update,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Do the mentions / recipients
|
|
|
|
let updated_comment_content = updated_comment.content.to_owned();
|
|
|
|
let mentions = scrape_text_for_mentions(&updated_comment_content);
|
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
mentions,
|
|
|
|
updated_comment,
|
|
|
|
local_user_view.person.clone(),
|
|
|
|
orig_comment.post,
|
|
|
|
context.pool(),
|
|
|
|
false,
|
2021-09-22 15:57:09 +00:00
|
|
|
&context.settings(),
|
2021-03-25 19:19:40 +00:00
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
send_comment_ws_message(
|
|
|
|
data.comment_id,
|
|
|
|
UserOperationCrud::EditComment,
|
2021-03-25 19:19:40 +00:00
|
|
|
websocket_id,
|
2021-08-17 18:04:58 +00:00
|
|
|
data.form_id.to_owned(),
|
|
|
|
None,
|
|
|
|
recipient_ids,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|