use crate::Perform; use actix_web::web::Data; use lemmy_api_common::{ blocking, get_local_user_view_from_jwt, is_admin, person::{BannedPersonsResponse, GetBannedPersons}, }; use lemmy_db_views_actor::person_view::PersonViewSafe; 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, _websocket_id: Option, ) -> Result { 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) } }