mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-14 16:34:01 +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>
69 lines
1.8 KiB
Rust
69 lines
1.8 KiB
Rust
use activitypub_federation::config::Data;
|
|
use actix_web::web::Json;
|
|
use lemmy_api_common::{
|
|
build_response::build_community_response,
|
|
community::{CommunityResponse, RemoveCommunity},
|
|
context::LemmyContext,
|
|
send_activity::{ActivityChannel, SendActivityData},
|
|
utils::is_admin,
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::{
|
|
community::{Community, CommunityUpdateForm},
|
|
moderator::{ModRemoveCommunity, ModRemoveCommunityForm},
|
|
},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_utils::{
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
|
utils::time::naive_from_unix,
|
|
};
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn remove_community(
|
|
data: Json<RemoveCommunity>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> Result<Json<CommunityResponse>, LemmyError> {
|
|
// Verify its an admin (only an admin can remove a community)
|
|
is_admin(&local_user_view)?;
|
|
|
|
// Do the remove
|
|
let community_id = data.community_id;
|
|
let removed = data.removed;
|
|
let community = Community::update(
|
|
&mut context.pool(),
|
|
community_id,
|
|
&CommunityUpdateForm {
|
|
removed: Some(removed),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateCommunity)?;
|
|
|
|
// Mod tables
|
|
let expires = data.expires.map(naive_from_unix);
|
|
let form = ModRemoveCommunityForm {
|
|
mod_person_id: local_user_view.person.id,
|
|
community_id: data.community_id,
|
|
removed: Some(removed),
|
|
reason: data.reason.clone(),
|
|
expires,
|
|
};
|
|
ModRemoveCommunity::create(&mut context.pool(), &form).await?;
|
|
|
|
ActivityChannel::submit_activity(
|
|
SendActivityData::RemoveCommunity(
|
|
local_user_view.person.clone(),
|
|
community,
|
|
data.reason.clone(),
|
|
data.removed,
|
|
),
|
|
&context,
|
|
)
|
|
.await?;
|
|
|
|
build_community_response(&context, local_user_view, community_id).await
|
|
}
|