2022-05-03 17:44:13 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2023-06-06 16:27:22 +00:00
|
|
|
build_response::build_community_response,
|
2022-05-03 17:44:13 +00:00
|
|
|
community::{CommunityResponse, RemoveCommunity},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{is_admin, local_user_view_from_jwt},
|
2022-05-03 17:44:13 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
2022-10-27 09:24:07 +00:00
|
|
|
community::{Community, CommunityUpdateForm},
|
2022-05-03 17:44:13 +00:00
|
|
|
moderator::{ModRemoveCommunity, ModRemoveCommunityForm},
|
|
|
|
},
|
|
|
|
traits::Crud,
|
|
|
|
};
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, utils::time::naive_from_unix};
|
2022-05-03 17:44:13 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for RemoveCommunity {
|
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<CommunityResponse, LemmyError> {
|
2022-05-03 17:44:13 +00:00
|
|
|
let data: &RemoveCommunity = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
|
|
|
// 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;
|
2022-11-28 14:29:33 +00:00
|
|
|
Community::update(
|
2022-11-09 10:05:00 +00:00
|
|
|
context.pool(),
|
|
|
|
community_id,
|
|
|
|
&CommunityUpdateForm::builder()
|
|
|
|
.removed(Some(removed))
|
|
|
|
.build(),
|
|
|
|
)
|
|
|
|
.await
|
2022-05-03 17:44:13 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_update_community"))?;
|
|
|
|
|
|
|
|
// 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),
|
2022-11-19 04:33:54 +00:00
|
|
|
reason: data.reason.clone(),
|
2022-05-03 17:44:13 +00:00
|
|
|
expires,
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
ModRemoveCommunity::create(context.pool(), &form).await?;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
build_community_response(context, local_user_view, community_id).await
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
}
|