2023-09-05 09:33:46 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2023-10-20 00:15:55 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
context::LemmyContext,
|
|
|
|
person::{BlockPerson, BlockPersonResponse},
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::person_block::{PersonBlock, PersonBlockForm},
|
|
|
|
traits::Blockable,
|
|
|
|
};
|
2023-08-24 09:40:08 +00:00
|
|
|
use lemmy_db_views::structs::LocalUserView;
|
2023-10-20 00:15:55 +00:00
|
|
|
use lemmy_db_views_actor::structs::PersonView;
|
2024-04-10 14:14:11 +00:00
|
|
|
use lemmy_utils::error::{LemmyErrorExt, LemmyErrorType, LemmyResult};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn block_person(
|
|
|
|
data: Json<BlockPerson>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<Json<BlockPersonResponse>> {
|
2023-09-05 09:33:46 +00:00
|
|
|
let target_id = data.person_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
// Don't let a person block themselves
|
|
|
|
if target_id == person_id {
|
|
|
|
Err(LemmyErrorType::CantBlockYourself)?
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let person_block_form = PersonBlockForm {
|
|
|
|
person_id,
|
|
|
|
target_id,
|
|
|
|
};
|
2022-07-05 23:02:54 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let target_user = LocalUserView::read_person(&mut context.pool(), target_id).await;
|
|
|
|
if target_user.map(|t| t.local_user.admin) == Ok(true) {
|
|
|
|
Err(LemmyErrorType::CantBlockAdmin)?
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
if data.block {
|
|
|
|
PersonBlock::block(&mut context.pool(), &person_block_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::PersonBlockAlreadyExists)?;
|
|
|
|
} else {
|
|
|
|
PersonBlock::unblock(&mut context.pool(), &person_block_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::PersonBlockAlreadyExists)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
2023-09-05 09:33:46 +00:00
|
|
|
|
2023-10-20 00:15:55 +00:00
|
|
|
let person_view = PersonView::read(&mut context.pool(), target_id).await?;
|
|
|
|
Ok(Json(BlockPersonResponse {
|
|
|
|
person_view,
|
|
|
|
blocked: data.block,
|
|
|
|
}))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|