mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-05 00:24:52 +00:00
Nutomic
66a63df152
* Instance blocks with mod log entry and expiration (fixes #2506) * separate table for instance block mod log * fix tests * fix ts * modlog entry for allow instance * fix test cleanup * add back test * clippy * fix check * more changes * move files * update * sql fmt * partly working * fix setup * cleanup * fixes * prettier * try catch * address comments
65 lines
1.7 KiB
Rust
65 lines
1.7 KiB
Rust
use actix_web::web::{Data, Json};
|
|
use lemmy_api_common::{
|
|
context::LemmyContext,
|
|
person::{AddAdmin, AddAdminResponse},
|
|
utils::is_admin,
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
local_user::{LocalUser, LocalUserUpdateForm},
|
|
mod_log::moderator::{ModAdd, ModAddForm},
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_db_views_actor::structs::PersonView;
|
|
use lemmy_utils::error::{LemmyErrorExt, LemmyErrorType, LemmyResult};
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn add_admin(
|
|
data: Json<AddAdmin>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> LemmyResult<Json<AddAdminResponse>> {
|
|
// Make sure user is an admin
|
|
is_admin(&local_user_view)?;
|
|
|
|
// If its an admin removal, also check that you're a higher admin
|
|
if !data.added {
|
|
LocalUser::is_higher_admin_check(
|
|
&mut context.pool(),
|
|
local_user_view.person.id,
|
|
vec![data.person_id],
|
|
)
|
|
.await?;
|
|
}
|
|
|
|
// Make sure that the person_id added is local
|
|
let added_local_user = LocalUserView::read_person(&mut context.pool(), data.person_id)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::ObjectNotLocal)?;
|
|
|
|
LocalUser::update(
|
|
&mut context.pool(),
|
|
added_local_user.local_user.id,
|
|
&LocalUserUpdateForm {
|
|
admin: Some(data.added),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateUser)?;
|
|
|
|
// Mod tables
|
|
let form = ModAddForm {
|
|
mod_person_id: local_user_view.person.id,
|
|
other_person_id: added_local_user.person.id,
|
|
removed: Some(!data.added),
|
|
};
|
|
|
|
ModAdd::create(&mut context.pool(), &form).await?;
|
|
|
|
let admins = PersonView::admins(&mut context.pool()).await?;
|
|
|
|
Ok(Json(AddAdminResponse { admins }))
|
|
}
|