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},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_local_user_view_from_jwt, is_admin, remove_user_data},
|
2022-12-09 15:31:47 +00:00
|
|
|
websocket::UserOperation,
|
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::{
|
|
|
|
error::LemmyError,
|
|
|
|
utils::{time::naive_from_unix, validation::is_valid_body_field},
|
|
|
|
ConnectionId,
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for BanPerson {
|
|
|
|
type Response = BanPersonResponse;
|
|
|
|
|
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<BanPersonResponse, LemmyError> {
|
|
|
|
let data: &BanPerson = 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)?;
|
|
|
|
|
2023-04-15 14:45:11 +00:00
|
|
|
is_valid_body_field(&data.reason)?;
|
|
|
|
|
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(
|
|
|
|
context.pool(),
|
|
|
|
banned_person_id,
|
|
|
|
&PersonUpdateForm::builder()
|
|
|
|
.banned(Some(ban))
|
|
|
|
.ban_expires(Some(expires))
|
|
|
|
.build(),
|
|
|
|
)
|
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_update_user"))?;
|
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,
|
|
|
|
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,
|
2022-11-19 04:33:54 +00:00
|
|
|
reason: data.reason.clone(),
|
2022-04-13 18:12:25 +00:00
|
|
|
banned: Some(data.ban),
|
|
|
|
expires,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
ModBan::create(context.pool(), &form).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let person_id = data.person_id;
|
2023-03-01 17:19:46 +00:00
|
|
|
let person_view = PersonView::read(context.pool(), person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let res = BanPersonResponse {
|
|
|
|
person_view,
|
|
|
|
banned: data.ban,
|
|
|
|
};
|
|
|
|
|
2023-04-13 10:53:55 +00:00
|
|
|
context.send_all_ws_message(&UserOperation::BanPerson, &res, websocket_id)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|