2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
post::{DeletePost, PostResponse},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{check_community_ban, check_community_deleted_or_removed, get_local_user_view_from_jwt},
|
2022-11-26 02:04:46 +00:00
|
|
|
websocket::{send::send_post_ws_message, UserOperationCrud},
|
|
|
|
LemmyContext,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2022-02-14 15:14:24 +00:00
|
|
|
use lemmy_apub::activities::deletion::{send_apub_delete_in_community, DeletableObjects};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{
|
|
|
|
community::Community,
|
|
|
|
post::{Post, PostUpdateForm},
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for DeletePost {
|
|
|
|
type Response = PostResponse;
|
|
|
|
|
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<PostResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &DeletePost = 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 post_id = data.post_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let orig_post = Post::read(context.pool(), post_id).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_post.deleted == data.deleted {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("couldnt_update_post"));
|
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_post.community_id,
|
|
|
|
context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed(orig_post.community_id, context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Verify that only the creator can delete
|
|
|
|
if !Post::is_post_creator(local_user_view.person.id, orig_post.creator_id) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("no_post_edit_allowed"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update the post
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let deleted = data.deleted;
|
2022-11-09 10:05:00 +00:00
|
|
|
let updated_post = Post::update(
|
|
|
|
context.pool(),
|
|
|
|
post_id,
|
|
|
|
&PostUpdateForm::builder().deleted(Some(deleted)).build(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-02-14 15:14:24 +00:00
|
|
|
let res = send_post_ws_message(
|
|
|
|
data.post_id,
|
|
|
|
UserOperationCrud::DeletePost,
|
|
|
|
websocket_id,
|
|
|
|
Some(local_user_view.person.id),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
// apub updates
|
2022-11-09 10:05:00 +00:00
|
|
|
let community = Community::read(context.pool(), orig_post.community_id).await?;
|
2022-02-14 15:14:24 +00:00
|
|
|
let deletable = DeletableObjects::Post(Box::new(updated_post.into()));
|
|
|
|
send_apub_delete_in_community(
|
|
|
|
local_user_view.person,
|
|
|
|
community,
|
|
|
|
deletable,
|
|
|
|
None,
|
2021-08-17 18:04:58 +00:00
|
|
|
deleted,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-02-14 15:14:24 +00:00
|
|
|
Ok(res)
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|