2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
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, DeleteComment},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{check_community_ban, local_user_view_from_jwt},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{
|
|
|
|
comment::{Comment, CommentUpdateForm},
|
|
|
|
post::Post,
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::CommentView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for DeleteComment {
|
|
|
|
type Response = CommentResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<CommentResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &DeleteComment = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let comment_id = data.comment_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let orig_comment = CommentView::read(context.pool(), comment_id, None).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-11-03 17:47:24 +00:00
|
|
|
// Dont delete it if its already been deleted.
|
|
|
|
if orig_comment.comment.deleted == data.deleted {
|
2023-07-10 14:50:07 +00:00
|
|
|
return Err(LemmyErrorType::CouldntUpdateComment)?;
|
2021-11-03 17:47:24 +00:00
|
|
|
}
|
|
|
|
|
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 delete
|
|
|
|
if local_user_view.person.id != orig_comment.creator.id {
|
2023-07-10 14:50:07 +00:00
|
|
|
return Err(LemmyErrorType::NoCommentEditAllowed)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do the delete
|
|
|
|
let deleted = data.deleted;
|
2022-11-09 10:05:00 +00:00
|
|
|
let updated_comment = Comment::update(
|
|
|
|
context.pool(),
|
|
|
|
comment_id,
|
|
|
|
&CommentUpdateForm::builder().deleted(Some(deleted)).build(),
|
|
|
|
)
|
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateComment)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-11-16 00:58:15 +00:00
|
|
|
let post_id = updated_comment.post_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let post = Post::read(context.pool(), post_id).await?;
|
2023-06-06 16:27:22 +00:00
|
|
|
let recipient_ids = send_local_notifs(
|
|
|
|
vec![],
|
|
|
|
&updated_comment,
|
|
|
|
&local_user_view.person,
|
|
|
|
&post,
|
|
|
|
false,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-02-14 15:14:24 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
build_comment_response(
|
|
|
|
context,
|
|
|
|
updated_comment.id,
|
|
|
|
Some(local_user_view),
|
|
|
|
None,
|
|
|
|
recipient_ids,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|