2021-03-25 15:19:40 -04:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use anyhow::Context;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
2021-01-30 23:55:14 -05:00
|
|
|
check_community_ban,
|
2021-10-14 12:33:19 -04:00
|
|
|
check_community_deleted_or_removed,
|
2021-03-25 15:19:40 -04:00
|
|
|
community::*,
|
2021-03-10 17:33:55 -05:00
|
|
|
get_local_user_view_from_jwt,
|
2020-10-15 14:23:56 -04:00
|
|
|
is_mod_or_admin,
|
2021-02-04 11:34:58 -05:00
|
|
|
};
|
2021-10-18 17:36:44 -04:00
|
|
|
use lemmy_apub::{
|
2021-10-29 06:32:42 -04:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
|
|
protocol::activities::{
|
2021-10-18 17:36:44 -04:00
|
|
|
community::{
|
|
|
|
add_mod::AddMod,
|
|
|
|
block_user::BlockUserFromCommunity,
|
|
|
|
remove_mod::RemoveMod,
|
|
|
|
undo_block_user::UndoBlockUserFromCommunity,
|
|
|
|
},
|
2021-10-29 06:32:42 -04:00
|
|
|
following::{follow::FollowCommunity as FollowCommunityApub, undo_follow::UndoFollowCommunity},
|
2021-08-12 08:48:09 -04:00
|
|
|
},
|
|
|
|
};
|
2021-10-16 09:33:38 -04:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
comment::Comment,
|
|
|
|
community::{
|
|
|
|
Community,
|
|
|
|
CommunityFollower,
|
|
|
|
CommunityFollowerForm,
|
|
|
|
CommunityModerator,
|
|
|
|
CommunityModeratorForm,
|
|
|
|
CommunityPersonBan,
|
|
|
|
CommunityPersonBanForm,
|
|
|
|
},
|
|
|
|
community_block::{CommunityBlock, CommunityBlockForm},
|
|
|
|
moderator::{
|
|
|
|
ModAddCommunity,
|
|
|
|
ModAddCommunityForm,
|
|
|
|
ModBanFromCommunity,
|
|
|
|
ModBanFromCommunityForm,
|
|
|
|
ModTransferCommunity,
|
|
|
|
ModTransferCommunityForm,
|
|
|
|
},
|
|
|
|
person::Person,
|
|
|
|
post::Post,
|
|
|
|
site::Site,
|
|
|
|
},
|
|
|
|
traits::{Bannable, Blockable, Crud, Followable, Joinable},
|
2020-12-18 12:27:25 -05:00
|
|
|
};
|
2020-12-21 18:27:42 -05:00
|
|
|
use lemmy_db_views::comment_view::CommentQueryBuilder;
|
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_moderator_view::CommunityModeratorView,
|
2021-03-25 15:19:40 -04:00
|
|
|
community_view::CommunityView,
|
2021-03-10 17:33:55 -05:00
|
|
|
person_view::PersonViewSafe,
|
2020-12-21 11:30:34 -05:00
|
|
|
};
|
2021-03-25 15:19:40 -04:00
|
|
|
use lemmy_utils::{location_info, utils::naive_from_unix, ApiError, ConnectionId, LemmyError};
|
|
|
|
use lemmy_websocket::{messages::SendCommunityRoomMessage, LemmyContext, UserOperation};
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 07:31:45 -04:00
|
|
|
impl Perform for FollowCommunity {
|
2020-04-19 23:59:07 -04:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
async fn perform(
|
2020-04-19 18:08:25 -04:00
|
|
|
&self,
|
2020-08-18 09:43:50 -04:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 07:58:24 -04:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 08:54:29 -04:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2021-07-05 12:07:26 -04:00
|
|
|
let data: &FollowCommunity = self;
|
2021-09-22 11:57:09 -04:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2021-10-18 17:36:44 -04:00
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn| {
|
2020-08-18 09:43:50 -04:00
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
2021-10-18 17:36:44 -04:00
|
|
|
.await??
|
|
|
|
.into();
|
2020-05-03 22:41:45 -04:00
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
2021-03-10 17:33:55 -05:00
|
|
|
person_id: local_user_view.person.id,
|
2020-11-10 10:45:10 -05:00
|
|
|
pending: false,
|
2020-05-03 22:41:45 -04:00
|
|
|
};
|
2020-04-14 11:37:23 -04:00
|
|
|
|
2020-05-03 22:41:45 -04:00
|
|
|
if community.local {
|
2020-04-14 11:37:23 -04:00
|
|
|
if data.follow {
|
2021-03-10 17:33:55 -05:00
|
|
|
check_community_ban(local_user_view.person.id, community_id, context.pool()).await?;
|
2021-10-14 12:33:19 -04:00
|
|
|
check_community_deleted_or_removed(community_id, context.pool()).await?;
|
2021-01-30 23:55:14 -05:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), follow)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_follower_already_exists", e))?;
|
2020-04-14 11:37:23 -04:00
|
|
|
} else {
|
2020-07-01 08:54:29 -04:00
|
|
|
let unfollow =
|
|
|
|
move |conn: &'_ _| CommunityFollower::unfollow(conn, &community_follower_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), unfollow)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_follower_already_exists", e))?;
|
2020-04-14 11:37:23 -04:00
|
|
|
}
|
2020-08-04 10:39:55 -04:00
|
|
|
} else if data.follow {
|
|
|
|
// Dont actually add to the community followers here, because you need
|
|
|
|
// to wait for the accept
|
2021-10-18 17:36:44 -04:00
|
|
|
FollowCommunityApub::send(&local_user_view.person.clone().into(), &community, context)
|
|
|
|
.await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
} else {
|
2021-10-18 17:36:44 -04:00
|
|
|
UndoFollowCommunity::send(&local_user_view.person.clone().into(), &community, context)
|
|
|
|
.await?;
|
2020-08-04 10:39:55 -04:00
|
|
|
let unfollow = move |conn: &'_ _| CommunityFollower::unfollow(conn, &community_follower_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), unfollow)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_follower_already_exists", e))?;
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2021-03-10 17:33:55 -05:00
|
|
|
let person_id = local_user_view.person.id;
|
2020-09-21 10:35:13 -04:00
|
|
|
let mut community_view = blocking(context.pool(), move |conn| {
|
2021-03-10 17:33:55 -05:00
|
|
|
CommunityView::read(conn, community_id, Some(person_id))
|
2020-07-01 08:54:29 -04:00
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-09-21 10:35:13 -04:00
|
|
|
// TODO: this needs to return a "pending" state, until Accept is received from the remote server
|
|
|
|
// For now, just assume that remote follows are accepted.
|
|
|
|
// Otherwise, the subscribed will be null
|
|
|
|
if !community.local {
|
2020-12-06 09:12:51 -05:00
|
|
|
community_view.subscribed = data.follow;
|
2020-09-21 10:35:13 -04:00
|
|
|
}
|
|
|
|
|
2020-12-06 09:12:51 -05:00
|
|
|
Ok(CommunityResponse { community_view })
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 16:54:15 -04:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for BlockCommunity {
|
|
|
|
type Response = BlockCommunityResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<BlockCommunityResponse, LemmyError> {
|
|
|
|
let data: &BlockCommunity = self;
|
2021-09-22 11:57:09 -04:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2021-08-19 16:54:15 -04:00
|
|
|
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let community_block_form = CommunityBlockForm {
|
|
|
|
person_id,
|
|
|
|
community_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
if data.block {
|
|
|
|
let block = move |conn: &'_ _| CommunityBlock::block(conn, &community_block_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), block)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_block_already_exists", e))?;
|
2021-08-19 16:54:15 -04:00
|
|
|
|
|
|
|
// Also, unfollow the community, and send a federated unfollow
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
|
|
|
person_id,
|
|
|
|
pending: false,
|
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
|
|
|
CommunityFollower::unfollow(conn, &community_follower_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.ok();
|
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-10-18 17:36:44 -04:00
|
|
|
UndoFollowCommunity::send(&local_user_view.person.into(), &community.into(), context).await?;
|
2021-08-19 16:54:15 -04:00
|
|
|
} else {
|
|
|
|
let unblock = move |conn: &'_ _| CommunityBlock::unblock(conn, &community_block_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), unblock)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_block_already_exists", e))?;
|
2021-08-19 16:54:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityView::read(conn, community_id, Some(person_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
Ok(BlockCommunityResponse {
|
|
|
|
blocked: data.block,
|
|
|
|
community_view,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 07:31:45 -04:00
|
|
|
impl Perform for BanFromCommunity {
|
2020-04-19 23:59:07 -04:00
|
|
|
type Response = BanFromCommunityResponse;
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
async fn perform(
|
2020-04-19 18:08:25 -04:00
|
|
|
&self,
|
2020-08-18 09:43:50 -04:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 07:58:24 -04:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 08:54:29 -04:00
|
|
|
) -> Result<BanFromCommunityResponse, LemmyError> {
|
2021-07-05 12:07:26 -04:00
|
|
|
let data: &BanFromCommunity = self;
|
2021-09-22 11:57:09 -04:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-07-14 09:17:25 -04:00
|
|
|
let community_id = data.community_id;
|
2021-03-10 17:33:55 -05:00
|
|
|
let banned_person_id = data.person_id;
|
2020-07-14 09:17:25 -04:00
|
|
|
|
2020-07-21 10:15:17 -04:00
|
|
|
// Verify that only mods or admins can ban
|
2021-03-10 17:33:55 -05:00
|
|
|
is_mod_or_admin(context.pool(), local_user_view.person.id, community_id).await?;
|
2020-07-14 09:17:25 -04:00
|
|
|
|
2021-02-26 08:49:58 -05:00
|
|
|
let community_user_ban_form = CommunityPersonBanForm {
|
2019-05-05 01:20:38 -04:00
|
|
|
community_id: data.community_id,
|
2021-03-10 17:33:55 -05:00
|
|
|
person_id: data.person_id,
|
2019-05-05 01:20:38 -04:00
|
|
|
};
|
|
|
|
|
2021-10-18 17:36:44 -04:00
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn: &'_ _| {
|
2021-04-09 11:01:26 -04:00
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
2021-10-18 17:36:44 -04:00
|
|
|
.await??
|
|
|
|
.into();
|
|
|
|
let banned_person: ApubPerson = blocking(context.pool(), move |conn: &'_ _| {
|
2021-04-09 11:01:26 -04:00
|
|
|
Person::read(conn, banned_person_id)
|
|
|
|
})
|
2021-10-18 17:36:44 -04:00
|
|
|
.await??
|
|
|
|
.into();
|
2021-04-09 11:01:26 -04:00
|
|
|
|
2019-05-05 01:20:38 -04:00
|
|
|
if data.ban {
|
2021-02-26 08:49:58 -05:00
|
|
|
let ban = move |conn: &'_ _| CommunityPersonBan::ban(conn, &community_user_ban_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), ban)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_user_already_banned", e))?;
|
2021-01-30 23:55:14 -05:00
|
|
|
|
|
|
|
// Also unsubscribe them from the community, if they are subscribed
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
2021-03-10 17:33:55 -05:00
|
|
|
person_id: banned_person_id,
|
2021-01-30 23:55:14 -05:00
|
|
|
pending: false,
|
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
|
|
|
CommunityFollower::unfollow(conn, &community_follower_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.ok();
|
2021-04-09 11:01:26 -04:00
|
|
|
|
2021-10-18 17:36:44 -04:00
|
|
|
BlockUserFromCommunity::send(
|
|
|
|
&community,
|
|
|
|
&banned_person,
|
|
|
|
&local_user_view.person.clone().into(),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
} else {
|
2021-02-26 08:49:58 -05:00
|
|
|
let unban = move |conn: &'_ _| CommunityPersonBan::unban(conn, &community_user_ban_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), unban)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_user_already_banned", e))?;
|
2021-08-19 17:24:33 -04:00
|
|
|
UndoBlockUserFromCommunity::send(
|
|
|
|
&community,
|
|
|
|
&banned_person,
|
2021-10-18 17:36:44 -04:00
|
|
|
&local_user_view.person.clone().into(),
|
2021-08-19 17:24:33 -04:00
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
|
2020-08-17 14:12:36 -04:00
|
|
|
// Remove/Restore their data if that's desired
|
2021-04-26 09:50:34 -04:00
|
|
|
if data.remove_data.unwrap_or(false) {
|
2020-08-17 14:12:36 -04:00
|
|
|
// Posts
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
2021-03-10 17:33:55 -05:00
|
|
|
Post::update_removed_for_creator(conn, banned_person_id, Some(community_id), true)
|
2020-08-17 14:12:36 -04:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Comments
|
2020-12-19 20:10:47 -05:00
|
|
|
// TODO Diesel doesn't allow updates with joins, so this has to be a loop
|
2020-08-18 09:43:50 -04:00
|
|
|
let comments = blocking(context.pool(), move |conn| {
|
2020-12-16 13:59:43 -05:00
|
|
|
CommentQueryBuilder::create(conn)
|
2021-03-10 17:33:55 -05:00
|
|
|
.creator_id(banned_person_id)
|
2020-12-16 13:59:43 -05:00
|
|
|
.community_id(community_id)
|
2020-08-17 14:12:36 -04:00
|
|
|
.limit(std::i64::MAX)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-12-15 14:39:18 -05:00
|
|
|
for comment_view in &comments {
|
|
|
|
let comment_id = comment_view.comment.id;
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
2020-12-19 20:10:47 -05:00
|
|
|
Comment::update_removed(conn, comment_id, true)
|
2020-08-17 14:12:36 -04:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 01:20:38 -04:00
|
|
|
// Mod tables
|
2020-07-21 13:52:57 -04:00
|
|
|
// TODO eventually do correct expires
|
2021-03-25 15:30:15 -04:00
|
|
|
let expires = data.expires.map(naive_from_unix);
|
2019-05-05 01:20:38 -04:00
|
|
|
|
|
|
|
let form = ModBanFromCommunityForm {
|
2021-03-10 17:33:55 -05:00
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
2019-05-05 01:20:38 -04:00
|
|
|
community_id: data.community_id,
|
|
|
|
reason: data.reason.to_owned(),
|
|
|
|
banned: Some(data.ban),
|
2019-12-09 14:08:19 -05:00
|
|
|
expires,
|
2019-05-05 01:20:38 -04:00
|
|
|
};
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModBanFromCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2021-03-10 17:33:55 -05:00
|
|
|
let person_id = data.person_id;
|
|
|
|
let person_view = blocking(context.pool(), move |conn| {
|
|
|
|
PersonViewSafe::read(conn, person_id)
|
2020-08-18 09:43:50 -04:00
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-04-19 18:08:25 -04:00
|
|
|
let res = BanFromCommunityResponse {
|
2021-03-10 17:33:55 -05:00
|
|
|
person_view,
|
2019-09-07 11:35:05 -04:00
|
|
|
banned: data.ban,
|
2020-04-19 18:08:25 -04:00
|
|
|
};
|
|
|
|
|
2020-08-24 07:58:24 -04:00
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::BanFromCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 18:08:25 -04:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 07:31:45 -04:00
|
|
|
impl Perform for AddModToCommunity {
|
2020-04-19 23:59:07 -04:00
|
|
|
type Response = AddModToCommunityResponse;
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
async fn perform(
|
2020-04-19 18:08:25 -04:00
|
|
|
&self,
|
2020-08-18 09:43:50 -04:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 07:58:24 -04:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 08:54:29 -04:00
|
|
|
) -> Result<AddModToCommunityResponse, LemmyError> {
|
2021-07-05 12:07:26 -04:00
|
|
|
let data: &AddModToCommunity = self;
|
2021-09-22 11:57:09 -04:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-07-14 09:17:25 -04:00
|
|
|
let community_id = data.community_id;
|
|
|
|
|
2020-07-21 10:15:17 -04:00
|
|
|
// Verify that only mods or admins can add mod
|
2021-03-10 17:33:55 -05:00
|
|
|
is_mod_or_admin(context.pool(), local_user_view.person.id, community_id).await?;
|
2020-07-14 09:17:25 -04:00
|
|
|
|
2021-03-09 12:13:08 -05:00
|
|
|
// Update in local database
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: data.community_id,
|
2021-03-19 12:11:34 -04:00
|
|
|
person_id: data.person_id,
|
2021-03-09 12:13:08 -05:00
|
|
|
};
|
2019-05-05 01:20:38 -04:00
|
|
|
if data.added {
|
2020-07-01 08:54:29 -04:00
|
|
|
let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), join)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_moderator_already_exists", e))?;
|
2019-05-05 01:20:38 -04:00
|
|
|
} else {
|
2020-07-01 08:54:29 -04:00
|
|
|
let leave = move |conn: &'_ _| CommunityModerator::leave(conn, &community_moderator_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), leave)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_moderator_already_exists", e))?;
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
2021-03-10 17:33:55 -05:00
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
2019-05-05 01:20:38 -04:00
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(!data.added),
|
|
|
|
};
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModAddCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2021-03-09 12:13:08 -05:00
|
|
|
// Send to federated instances
|
2021-03-19 12:11:34 -04:00
|
|
|
let updated_mod_id = data.person_id;
|
2021-10-18 17:36:44 -04:00
|
|
|
let updated_mod: ApubPerson = blocking(context.pool(), move |conn| {
|
2021-03-19 12:11:34 -04:00
|
|
|
Person::read(conn, updated_mod_id)
|
2021-03-09 12:13:08 -05:00
|
|
|
})
|
2021-10-18 17:36:44 -04:00
|
|
|
.await??
|
|
|
|
.into();
|
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn| {
|
2021-03-09 12:13:08 -05:00
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
2021-10-18 17:36:44 -04:00
|
|
|
.await??
|
|
|
|
.into();
|
2021-03-09 12:13:08 -05:00
|
|
|
if data.added {
|
2021-10-18 17:36:44 -04:00
|
|
|
AddMod::send(
|
|
|
|
&community,
|
|
|
|
&updated_mod,
|
|
|
|
&local_user_view.person.into(),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-09 12:13:08 -05:00
|
|
|
} else {
|
2021-10-18 17:36:44 -04:00
|
|
|
RemoveMod::send(
|
|
|
|
&community,
|
|
|
|
&updated_mod,
|
|
|
|
&local_user_view.person.into(),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-09 12:13:08 -05: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`)
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 09:43:50 -04:00
|
|
|
let moderators = blocking(context.pool(), move |conn| {
|
2020-07-01 08:54:29 -04:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 01:20:38 -04:00
|
|
|
|
2020-04-19 18:08:25 -04:00
|
|
|
let res = AddModToCommunityResponse { moderators };
|
2020-08-24 07:58:24 -04:00
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::AddModToCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 18:08:25 -04:00
|
|
|
Ok(res)
|
2019-05-05 01:20:38 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-07 11:35:05 -04:00
|
|
|
|
2021-03-09 12:13:08 -05: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.
|
2020-07-01 08:54:29 -04:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 07:31:45 -04:00
|
|
|
impl Perform for TransferCommunity {
|
2020-04-19 23:59:07 -04:00
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
async fn perform(
|
2020-04-19 18:08:25 -04:00
|
|
|
&self,
|
2020-08-18 09:43:50 -04:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 07:58:24 -04:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 08:54:29 -04:00
|
|
|
) -> Result<GetCommunityResponse, LemmyError> {
|
2021-07-05 12:07:26 -04:00
|
|
|
let data: &TransferCommunity = self;
|
2021-09-22 11:57:09 -04:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2020-08-18 09:43:50 -04:00
|
|
|
let site_creator_id = blocking(context.pool(), move |conn| {
|
|
|
|
Site::read(conn, 1).map(|s| s.creator_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-04-19 18:08:25 -04:00
|
|
|
|
2021-10-12 12:46:26 -04:00
|
|
|
let mut admins = blocking(context.pool(), PersonViewSafe::admins).await??;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2021-04-08 07:29:08 -04:00
|
|
|
// Making sure the site creator, if an admin, is at the top
|
2020-08-13 11:46:31 -04:00
|
|
|
let creator_index = admins
|
|
|
|
.iter()
|
2021-03-10 17:33:55 -05:00
|
|
|
.position(|r| r.person.id == site_creator_id)
|
2020-08-13 11:46:31 -04:00
|
|
|
.context(location_info!())?;
|
2021-03-10 17:33:55 -05:00
|
|
|
let creator_person = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_person);
|
2019-08-29 18:18:50 -04:00
|
|
|
|
2021-04-08 07:29:08 -04:00
|
|
|
// Fetch the community mods
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let mut community_mods = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Make sure transferrer is either the top community mod, or an admin
|
|
|
|
if local_user_view.person.id != community_mods[0].moderator.id
|
2021-03-10 23:43:11 -05:00
|
|
|
&& !admins
|
|
|
|
.iter()
|
|
|
|
.map(|a| a.person.id)
|
|
|
|
.any(|x| x == local_user_view.person.id)
|
2020-12-03 19:47:58 -05:00
|
|
|
{
|
2021-10-13 15:50:21 -04:00
|
|
|
return Err(ApiError::err_plain("not_an_admin").into());
|
2019-08-23 22:40:41 -04:00
|
|
|
}
|
2019-09-07 11:35:05 -04:00
|
|
|
|
2021-04-08 07:29:08 -04:00
|
|
|
// You have to re-do the community_moderator table, reordering it.
|
|
|
|
// Add the transferee to the top
|
2019-09-07 11:35:05 -04:00
|
|
|
let creator_index = community_mods
|
|
|
|
.iter()
|
2021-03-10 17:33:55 -05:00
|
|
|
.position(|r| r.moderator.id == data.person_id)
|
2020-08-13 11:46:31 -04:00
|
|
|
.context(location_info!())?;
|
2021-03-10 17:33:55 -05:00
|
|
|
let creator_person = community_mods.remove(creator_index);
|
|
|
|
community_mods.insert(0, creator_person);
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2021-04-08 07:29:08 -04:00
|
|
|
// Delete all the mods
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-07-01 08:54:29 -04:00
|
|
|
CommunityModerator::delete_for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
// TODO: this should probably be a bulk operation
|
2021-04-08 07:29:08 -04:00
|
|
|
// Re-add the mods, in the new order
|
2019-08-23 22:40:41 -04:00
|
|
|
for cmod in &community_mods {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
2020-12-06 09:12:51 -05:00
|
|
|
community_id: cmod.community.id,
|
2021-02-26 08:49:58 -05:00
|
|
|
person_id: cmod.moderator.id,
|
2019-08-23 22:40:41 -04:00
|
|
|
};
|
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
|
2021-10-13 15:50:21 -04:00
|
|
|
blocking(context.pool(), join)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("community_moderator_already_exists", e))?;
|
2019-08-23 22:40:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
2021-08-17 17:52:28 -04:00
|
|
|
let form = ModTransferCommunityForm {
|
2021-03-10 17:33:55 -05:00
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
2019-08-23 22:40:41 -04:00
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(false),
|
|
|
|
};
|
2020-08-18 09:43:50 -04:00
|
|
|
blocking(context.pool(), move |conn| {
|
2021-08-17 17:52:28 -04:00
|
|
|
ModTransferCommunity::create(conn, &form)
|
2020-08-18 09:43:50 -04:00
|
|
|
})
|
|
|
|
.await??;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2021-03-10 17:33:55 -05:00
|
|
|
let person_id = local_user_view.person.id;
|
2021-04-16 09:10:43 -04:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2021-03-10 17:33:55 -05:00
|
|
|
CommunityView::read(conn, community_id, Some(person_id))
|
2020-07-01 08:54:29 -04:00
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 15:50:21 -04:00
|
|
|
.map_err(|e| ApiError::err("couldnt_find_community", e))?;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
2020-07-01 08:54:29 -04:00
|
|
|
let community_id = data.community_id;
|
2021-04-16 09:10:43 -04:00
|
|
|
let moderators = blocking(context.pool(), move |conn| {
|
2020-07-01 08:54:29 -04:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-10-13 15:50:21 -04:00
|
|
|
.map_err(|e| ApiError::err("couldnt_find_community", e))?;
|
2019-08-23 22:40:41 -04:00
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 11:35:05 -04:00
|
|
|
Ok(GetCommunityResponse {
|
2020-12-06 09:12:51 -05:00
|
|
|
community_view,
|
2019-12-09 14:08:19 -05:00
|
|
|
moderators,
|
2020-01-31 20:02:20 -05:00
|
|
|
online: 0,
|
2019-09-07 11:35:05 -04:00
|
|
|
})
|
2019-08-23 22:40:41 -04:00
|
|
|
}
|
|
|
|
}
|