2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
person::{BanPerson, BanPersonResponse},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_local_user_view_from_jwt, is_admin, remove_user_data},
|
2022-11-26 02:04:46 +00:00
|
|
|
websocket::{messages::SendAllMessage, UserOperation},
|
|
|
|
LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_apub::{
|
|
|
|
activities::block::SiteOrCommunity,
|
|
|
|
protocol::activities::block::{block_user::BlockUser, undo_block_user::UndoBlockUser},
|
|
|
|
};
|
|
|
|
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,
|
|
|
|
};
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_db_views::structs::SiteView;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonViewSafe;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, utils::naive_from_unix, 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)?;
|
|
|
|
|
|
|
|
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;
|
2022-11-09 10:05:00 +00:00
|
|
|
let person_view = PersonViewSafe::read(context.pool(), person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let site = SiteOrCommunity::Site(SiteView::read_local(context.pool()).await?.site.into());
|
2022-04-13 18:12:25 +00:00
|
|
|
// if the action affects a local user, federate to other instances
|
|
|
|
if person.local {
|
|
|
|
if ban {
|
|
|
|
BlockUser::send(
|
|
|
|
&site,
|
|
|
|
&person.into(),
|
|
|
|
&local_user_view.person.into(),
|
|
|
|
remove_data,
|
|
|
|
data.reason.clone(),
|
|
|
|
expires,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
} else {
|
|
|
|
UndoBlockUser::send(
|
|
|
|
&site,
|
|
|
|
&person.into(),
|
|
|
|
&local_user_view.person.into(),
|
|
|
|
data.reason.clone(),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = BanPersonResponse {
|
|
|
|
person_view,
|
|
|
|
banned: data.ban,
|
|
|
|
};
|
|
|
|
|
|
|
|
context.chat_server().do_send(SendAllMessage {
|
|
|
|
op: UserOperation::BanPerson,
|
|
|
|
response: res.clone(),
|
|
|
|
websocket_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|