2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
person::{BannedPersonsResponse, GetBannedPersons},
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{is_admin, local_user_view_from_jwt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2023-03-01 17:19:46 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonView;
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for GetBannedPersons {
|
|
|
|
type Response = BannedPersonsResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<Self::Response, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &GetBannedPersons = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Make sure user is an admin
|
|
|
|
is_admin(&local_user_view)?;
|
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
let banned = PersonView::banned(context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
Ok(Self::Response { banned })
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|