2020-10-15 18:23:56 +00:00
|
|
|
use crate::{
|
|
|
|
check_optional_url,
|
|
|
|
get_user_from_jwt,
|
|
|
|
get_user_from_jwt_opt,
|
|
|
|
is_admin,
|
|
|
|
is_mod_or_admin,
|
|
|
|
Perform,
|
|
|
|
};
|
2020-09-01 13:20:22 +00:00
|
|
|
use actix_web::web::Data;
|
2020-08-13 15:46:31 +00:00
|
|
|
use anyhow::Context;
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_apub::ActorType;
|
2020-08-05 16:03:46 +00:00
|
|
|
use lemmy_db::{
|
|
|
|
diesel_option_overwrite,
|
2020-12-21 12:28:12 +00:00
|
|
|
source::{
|
|
|
|
comment::Comment_,
|
|
|
|
community::{CommunityModerator_, Community_},
|
|
|
|
post::Post_,
|
|
|
|
},
|
2020-12-06 14:12:51 +00:00
|
|
|
views::{
|
2020-12-15 19:39:18 +00:00
|
|
|
comment_view::CommentQueryBuilder,
|
2020-12-16 21:28:18 +00:00
|
|
|
community::{
|
|
|
|
community_follower_view::CommunityFollowerView,
|
|
|
|
community_moderator_view::CommunityModeratorView,
|
|
|
|
community_view::{CommunityQueryBuilder, CommunityView},
|
|
|
|
},
|
2020-12-06 14:12:51 +00:00
|
|
|
user_view::UserViewSafe,
|
|
|
|
},
|
2020-12-08 17:38:48 +00:00
|
|
|
ApubObject,
|
2020-08-05 16:03:46 +00:00
|
|
|
Bannable,
|
|
|
|
Crud,
|
|
|
|
Followable,
|
|
|
|
Joinable,
|
|
|
|
SortType,
|
|
|
|
};
|
2020-12-18 17:27:25 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
2020-12-21 13:38:34 +00:00
|
|
|
source::{comment::Comment, community::*, moderator::*, post::Post, site::*},
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_structs::{blocking, community::*};
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_utils::{
|
2020-09-14 15:29:50 +00:00
|
|
|
apub::{generate_actor_keypair, make_apub_endpoint, EndpointType},
|
2020-08-13 15:46:31 +00:00
|
|
|
location_info,
|
2020-09-14 15:29:50 +00:00
|
|
|
utils::{check_slurs, check_slurs_opt, is_valid_community_name, naive_from_unix},
|
2020-09-03 19:45:12 +00:00
|
|
|
APIError,
|
2020-09-01 14:25:34 +00:00
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::{
|
2020-11-04 02:15:11 +00:00
|
|
|
messages::{GetCommunityUsersOnline, JoinCommunityRoom, JoinModRoom, SendCommunityRoomMessage},
|
2020-09-24 13:53:21 +00:00
|
|
|
LemmyContext,
|
|
|
|
UserOperation,
|
|
|
|
};
|
2020-05-16 14:04:08 +00:00
|
|
|
use std::str::FromStr;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for GetCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-09-15 19:26:47 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<GetCommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &GetCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt_opt(&data.auth, context.pool()).await?;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.map(|u| u.id);
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
let community_id = match data.id {
|
|
|
|
Some(id) => id,
|
|
|
|
None => {
|
|
|
|
let name = data.name.to_owned().unwrap_or_else(|| "main".to_string());
|
|
|
|
match blocking(context.pool(), move |conn| {
|
|
|
|
Community::read_from_name(conn, &name)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(community) => community,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
|
|
|
}
|
|
|
|
.id
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityView::read(conn, community_id, user_id)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let moderators: Vec<CommunityModeratorView> = match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(moderators) => moderators,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
let online = context
|
|
|
|
.chat_server()
|
|
|
|
.send(GetCommunityUsersOnline { community_id })
|
|
|
|
.await
|
|
|
|
.unwrap_or(1);
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
let res = GetCommunityResponse {
|
2020-12-06 14:12:51 +00:00
|
|
|
community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
2020-04-19 22:08:25 +00:00
|
|
|
online,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for CreateCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &CreateCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-04 14:39:55 +00:00
|
|
|
check_slurs(&data.name)?;
|
|
|
|
check_slurs(&data.title)?;
|
|
|
|
check_slurs_opt(&data.description)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-06-20 09:33:23 +00:00
|
|
|
if !is_valid_community_name(&data.name) {
|
|
|
|
return Err(APIError::err("invalid_community_name").into());
|
|
|
|
}
|
|
|
|
|
2020-07-15 13:55:38 +00:00
|
|
|
// Double check for duplicate community actor_ids
|
|
|
|
let actor_id = make_apub_endpoint(EndpointType::Community, &data.name).to_string();
|
|
|
|
let actor_id_cloned = actor_id.to_owned();
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_dupe = blocking(context.pool(), move |conn| {
|
2020-12-08 17:38:48 +00:00
|
|
|
Community::read_from_apub_id(conn, &actor_id_cloned)
|
2020-07-15 13:55:38 +00:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if community_dupe.is_ok() {
|
|
|
|
return Err(APIError::err("community_already_exists").into());
|
|
|
|
}
|
|
|
|
|
2020-10-15 18:23:56 +00:00
|
|
|
// Check to make sure the icon and banners are urls
|
|
|
|
let icon = diesel_option_overwrite(&data.icon);
|
|
|
|
let banner = diesel_option_overwrite(&data.banner);
|
|
|
|
|
2020-10-22 17:23:25 +00:00
|
|
|
check_optional_url(&icon)?;
|
|
|
|
check_optional_url(&banner)?;
|
2020-10-15 18:23:56 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
// When you create a community, make sure the user becomes a moderator and a follower
|
2020-04-19 11:44:44 +00:00
|
|
|
let keypair = generate_actor_keypair()?;
|
2020-04-03 04:12:05 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
let community_form = CommunityForm {
|
|
|
|
name: data.name.to_owned(),
|
|
|
|
title: data.title.to_owned(),
|
|
|
|
description: data.description.to_owned(),
|
2020-10-15 18:23:56 +00:00
|
|
|
icon,
|
|
|
|
banner,
|
2019-05-05 05:20:38 +00:00
|
|
|
category_id: data.category_id,
|
2020-08-04 14:39:55 +00:00
|
|
|
creator_id: user.id,
|
2019-05-05 05:20:38 +00:00
|
|
|
removed: None,
|
|
|
|
deleted: None,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: data.nsfw,
|
2019-05-05 05:20:38 +00:00
|
|
|
updated: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: Some(actor_id),
|
2020-04-03 04:12:05 +00:00
|
|
|
local: true,
|
2020-04-18 18:54:20 +00:00
|
|
|
private_key: Some(keypair.private_key),
|
|
|
|
public_key: Some(keypair.public_key),
|
2020-04-03 04:12:05 +00:00
|
|
|
last_refreshed_at: None,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let inserted_community = match blocking(context.pool(), move |conn| {
|
|
|
|
Community::create(conn, &community_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(community) => community,
|
|
|
|
Err(_e) => return Err(APIError::err("community_already_exists").into()),
|
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
// The community creator becomes a moderator
|
2019-05-05 05:20:38 +00:00
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: inserted_community.id,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), join).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_moderator_already_exists").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
// Follow your own community
|
2019-05-05 05:20:38 +00:00
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: inserted_community.id,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.id,
|
2020-11-10 15:45:10 +00:00
|
|
|
pending: false,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), follow).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_follower_already_exists").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityView::read(conn, inserted_community.id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-12-06 14:12:51 +00:00
|
|
|
Ok(CommunityResponse { community_view })
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for EditCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &EditCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-04 14:39:55 +00:00
|
|
|
check_slurs(&data.title)?;
|
|
|
|
check_slurs_opt(&data.description)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-20 17:37:39 +00:00
|
|
|
// Verify its a mod (only mods can edit it)
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let mods: Vec<i32> = blocking(context.pool(), move |conn| {
|
2020-07-20 17:37:39 +00:00
|
|
|
CommunityModeratorView::for_community(conn, edit_id)
|
2020-12-06 14:12:51 +00:00
|
|
|
.map(|v| v.into_iter().map(|m| m.moderator.id).collect())
|
2020-07-20 17:37:39 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2020-08-04 14:39:55 +00:00
|
|
|
if !mods.contains(&user.id) {
|
2020-07-20 17:37:39 +00:00
|
|
|
return Err(APIError::err("not_a_moderator").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let read_community =
|
|
|
|
blocking(context.pool(), move |conn| Community::read(conn, edit_id)).await??;
|
2020-04-03 04:12:05 +00:00
|
|
|
|
2020-08-05 16:03:46 +00:00
|
|
|
let icon = diesel_option_overwrite(&data.icon);
|
|
|
|
let banner = diesel_option_overwrite(&data.banner);
|
|
|
|
|
2020-10-22 17:23:25 +00:00
|
|
|
check_optional_url(&icon)?;
|
|
|
|
check_optional_url(&banner)?;
|
2020-10-15 18:23:56 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
let community_form = CommunityForm {
|
2020-07-15 13:53:52 +00:00
|
|
|
name: read_community.name,
|
2019-05-05 05:20:38 +00:00
|
|
|
title: data.title.to_owned(),
|
|
|
|
description: data.description.to_owned(),
|
2020-08-05 16:03:46 +00:00
|
|
|
icon,
|
|
|
|
banner,
|
2019-05-05 05:20:38 +00:00
|
|
|
category_id: data.category_id.to_owned(),
|
2020-07-14 13:17:25 +00:00
|
|
|
creator_id: read_community.creator_id,
|
2020-07-20 17:37:39 +00:00
|
|
|
removed: Some(read_community.removed),
|
|
|
|
deleted: Some(read_community.deleted),
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: data.nsfw,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: Some(naive_now()),
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: Some(read_community.actor_id),
|
2020-04-03 04:12:05 +00:00
|
|
|
local: read_community.local,
|
|
|
|
private_key: read_community.private_key,
|
|
|
|
public_key: read_community.public_key,
|
|
|
|
last_refreshed_at: None,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
Community::update(conn, edit_id, &community_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-05-05 05:20:38 +00:00
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_community").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-20 17:37:39 +00:00
|
|
|
// TODO there needs to be some kind of an apub update
|
|
|
|
// process for communities and users
|
|
|
|
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2020-07-20 17:37:39 +00:00
|
|
|
CommunityView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-12-06 14:12:51 +00:00
|
|
|
let res = CommunityResponse { community_view };
|
2020-07-20 17:37:39 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
send_community_websocket(&res, context, websocket_id, UserOperation::EditCommunity);
|
2020-04-28 17:46:25 +00:00
|
|
|
|
2020-07-20 17:37:39 +00:00
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for DeleteCommunity {
|
2020-07-20 17:37:39 +00:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-20 17:37:39 +00:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &DeleteCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
|
|
|
|
// Verify its the creator (only a creator can delete the community)
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let read_community =
|
|
|
|
blocking(context.pool(), move |conn| Community::read(conn, edit_id)).await??;
|
2020-08-04 14:39:55 +00:00
|
|
|
if read_community.creator_id != user.id {
|
2020-07-20 17:37:39 +00:00
|
|
|
return Err(APIError::err("no_community_edit_allowed").into());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the delete
|
|
|
|
let edit_id = data.edit_id;
|
|
|
|
let deleted = data.deleted;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_community = match blocking(context.pool(), move |conn| {
|
2020-07-20 17:37:39 +00:00
|
|
|
Community::update_deleted(conn, edit_id, deleted)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(community) => community,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_community").into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Send apub messages
|
|
|
|
if deleted {
|
2020-11-05 20:19:06 +00:00
|
|
|
updated_community.send_delete(context).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
} else {
|
2020-11-05 20:19:06 +00:00
|
|
|
updated_community.send_undo_delete(context).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-12-06 14:12:51 +00:00
|
|
|
let res = CommunityResponse { community_view };
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
send_community_websocket(&res, context, websocket_id, UserOperation::DeleteCommunity);
|
2020-07-20 17:37:39 +00:00
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for RemoveCommunity {
|
2020-07-20 17:37:39 +00:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-20 17:37:39 +00:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &RemoveCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
|
|
|
|
// Verify its an admin (only an admin can remove a community)
|
2020-08-18 13:43:50 +00:00
|
|
|
is_admin(context.pool(), user.id).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
|
|
|
|
// Do the remove
|
|
|
|
let edit_id = data.edit_id;
|
|
|
|
let removed = data.removed;
|
2020-08-18 13:43:50 +00:00
|
|
|
let updated_community = match blocking(context.pool(), move |conn| {
|
2020-07-20 17:37:39 +00:00
|
|
|
Community::update_removed(conn, edit_id, removed)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(community) => community,
|
|
|
|
Err(_e) => return Err(APIError::err("couldnt_update_community").into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let expires = match data.expires {
|
|
|
|
Some(time) => Some(naive_from_unix(time)),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
let form = ModRemoveCommunityForm {
|
2020-08-04 14:39:55 +00:00
|
|
|
mod_user_id: user.id,
|
2020-07-20 17:37:39 +00:00
|
|
|
community_id: data.edit_id,
|
|
|
|
removed: Some(removed),
|
|
|
|
reason: data.reason.to_owned(),
|
|
|
|
expires,
|
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModRemoveCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-20 17:37:39 +00:00
|
|
|
|
|
|
|
// Apub messages
|
|
|
|
if removed {
|
2020-11-05 20:19:06 +00:00
|
|
|
updated_community.send_remove(context).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
} else {
|
2020-11-05 20:19:06 +00:00
|
|
|
updated_community.send_undo_remove(context).await?;
|
2020-07-20 17:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let edit_id = data.edit_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = blocking(context.pool(), move |conn| {
|
2020-07-20 17:37:39 +00:00
|
|
|
CommunityView::read(conn, edit_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-12-06 14:12:51 +00:00
|
|
|
let res = CommunityResponse { community_view };
|
2020-07-20 17:37:39 +00:00
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
send_community_websocket(&res, context, websocket_id, UserOperation::RemoveCommunity);
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for ListCommunities {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = ListCommunitiesResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<ListCommunitiesResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &ListCommunities = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt_opt(&data.auth, context.pool()).await?;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2020-07-27 13:23:08 +00:00
|
|
|
let user_id = match &user {
|
|
|
|
Some(user) => Some(user.id),
|
2019-09-07 15:35:05 +00:00
|
|
|
None => None,
|
2019-08-14 02:52:43 +00:00
|
|
|
};
|
|
|
|
|
2020-07-27 13:23:08 +00:00
|
|
|
let show_nsfw = match &user {
|
|
|
|
Some(user) => user.show_nsfw,
|
2019-09-07 15:35:05 +00:00
|
|
|
None => false,
|
2019-08-14 02:52:43 +00:00
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
2020-08-18 13:43:50 +00:00
|
|
|
let communities = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
CommunityQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
|
|
|
.show_nsfw(show_nsfw)
|
2020-12-16 18:59:43 +00:00
|
|
|
.my_user_id(user_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
2020-01-16 14:39:08 +00:00
|
|
|
Ok(ListCommunitiesResponse { communities })
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for FollowCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<CommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &FollowCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-05-04 02:41:45 +00:00
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
2020-08-04 14:39:55 +00:00
|
|
|
user_id: user.id,
|
2020-11-10 15:45:10 +00:00
|
|
|
pending: false,
|
2020-05-04 02:41:45 +00:00
|
|
|
};
|
2020-04-14 15:37:23 +00:00
|
|
|
|
2020-05-04 02:41:45 +00:00
|
|
|
if community.local {
|
2020-04-14 15:37:23 +00:00
|
|
|
if data.follow {
|
2020-07-01 12:54:29 +00:00
|
|
|
let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), follow).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_follower_already_exists").into());
|
|
|
|
}
|
2020-04-14 15:37:23 +00:00
|
|
|
} else {
|
2020-07-01 12:54:29 +00:00
|
|
|
let unfollow =
|
|
|
|
move |conn: &'_ _| CommunityFollower::unfollow(conn, &community_follower_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), unfollow).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_follower_already_exists").into());
|
|
|
|
}
|
2020-04-14 15:37:23 +00:00
|
|
|
}
|
2020-08-04 14:39:55 +00:00
|
|
|
} else if data.follow {
|
|
|
|
// Dont actually add to the community followers here, because you need
|
|
|
|
// to wait for the accept
|
2020-08-18 13:43:50 +00:00
|
|
|
user.send_follow(&community.actor_id()?, context).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
} else {
|
2020-08-18 13:43:50 +00:00
|
|
|
user.send_unfollow(&community.actor_id()?, context).await?;
|
2020-08-04 14:39:55 +00:00
|
|
|
let unfollow = move |conn: &'_ _| CommunityFollower::unfollow(conn, &community_follower_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), unfollow).await?.is_err() {
|
2020-08-04 14:39:55 +00:00
|
|
|
return Err(APIError::err("community_follower_already_exists").into());
|
2020-05-04 02:41:45 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-09-21 14:35:13 +00:00
|
|
|
let mut community_view = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityView::read(conn, community_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-09-21 14:35:13 +00: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 14:12:51 +00:00
|
|
|
community_view.subscribed = data.follow;
|
2020-09-21 14:35:13 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 14:12:51 +00:00
|
|
|
Ok(CommunityResponse { community_view })
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for GetFollowedCommunities {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetFollowedCommunitiesResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<GetFollowedCommunitiesResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &GetFollowedCommunities = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let communities = match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityFollowerView::for_user(conn, user_id)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
Ok(communities) => communities,
|
|
|
|
_ => return Err(APIError::err("system_err_login").into()),
|
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
2020-01-16 14:39:08 +00:00
|
|
|
Ok(GetFollowedCommunitiesResponse { communities })
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for BanFromCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = BanFromCommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<BanFromCommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &BanFromCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-14 13:17:25 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-17 18:12:36 +00:00
|
|
|
let banned_user_id = data.user_id;
|
2020-07-14 13:17:25 +00:00
|
|
|
|
2020-07-21 14:15:17 +00:00
|
|
|
// Verify that only mods or admins can ban
|
2020-08-18 13:43:50 +00:00
|
|
|
is_mod_or_admin(context.pool(), user.id, community_id).await?;
|
2020-07-14 13:17:25 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
let community_user_ban_form = CommunityUserBanForm {
|
|
|
|
community_id: data.community_id,
|
|
|
|
user_id: data.user_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
if data.ban {
|
2020-07-01 12:54:29 +00:00
|
|
|
let ban = move |conn: &'_ _| CommunityUserBan::ban(conn, &community_user_ban_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), ban).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_user_already_banned").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
} else {
|
2020-07-01 12:54:29 +00:00
|
|
|
let unban = move |conn: &'_ _| CommunityUserBan::unban(conn, &community_user_ban_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), unban).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_user_already_banned").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 18:12:36 +00:00
|
|
|
// Remove/Restore their data if that's desired
|
2020-12-20 01:10:47 +00:00
|
|
|
if data.remove_data {
|
2020-08-17 18:12:36 +00:00
|
|
|
// Posts
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
2020-12-20 01:10:47 +00:00
|
|
|
Post::update_removed_for_creator(conn, banned_user_id, Some(community_id), true)
|
2020-08-17 18:12:36 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Comments
|
2020-12-20 01:10:47 +00:00
|
|
|
// TODO Diesel doesn't allow updates with joins, so this has to be a loop
|
2020-08-18 13:43:50 +00:00
|
|
|
let comments = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
CommentQueryBuilder::create(conn)
|
|
|
|
.creator_id(banned_user_id)
|
|
|
|
.community_id(community_id)
|
2020-08-17 18:12:36 +00:00
|
|
|
.limit(std::i64::MAX)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-12-15 19:39:18 +00:00
|
|
|
for comment_view in &comments {
|
|
|
|
let comment_id = comment_view.comment.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
2020-12-20 01:10:47 +00:00
|
|
|
Comment::update_removed(conn, comment_id, true)
|
2020-08-17 18:12:36 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
// Mod tables
|
2020-07-21 17:52:57 +00:00
|
|
|
// TODO eventually do correct expires
|
2019-05-05 05:20:38 +00:00
|
|
|
let expires = match data.expires {
|
|
|
|
Some(time) => Some(naive_from_unix(time)),
|
2019-09-07 15:35:05 +00:00
|
|
|
None => None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let form = ModBanFromCommunityForm {
|
2020-08-04 14:39:55 +00:00
|
|
|
mod_user_id: user.id,
|
2019-05-05 05:20:38 +00:00
|
|
|
other_user_id: data.user_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
reason: data.reason.to_owned(),
|
|
|
|
banned: Some(data.ban),
|
2019-12-09 19:08:19 +00:00
|
|
|
expires,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModBanFromCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let user_id = data.user_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user_view = blocking(context.pool(), move |conn| {
|
2020-12-04 00:47:58 +00:00
|
|
|
UserViewSafe::read(conn, user_id)
|
2020-08-18 13:43:50 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let res = BanFromCommunityResponse {
|
2020-12-06 14:12:51 +00:00
|
|
|
user_view,
|
2019-09-07 15:35:05 +00:00
|
|
|
banned: data.ban,
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::BanFromCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for AddModToCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = AddModToCommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<AddModToCommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &AddModToCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: data.community_id,
|
2019-09-07 15:35:05 +00:00
|
|
|
user_id: data.user_id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-07-14 13:17:25 +00:00
|
|
|
let community_id = data.community_id;
|
|
|
|
|
2020-07-21 14:15:17 +00:00
|
|
|
// Verify that only mods or admins can add mod
|
2020-08-18 13:43:50 +00:00
|
|
|
is_mod_or_admin(context.pool(), user.id, community_id).await?;
|
2020-07-14 13:17:25 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
if data.added {
|
2020-07-01 12:54:29 +00:00
|
|
|
let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), join).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_moderator_already_exists").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
} else {
|
2020-07-01 12:54:29 +00:00
|
|
|
let leave = move |conn: &'_ _| CommunityModerator::leave(conn, &community_moderator_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), leave).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_moderator_already_exists").into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
2020-08-04 14:39:55 +00:00
|
|
|
mod_user_id: user.id,
|
2019-05-05 05:20:38 +00:00
|
|
|
other_user_id: data.user_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(!data.added),
|
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModAddCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let moderators = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let res = AddModToCommunityResponse { moderators };
|
|
|
|
|
2020-08-24 11:58:24 +00:00
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::AddModToCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id,
|
|
|
|
websocket_id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for TransferCommunity {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn perform(
|
2020-04-19 22:08:25 +00:00
|
|
|
&self,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2020-08-24 11:58:24 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<GetCommunityResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &TransferCommunity = &self;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = get_user_from_jwt(&data.auth, context.pool()).await?;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let read_community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let site_creator_id = blocking(context.pool(), move |conn| {
|
|
|
|
Site::read(conn, 1).map(|s| s.creator_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-12-04 00:47:58 +00:00
|
|
|
let mut admins = blocking(context.pool(), move |conn| UserViewSafe::admins(conn)).await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
// Making sure the creator, if an admin, is at the top
|
2020-08-13 15:46:31 +00:00
|
|
|
let creator_index = admins
|
|
|
|
.iter()
|
2020-12-04 00:47:58 +00:00
|
|
|
.position(|r| r.user.id == site_creator_id)
|
2020-08-13 15:46:31 +00:00
|
|
|
.context(location_info!())?;
|
2019-08-29 22:18:50 +00:00
|
|
|
let creator_user = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_user);
|
|
|
|
|
|
|
|
// Make sure user is the creator, or an admin
|
2020-12-04 00:47:58 +00:00
|
|
|
if user.id != read_community.creator_id
|
|
|
|
&& !admins.iter().map(|a| a.user.id).any(|x| x == user.id)
|
|
|
|
{
|
2020-01-16 14:39:08 +00:00
|
|
|
return Err(APIError::err("not_an_admin").into());
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-07-20 17:37:39 +00:00
|
|
|
let new_creator = data.user_id;
|
|
|
|
let update = move |conn: &'_ _| Community::update_creator(conn, community_id, new_creator);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), update).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("couldnt_update_community").into());
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// You also have to re-do the community_moderator table, reordering it.
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let mut community_mods = blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
let creator_index = community_mods
|
|
|
|
.iter()
|
2020-12-06 14:12:51 +00:00
|
|
|
.position(|r| r.moderator.id == data.user_id)
|
2020-08-13 15:46:31 +00:00
|
|
|
.context(location_info!())?;
|
2019-08-24 02:40:41 +00:00
|
|
|
let creator_user = community_mods.remove(creator_index);
|
|
|
|
community_mods.insert(0, creator_user);
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityModerator::delete_for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
// TODO: this should probably be a bulk operation
|
2019-08-24 02:40:41 +00:00
|
|
|
for cmod in &community_mods {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
2020-12-06 14:12:51 +00:00
|
|
|
community_id: cmod.community.id,
|
|
|
|
user_id: cmod.moderator.id,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), join).await?.is_err() {
|
2020-07-01 12:54:29 +00:00
|
|
|
return Err(APIError::err("community_moderator_already_exists").into());
|
|
|
|
}
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
2020-08-04 14:39:55 +00:00
|
|
|
mod_user_id: user.id,
|
2019-08-24 02:40:41 +00:00
|
|
|
other_user_id: data.user_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(false),
|
|
|
|
};
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
ModAddCommunity::create(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-04 14:39:55 +00:00
|
|
|
let user_id = user.id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community_view = match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityView::read(conn, community_id, Some(user_id))
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-08-24 02:40:41 +00:00
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let moderators = match blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
CommunityModeratorView::for_community(conn, community_id)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
{
|
2019-08-24 02:40:41 +00:00
|
|
|
Ok(moderators) => moderators,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetCommunityResponse {
|
2020-12-06 14:12:51 +00:00
|
|
|
community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
2020-02-01 01:02:20 +00:00
|
|
|
online: 0,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-21 17:52:57 +00:00
|
|
|
|
2020-11-16 15:44:04 +00:00
|
|
|
fn send_community_websocket(
|
2020-07-21 17:52:57 +00:00
|
|
|
res: &CommunityResponse,
|
2020-08-24 11:58:24 +00:00
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
2020-07-21 17:52:57 +00:00
|
|
|
op: UserOperation,
|
|
|
|
) {
|
2020-12-06 14:12:51 +00:00
|
|
|
// TODO is there any way around this?
|
2020-08-24 11:58:24 +00:00
|
|
|
// Strip out the user id and subscribed when sending to others
|
2020-12-06 14:12:51 +00:00
|
|
|
// let mut res_sent = res.clone();
|
|
|
|
// res_sent.community_view.user_id = None;
|
|
|
|
// res_sent.community.subscribed = None;
|
2020-08-24 11:58:24 +00:00
|
|
|
|
|
|
|
context.chat_server().do_send(SendCommunityRoomMessage {
|
|
|
|
op,
|
2020-12-06 14:12:51 +00:00
|
|
|
response: res.to_owned(),
|
|
|
|
community_id: res.community_view.community.id,
|
2020-08-24 11:58:24 +00:00
|
|
|
websocket_id,
|
|
|
|
});
|
2020-07-21 17:52:57 +00:00
|
|
|
}
|
2020-09-15 19:26:47 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CommunityJoin {
|
|
|
|
type Response = CommunityJoinResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<CommunityJoinResponse, LemmyError> {
|
|
|
|
let data: &CommunityJoin = &self;
|
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinCommunityRoom {
|
|
|
|
community_id: data.community_id,
|
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(CommunityJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 00:25:18 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for ModJoin {
|
|
|
|
type Response = ModJoinResponse;
|
|
|
|
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<ModJoinResponse, LemmyError> {
|
|
|
|
let data: &ModJoin = &self;
|
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinModRoom {
|
|
|
|
community_id: data.community_id,
|
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(ModJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|