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::{BlockPerson, BlockPersonResponse},
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::local_user_view_from_jwt,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::person_block::{PersonBlock, PersonBlockForm},
|
|
|
|
traits::Blockable,
|
|
|
|
};
|
2023-03-01 17:19:46 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonView;
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for BlockPerson {
|
|
|
|
type Response = BlockPersonResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<BlockPersonResponse, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &BlockPerson = 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
|
|
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
let target_person_view = PersonView::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"))?;
|
|
|
|
}
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
Ok(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,
|
2023-06-06 16:27:22 +00:00
|
|
|
})
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|