2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
person::{BlockPerson, BlockPersonResponse},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::get_local_user_view_from_jwt,
|
2022-11-26 02:04:46 +00:00
|
|
|
LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::person_block::{PersonBlock, PersonBlockForm},
|
|
|
|
traits::Blockable,
|
|
|
|
};
|
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, ConnectionId};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for BlockPerson {
|
|
|
|
type Response = BlockPersonResponse;
|
|
|
|
|
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<BlockPersonResponse, LemmyError> {
|
|
|
|
let data: &BlockPerson = self;
|
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
|
|
|
|
|
|
|
let target_id = data.person_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
|
|
|
|
// Don't let a person block themselves
|
|
|
|
if target_id == person_id {
|
|
|
|
return Err(LemmyError::from_message("cant_block_yourself"));
|
|
|
|
}
|
|
|
|
|
|
|
|
let person_block_form = PersonBlockForm {
|
|
|
|
person_id,
|
|
|
|
target_id,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let target_person_view = PersonViewSafe::read(context.pool(), target_id).await?;
|
2022-07-05 23:02:54 +00:00
|
|
|
|
|
|
|
if target_person_view.person.admin {
|
|
|
|
return Err(LemmyError::from_message("cant_block_admin"));
|
|
|
|
}
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
if data.block {
|
2022-11-09 10:05:00 +00:00
|
|
|
PersonBlock::block(context.pool(), &person_block_form)
|
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "person_block_already_exists"))?;
|
|
|
|
} else {
|
2022-11-09 10:05:00 +00:00
|
|
|
PersonBlock::unblock(context.pool(), &person_block_form)
|
|
|
|
.await
|
2022-04-13 18:12:25 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "person_block_already_exists"))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = BlockPersonResponse {
|
2022-07-05 23:02:54 +00:00
|
|
|
person_view: target_person_view,
|
2022-04-13 18:12:25 +00:00
|
|
|
blocked: data.block,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|