]> Untitled Git - lemmy.git/blob - crates/api/src/post/lock.rs
1e11117f2f2703619db49acce7954fbf22230480
[lemmy.git] / crates / api / src / post / lock.rs
1 use crate::Perform;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   post::{LockPost, PostResponse},
5   utils::{
6     blocking,
7     check_community_ban,
8     check_community_deleted_or_removed,
9     get_local_user_view_from_jwt,
10     is_mod_or_admin,
11   },
12 };
13 use lemmy_apub::{
14   objects::post::ApubPost,
15   protocol::activities::{create_or_update::post::CreateOrUpdatePost, CreateOrUpdateType},
16 };
17 use lemmy_db_schema::{
18   source::{
19     moderator::{ModLockPost, ModLockPostForm},
20     post::Post,
21   },
22   traits::Crud,
23 };
24 use lemmy_utils::{error::LemmyError, ConnectionId};
25 use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperation};
26
27 #[async_trait::async_trait(?Send)]
28 impl Perform for LockPost {
29   type Response = PostResponse;
30
31   #[tracing::instrument(skip(context, websocket_id))]
32   async fn perform(
33     &self,
34     context: &Data<LemmyContext>,
35     websocket_id: Option<ConnectionId>,
36   ) -> Result<PostResponse, LemmyError> {
37     let data: &LockPost = self;
38     let local_user_view =
39       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
40
41     let post_id = data.post_id;
42     let orig_post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
43
44     check_community_ban(
45       local_user_view.person.id,
46       orig_post.community_id,
47       context.pool(),
48     )
49     .await?;
50     check_community_deleted_or_removed(orig_post.community_id, context.pool()).await?;
51
52     // Verify that only the mods can lock
53     is_mod_or_admin(
54       context.pool(),
55       local_user_view.person.id,
56       orig_post.community_id,
57     )
58     .await?;
59
60     // Update the post
61     let post_id = data.post_id;
62     let locked = data.locked;
63     let updated_post: ApubPost = blocking(context.pool(), move |conn| {
64       Post::update_locked(conn, post_id, locked)
65     })
66     .await??
67     .into();
68
69     // Mod tables
70     let form = ModLockPostForm {
71       mod_person_id: local_user_view.person.id,
72       post_id: data.post_id,
73       locked: Some(locked),
74     };
75     blocking(context.pool(), move |conn| ModLockPost::create(conn, &form)).await??;
76
77     // apub updates
78     CreateOrUpdatePost::send(
79       updated_post,
80       &local_user_view.person.clone().into(),
81       CreateOrUpdateType::Update,
82       context,
83     )
84     .await?;
85
86     send_post_ws_message(
87       data.post_id,
88       UserOperation::LockPost,
89       websocket_id,
90       Some(local_user_view.person.id),
91       context,
92     )
93     .await
94   }
95 }