2023-08-02 16:52:41 +00:00
|
|
|
use activitypub_federation::config::Data;
|
|
|
|
use actix_web::web::Json;
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
community::{AddModToCommunity, AddModToCommunityResponse},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-08-02 16:52:41 +00:00
|
|
|
send_activity::{ActivityChannel, SendActivityData},
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{is_mod_or_admin, local_user_view_from_jwt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
community::{Community, CommunityModerator, CommunityModeratorForm},
|
|
|
|
moderator::{ModAddCommunity, ModAddCommunityForm},
|
|
|
|
},
|
|
|
|
traits::{Crud, Joinable},
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::CommunityModeratorView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn add_mod_to_community(
|
|
|
|
data: Json<AddModToCommunity>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<AddModToCommunityResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
let community_id = data.community_id;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
// Verify that only mods or admins can add mod
|
|
|
|
is_mod_or_admin(&mut context.pool(), local_user_view.person.id, community_id).await?;
|
|
|
|
let community = Community::read(&mut context.pool(), community_id).await?;
|
2023-08-24 09:40:08 +00:00
|
|
|
if local_user_view.local_user.admin && !community.local {
|
2023-08-02 16:52:41 +00:00
|
|
|
return Err(LemmyErrorType::NotAModerator)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
// Update in local database
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: data.community_id,
|
|
|
|
person_id: data.person_id,
|
|
|
|
};
|
|
|
|
if data.added {
|
|
|
|
CommunityModerator::join(&mut context.pool(), &community_moderator_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityModeratorAlreadyExists)?;
|
|
|
|
} else {
|
|
|
|
CommunityModerator::leave(&mut context.pool(), &community_moderator_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityModeratorAlreadyExists)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(!data.added),
|
|
|
|
};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
ModAddCommunity::create(&mut context.pool(), &form).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
// Note: in case a remote mod is added, this returns the old moderators list, it will only get
|
|
|
|
// updated once we receive an activity from the community (like `Announce/Add/Moderator`)
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let moderators = CommunityModeratorView::for_community(&mut context.pool(), community_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
ActivityChannel::submit_activity(
|
|
|
|
SendActivityData::AddModToCommunity(
|
|
|
|
local_user_view.person,
|
|
|
|
data.community_id,
|
|
|
|
data.person_id,
|
|
|
|
data.added,
|
|
|
|
),
|
|
|
|
&context,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
Ok(Json(AddModToCommunityResponse { moderators }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|