mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-20 11:21:17 +00:00
Nutomic
f858d8cbce
* Remove explicit auth params (ref #3725) Only take auth via header or cookie. This requires a new version of lemmy-js-client for api tests to pass. * rework api_crud * remove remaining auth params, move logic to session middleware * fmt, fix test * update js client * remove auth param from api tests * Pass auth as header * add ! * url vars, setHeader * cleanup * fmt * update * Updating for new lemmy-js-client. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
40 lines
1.2 KiB
Rust
40 lines
1.2 KiB
Rust
use activitypub_federation::config::Data;
|
|
use actix_web::web::Json;
|
|
use lemmy_api_common::{
|
|
context::LemmyContext,
|
|
site::{BlockInstance, BlockInstanceResponse},
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::instance_block::{InstanceBlock, InstanceBlockForm},
|
|
traits::Blockable,
|
|
};
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn block_instance(
|
|
data: Json<BlockInstance>,
|
|
local_user_view: LocalUserView,
|
|
context: Data<LemmyContext>,
|
|
) -> Result<Json<BlockInstanceResponse>, LemmyError> {
|
|
let instance_id = data.instance_id;
|
|
let person_id = local_user_view.person.id;
|
|
let instance_block_form = InstanceBlockForm {
|
|
person_id,
|
|
instance_id,
|
|
};
|
|
|
|
if data.block {
|
|
InstanceBlock::block(&mut context.pool(), &instance_block_form)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::InstanceBlockAlreadyExists)?;
|
|
} else {
|
|
InstanceBlock::unblock(&mut context.pool(), &instance_block_form)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::InstanceBlockAlreadyExists)?;
|
|
}
|
|
|
|
Ok(Json(BlockInstanceResponse {
|
|
blocked: data.block,
|
|
}))
|
|
}
|