]> Untitled Git - lemmy.git/blob - crates/api_crud/src/post/remove.rs
Various pedantic clippy fixes (#2568)
[lemmy.git] / crates / api_crud / src / post / remove.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   post::{PostResponse, RemovePost},
5   utils::{check_community_ban, get_local_user_view_from_jwt, is_mod_or_admin},
6 };
7 use lemmy_apub::activities::deletion::{send_apub_delete_in_community, DeletableObjects};
8 use lemmy_db_schema::{
9   source::{
10     community::Community,
11     moderator::{ModRemovePost, ModRemovePostForm},
12     post::{Post, PostUpdateForm},
13   },
14   traits::Crud,
15 };
16 use lemmy_utils::{error::LemmyError, ConnectionId};
17 use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
18
19 #[async_trait::async_trait(?Send)]
20 impl PerformCrud for RemovePost {
21   type Response = PostResponse;
22
23   #[tracing::instrument(skip(context, websocket_id))]
24   async fn perform(
25     &self,
26     context: &Data<LemmyContext>,
27     websocket_id: Option<ConnectionId>,
28   ) -> Result<PostResponse, LemmyError> {
29     let data: &RemovePost = self;
30     let local_user_view =
31       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
32
33     let post_id = data.post_id;
34     let orig_post = Post::read(context.pool(), post_id).await?;
35
36     check_community_ban(
37       local_user_view.person.id,
38       orig_post.community_id,
39       context.pool(),
40     )
41     .await?;
42
43     // Verify that only the mods can remove
44     is_mod_or_admin(
45       context.pool(),
46       local_user_view.person.id,
47       orig_post.community_id,
48     )
49     .await?;
50
51     // Update the post
52     let post_id = data.post_id;
53     let removed = data.removed;
54     let updated_post = Post::update(
55       context.pool(),
56       post_id,
57       &PostUpdateForm::builder().removed(Some(removed)).build(),
58     )
59     .await?;
60
61     // Mod tables
62     let form = ModRemovePostForm {
63       mod_person_id: local_user_view.person.id,
64       post_id: data.post_id,
65       removed: Some(removed),
66       reason: data.reason.clone(),
67     };
68     ModRemovePost::create(context.pool(), &form).await?;
69
70     let res = send_post_ws_message(
71       data.post_id,
72       UserOperationCrud::RemovePost,
73       websocket_id,
74       Some(local_user_view.person.id),
75       context,
76     )
77     .await?;
78
79     // apub updates
80     let community = Community::read(context.pool(), orig_post.community_id).await?;
81     let deletable = DeletableObjects::Post(Box::new(updated_post.into()));
82     send_apub_delete_in_community(
83       local_user_view.person,
84       community,
85       deletable,
86       data.reason.clone().or_else(|| Some(String::new())),
87       removed,
88       context,
89     )
90     .await?;
91     Ok(res)
92   }
93 }