2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
person::{BannedPersonsResponse, GetBannedPersons},
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::{blocking, get_local_user_view_from_jwt, is_admin},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonViewSafe;
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_utils::{ConnectionId, LemmyError};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for GetBannedPersons {
|
|
|
|
type Response = BannedPersonsResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<Self::Response, LemmyError> {
|
|
|
|
let data: &GetBannedPersons = self;
|
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
|
|
|
|
|
|
|
// Make sure user is an admin
|
|
|
|
is_admin(&local_user_view)?;
|
|
|
|
|
|
|
|
let banned = blocking(context.pool(), PersonViewSafe::banned).await??;
|
|
|
|
|
|
|
|
let res = Self::Response { banned };
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|