]> Untitled Git - lemmy.git/blob - crates/api/src/local_user/add_admin.rs
Add diesel_async, get rid of blocking function (#2510)
[lemmy.git] / crates / api / src / local_user / add_admin.rs
1 use crate::Perform;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   person::{AddAdmin, AddAdminResponse},
5   utils::{get_local_user_view_from_jwt, is_admin},
6 };
7 use lemmy_db_schema::{
8   source::{
9     moderator::{ModAdd, ModAddForm},
10     person::{Person, PersonUpdateForm},
11   },
12   traits::Crud,
13 };
14 use lemmy_db_views_actor::structs::PersonViewSafe;
15 use lemmy_utils::{error::LemmyError, ConnectionId};
16 use lemmy_websocket::{messages::SendAllMessage, LemmyContext, UserOperation};
17
18 #[async_trait::async_trait(?Send)]
19 impl Perform for AddAdmin {
20   type Response = AddAdminResponse;
21
22   #[tracing::instrument(skip(context, websocket_id))]
23   async fn perform(
24     &self,
25     context: &Data<LemmyContext>,
26     websocket_id: Option<ConnectionId>,
27   ) -> Result<AddAdminResponse, LemmyError> {
28     let data: &AddAdmin = self;
29     let local_user_view =
30       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
31
32     // Make sure user is an admin
33     is_admin(&local_user_view)?;
34
35     let added = data.added;
36     let added_person_id = data.person_id;
37     let added_admin = Person::update(
38       context.pool(),
39       added_person_id,
40       &PersonUpdateForm::builder().admin(Some(added)).build(),
41     )
42     .await
43     .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_user"))?;
44
45     // Mod tables
46     let form = ModAddForm {
47       mod_person_id: local_user_view.person.id,
48       other_person_id: added_admin.id,
49       removed: Some(!data.added),
50     };
51
52     ModAdd::create(context.pool(), &form).await?;
53
54     let admins = PersonViewSafe::admins(context.pool()).await?;
55
56     let res = AddAdminResponse { admins };
57
58     context.chat_server().do_send(SendAllMessage {
59       op: UserOperation::AddAdmin,
60       response: res.clone(),
61       websocket_id,
62     });
63
64     Ok(res)
65   }
66 }