lemmy/crates/api/src/local_user/list_banned.rs

34 lines
928 B
Rust
Raw Normal View History

2022-04-13 18:12:25 +00:00
use crate::Perform;
use actix_web::web::Data;
use lemmy_api_common::{
person::{BannedPersonsResponse, GetBannedPersons},
2022-11-09 10:05:00 +00:00
utils::{get_local_user_view_from_jwt, is_admin},
2022-04-13 18:12:25 +00:00
};
use lemmy_db_views_actor::structs::PersonViewSafe;
use lemmy_utils::{error::LemmyError, ConnectionId};
2022-04-13 18:12:25 +00:00
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)?;
2022-11-09 10:05:00 +00:00
let banned = PersonViewSafe::banned(context.pool()).await?;
2022-04-13 18:12:25 +00:00
let res = Self::Response { banned };
Ok(res)
}
}