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::{BanPerson, BanPersonResponse},
|
2023-07-26 18:01:15 +00:00
|
|
|
utils::{is_admin, local_user_view_from_jwt, remove_user_data, sanitize_html_opt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
moderator::{ModBan, ModBanForm},
|
2022-10-27 09:24:07 +00:00
|
|
|
person::{Person, PersonUpdateForm},
|
2022-04-13 18:12:25 +00:00
|
|
|
},
|
|
|
|
traits::Crud,
|
|
|
|
};
|
2023-03-01 17:19:46 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonView;
|
2023-04-15 14:45:11 +00:00
|
|
|
use lemmy_utils::{
|
2023-07-10 14:50:07 +00:00
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
2023-04-15 14:45:11 +00:00
|
|
|
utils::{time::naive_from_unix, validation::is_valid_body_field},
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for BanPerson {
|
|
|
|
type Response = BanPersonResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<BanPersonResponse, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &BanPerson = 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-06-26 08:47:01 +00:00
|
|
|
is_valid_body_field(&data.reason, false)?;
|
2023-04-15 14:45:11 +00:00
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
let ban = data.ban;
|
|
|
|
let banned_person_id = data.person_id;
|
|
|
|
let expires = data.expires.map(naive_from_unix);
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let person = Person::update(
|
2023-07-11 13:09:59 +00:00
|
|
|
&mut context.pool(),
|
2022-11-09 10:05:00 +00:00
|
|
|
banned_person_id,
|
|
|
|
&PersonUpdateForm::builder()
|
|
|
|
.banned(Some(ban))
|
|
|
|
.ban_expires(Some(expires))
|
|
|
|
.build(),
|
|
|
|
)
|
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateUser)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Remove their data if that's desired
|
|
|
|
let remove_data = data.remove_data.unwrap_or(false);
|
|
|
|
if remove_data {
|
2022-06-13 19:15:04 +00:00
|
|
|
remove_user_data(
|
|
|
|
person.id,
|
2023-07-11 13:09:59 +00:00
|
|
|
&mut context.pool(),
|
2022-06-22 20:24:54 +00:00
|
|
|
context.settings(),
|
2022-06-13 19:15:04 +00:00
|
|
|
context.client(),
|
|
|
|
)
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModBanForm {
|
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
2023-07-26 18:01:15 +00:00
|
|
|
reason: sanitize_html_opt(&data.reason),
|
2022-04-13 18:12:25 +00:00
|
|
|
banned: Some(data.ban),
|
|
|
|
expires,
|
|
|
|
};
|
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
ModBan::create(&mut context.pool(), &form).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let person_id = data.person_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let person_view = PersonView::read(&mut context.pool(), person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
Ok(BanPersonResponse {
|
2022-04-13 18:12:25 +00:00
|
|
|
person_view,
|
|
|
|
banned: data.ban,
|
2023-06-06 16:27:22 +00:00
|
|
|
})
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|