mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-18 10:24:01 +00:00
4e12e25c59
* First pass at adding admin purge. #904 #1331 * Breaking out purge into 4 tables for the 4 purgeable types. * Using CommunitySafe instead in view * Fix db_schema features flags. * Attempting to pass API key. * Adding pictrs image purging - Added pictrs_config block, for API_KEY - Clear out image columns after purging * Remove the remove_images field from a few of the purge API calls. * Fix some suggestions by @nutomic. * Add separate pictrs reqwest client. * Update defaults.hjson Co-authored-by: Nutomic <me@nutomic.com>
75 lines
2 KiB
Rust
75 lines
2 KiB
Rust
use crate::Perform;
|
|
use actix_web::web::Data;
|
|
use lemmy_api_common::{
|
|
request::purge_image_from_pictrs,
|
|
site::{PurgeItemResponse, PurgePerson},
|
|
utils::{blocking, get_local_user_view_from_jwt, is_admin, purge_image_posts_for_person},
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
moderator::{AdminPurgePerson, AdminPurgePersonForm},
|
|
person::Person,
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl Perform for PurgePerson {
|
|
type Response = PurgeItemResponse;
|
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
|
async fn perform(
|
|
&self,
|
|
context: &Data<LemmyContext>,
|
|
_websocket_id: Option<ConnectionId>,
|
|
) -> Result<Self::Response, LemmyError> {
|
|
let data: &Self = self;
|
|
let local_user_view =
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
|
|
|
// Only let admins purge an item
|
|
is_admin(&local_user_view)?;
|
|
|
|
// Read the person to get their images
|
|
let person_id = data.person_id;
|
|
let person = blocking(context.pool(), move |conn| Person::read(conn, person_id)).await??;
|
|
|
|
if let Some(banner) = person.banner {
|
|
purge_image_from_pictrs(context.client(), &context.settings(), &banner)
|
|
.await
|
|
.ok();
|
|
}
|
|
|
|
if let Some(avatar) = person.avatar {
|
|
purge_image_from_pictrs(context.client(), &context.settings(), &avatar)
|
|
.await
|
|
.ok();
|
|
}
|
|
|
|
purge_image_posts_for_person(
|
|
person_id,
|
|
context.pool(),
|
|
&context.settings(),
|
|
context.client(),
|
|
)
|
|
.await?;
|
|
|
|
blocking(context.pool(), move |conn| Person::delete(conn, person_id)).await??;
|
|
|
|
// Mod tables
|
|
let reason = data.reason.to_owned();
|
|
let form = AdminPurgePersonForm {
|
|
admin_person_id: local_user_view.person.id,
|
|
reason,
|
|
};
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
AdminPurgePerson::create(conn, &form)
|
|
})
|
|
.await??;
|
|
|
|
Ok(PurgeItemResponse { success: true })
|
|
}
|
|
}
|