2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use anyhow::Context;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
community::{GetCommunityResponse, TransferCommunity},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{is_admin, is_top_mod, local_user_view_from_jwt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
community::{CommunityModerator, CommunityModeratorForm},
|
|
|
|
moderator::{ModTransferCommunity, ModTransferCommunityForm},
|
|
|
|
},
|
|
|
|
traits::{Crud, Joinable},
|
|
|
|
};
|
2023-02-28 11:34:50 +00:00
|
|
|
use lemmy_db_views_actor::structs::{CommunityModeratorView, CommunityView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
|
|
|
location_info,
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// TODO: we dont do anything for federation here, it should be updated the next time the community
|
|
|
|
// gets fetched. i hope we can get rid of the community creator role soon.
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for TransferCommunity {
|
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
2022-04-13 18:12:25 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
) -> Result<GetCommunityResponse, LemmyError> {
|
|
|
|
let data: &TransferCommunity = 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
|
|
|
|
|
|
|
// Fetch the community mods
|
|
|
|
let community_id = data.community_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let mut community_mods =
|
2023-07-11 13:09:59 +00:00
|
|
|
CommunityModeratorView::for_community(&mut context.pool(), community_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Make sure transferrer is either the top community mod, or an admin
|
2023-02-28 11:34:50 +00:00
|
|
|
if !(is_top_mod(&local_user_view, &community_mods).is_ok()
|
|
|
|
|| is_admin(&local_user_view).is_ok())
|
2022-04-13 18:12:25 +00:00
|
|
|
{
|
2023-07-10 14:50:07 +00:00
|
|
|
return Err(LemmyErrorType::NotAnAdmin)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// You have to re-do the community_moderator table, reordering it.
|
|
|
|
// Add the transferee to the top
|
|
|
|
let creator_index = community_mods
|
|
|
|
.iter()
|
|
|
|
.position(|r| r.moderator.id == data.person_id)
|
|
|
|
.context(location_info!())?;
|
|
|
|
let creator_person = community_mods.remove(creator_index);
|
|
|
|
community_mods.insert(0, creator_person);
|
|
|
|
|
|
|
|
// Delete all the mods
|
|
|
|
let community_id = data.community_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
CommunityModerator::delete_for_community(&mut context.pool(), community_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// TODO: this should probably be a bulk operation
|
|
|
|
// Re-add the mods, in the new order
|
|
|
|
for cmod in &community_mods {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: cmod.community.id,
|
|
|
|
person_id: cmod.moderator.id,
|
|
|
|
};
|
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
CommunityModerator::join(&mut context.pool(), &community_moderator_form)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityModeratorAlreadyExists)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModTransferCommunityForm {
|
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
ModTransferCommunity::create(&mut context.pool(), &form).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let community_view =
|
|
|
|
CommunityView::read(&mut context.pool(), community_id, Some(person_id), None)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindCommunity)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let community_id = data.community_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let moderators = CommunityModeratorView::for_community(&mut context.pool(), community_id)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindCommunity)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(GetCommunityResponse {
|
|
|
|
community_view,
|
|
|
|
site: None,
|
|
|
|
moderators,
|
2022-10-06 18:27:58 +00:00
|
|
|
discussion_languages: vec![],
|
2022-04-13 18:12:25 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|