2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetCommunity {
|
|
|
|
id: Option<i32>,
|
2019-12-27 17:25:07 +00:00
|
|
|
pub name: Option<String>,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: Option<String>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetCommunityResponse {
|
2020-02-01 01:02:20 +00:00
|
|
|
pub community: CommunityView,
|
2019-12-27 17:25:07 +00:00
|
|
|
pub moderators: Vec<CommunityModeratorView>,
|
|
|
|
pub admins: Vec<UserView>,
|
2020-02-01 01:02:20 +00:00
|
|
|
pub online: usize,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct CreateCommunity {
|
|
|
|
name: String,
|
|
|
|
title: String,
|
|
|
|
description: Option<String>,
|
2019-08-14 02:52:43 +00:00
|
|
|
category_id: i32,
|
|
|
|
nsfw: bool,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Clone)]
|
|
|
|
pub struct CommunityResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
pub community: CommunityView,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 21:03:05 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2019-05-05 05:20:38 +00:00
|
|
|
pub struct ListCommunities {
|
2020-04-03 05:02:43 +00:00
|
|
|
pub sort: String,
|
|
|
|
pub page: Option<i64>,
|
|
|
|
pub limit: Option<i64>,
|
|
|
|
pub auth: Option<String>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-27 17:25:07 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2019-05-05 05:20:38 +00:00
|
|
|
pub struct ListCommunitiesResponse {
|
2019-12-27 17:25:07 +00:00
|
|
|
pub communities: Vec<CommunityView>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-05 16:20:30 +00:00
|
|
|
#[derive(Serialize, Deserialize, Clone)]
|
2019-05-05 05:20:38 +00:00
|
|
|
pub struct BanFromCommunity {
|
|
|
|
pub community_id: i32,
|
|
|
|
user_id: i32,
|
|
|
|
ban: bool,
|
|
|
|
reason: Option<String>,
|
|
|
|
expires: Option<i64>,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
#[derive(Serialize, Deserialize, Clone)]
|
2019-05-05 05:20:38 +00:00
|
|
|
pub struct BanFromCommunityResponse {
|
|
|
|
user: UserView,
|
|
|
|
banned: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct AddModToCommunity {
|
|
|
|
pub community_id: i32,
|
|
|
|
user_id: i32,
|
|
|
|
added: bool,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
#[derive(Serialize, Deserialize, Clone)]
|
2019-05-05 05:20:38 +00:00
|
|
|
pub struct AddModToCommunityResponse {
|
|
|
|
moderators: Vec<CommunityModeratorView>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct EditCommunity {
|
|
|
|
pub edit_id: i32,
|
|
|
|
name: String,
|
|
|
|
title: String,
|
|
|
|
description: Option<String>,
|
|
|
|
category_id: i32,
|
|
|
|
removed: Option<bool>,
|
|
|
|
deleted: Option<bool>,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: bool,
|
2019-05-05 05:20:38 +00:00
|
|
|
reason: Option<String>,
|
|
|
|
expires: Option<i64>,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct FollowCommunity {
|
|
|
|
community_id: i32,
|
|
|
|
follow: bool,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetFollowedCommunities {
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetFollowedCommunitiesResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
communities: Vec<CommunityFollowerView>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct TransferCommunity {
|
|
|
|
community_id: i32,
|
|
|
|
user_id: i32,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<GetCommunity> {
|
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<GetCommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &GetCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let user_id: Option<i32> = match &data.auth {
|
2019-09-07 15:35:05 +00:00
|
|
|
Some(auth) => match Claims::decode(&auth) {
|
|
|
|
Ok(claims) => {
|
|
|
|
let user_id = claims.claims.id;
|
|
|
|
Some(user_id)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => None,
|
|
|
|
},
|
|
|
|
None => None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2020-04-07 16:47:19 +00:00
|
|
|
let community = match data.id {
|
|
|
|
Some(id) => Community::read(&conn, id)?,
|
2019-09-07 15:35:05 +00:00
|
|
|
None => {
|
2020-01-02 11:30:00 +00:00
|
|
|
match Community::read_from_name(
|
|
|
|
&conn,
|
2020-04-24 14:04:36 +00:00
|
|
|
&data.name.to_owned().unwrap_or_else(|| "main".to_string()),
|
2020-01-02 11:30:00 +00:00
|
|
|
) {
|
2020-04-07 16:47:19 +00:00
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("couldnt_find_community").into()),
|
2019-11-23 00:18:10 +00:00
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-04-14 23:18:13 +00:00
|
|
|
let community_view = match CommunityView::read(&conn, community.id, user_id) {
|
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-04-07 16:47:19 +00:00
|
|
|
let moderators = match CommunityModeratorView::for_community(&conn, community.id) {
|
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
|
|
|
};
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
let site_creator_id = Site::read(&conn, 1)?.creator_id;
|
|
|
|
let mut admins = UserView::admins(&conn)?;
|
|
|
|
let creator_index = admins.iter().position(|r| r.id == site_creator_id).unwrap();
|
|
|
|
let creator_user = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_user);
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let online = if let Some(ws) = websocket_info {
|
|
|
|
if let Some(id) = ws.id {
|
2020-04-21 14:25:29 +00:00
|
|
|
ws.chatserver.do_send(JoinCommunityRoom {
|
|
|
|
community_id: community.id,
|
|
|
|
id,
|
|
|
|
});
|
2020-04-19 22:08:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
1
|
|
|
|
// let fut = async {
|
|
|
|
// ws.chatserver.send(GetCommunityUsersOnline {community_id}).await.unwrap()
|
|
|
|
// };
|
|
|
|
// Runtime::new().unwrap().block_on(fut)
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
let res = GetCommunityResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
community: community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
|
|
|
admins,
|
2020-04-19 22:08:25 +00:00
|
|
|
online,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<CreateCommunity> {
|
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
_websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<CommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &CreateCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2020-02-03 03:51:54 +00:00
|
|
|
if let Err(slurs) = slur_check(&data.name) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Err(slurs) = slur_check(&data.title) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(description) = &data.description {
|
|
|
|
if let Err(slurs) = slur_check(description) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
// Check for a site ban
|
|
|
|
if UserView::read(&conn, user_id)?.banned {
|
2020-01-16 14:39:08 +00:00
|
|
|
return Err(APIError::err("site_ban").into());
|
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(),
|
|
|
|
category_id: data.category_id,
|
|
|
|
creator_id: user_id,
|
|
|
|
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-04-03 04:12:05 +00:00
|
|
|
actor_id: make_apub_endpoint(EndpointType::Community, &data.name).to_string(),
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_community = match Community::create(&conn, &community_form) {
|
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_already_exists").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: inserted_community.id,
|
2019-12-09 19:08:19 +00:00
|
|
|
user_id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let _inserted_community_moderator =
|
|
|
|
match CommunityModerator::join(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_moderator_already_exists").into()),
|
2019-09-07 15:35:05 +00:00
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: inserted_community.id,
|
2019-12-09 19:08:19 +00:00
|
|
|
user_id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let _inserted_community_follower =
|
|
|
|
match CommunityFollower::follow(&conn, &community_follower_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_follower_already_exists").into()),
|
2019-09-07 15:35:05 +00:00
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let community_view = CommunityView::read(&conn, inserted_community.id, Some(user_id))?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(CommunityResponse {
|
|
|
|
community: community_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<EditCommunity> {
|
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<CommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &EditCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-02-03 03:51:54 +00:00
|
|
|
if let Err(slurs) = slur_check(&data.name) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Err(slurs) = slur_check(&data.title) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(description) = &data.description {
|
|
|
|
if let Err(slurs) = slur_check(description) {
|
|
|
|
return Err(APIError::err(&slurs_vec_to_str(slurs)).into());
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
// Check for a site ban
|
2020-05-01 14:07:38 +00:00
|
|
|
let user = User_::read(&conn, user_id)?;
|
|
|
|
if user.banned {
|
2020-01-16 14:39:08 +00:00
|
|
|
return Err(APIError::err("site_ban").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify its a mod
|
|
|
|
let mut editors: Vec<i32> = Vec::new();
|
|
|
|
editors.append(
|
2019-09-07 15:35:05 +00:00
|
|
|
&mut CommunityModeratorView::for_community(&conn, data.edit_id)?
|
|
|
|
.into_iter()
|
|
|
|
.map(|m| m.user_id)
|
|
|
|
.collect(),
|
|
|
|
);
|
|
|
|
editors.append(&mut UserView::admins(&conn)?.into_iter().map(|a| a.id).collect());
|
2019-05-05 05:20:38 +00:00
|
|
|
if !editors.contains(&user_id) {
|
2020-01-16 14:39:08 +00:00
|
|
|
return Err(APIError::err("no_community_edit_allowed").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 04:12:05 +00:00
|
|
|
let read_community = Community::read(&conn, data.edit_id)?;
|
|
|
|
|
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(),
|
|
|
|
category_id: data.category_id.to_owned(),
|
|
|
|
creator_id: user_id,
|
|
|
|
removed: data.removed.to_owned(),
|
|
|
|
deleted: data.deleted.to_owned(),
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: data.nsfw,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: Some(naive_now()),
|
2020-04-03 04:12:05 +00:00
|
|
|
actor_id: read_community.actor_id,
|
|
|
|
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-04-28 17:46:25 +00:00
|
|
|
let updated_community = match Community::update(&conn, data.edit_id, &community_form) {
|
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
|
|
|
};
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
if let Some(removed) = data.removed.to_owned() {
|
|
|
|
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 = ModRemoveCommunityForm {
|
|
|
|
mod_user_id: user_id,
|
|
|
|
community_id: data.edit_id,
|
|
|
|
removed: Some(removed),
|
|
|
|
reason: data.reason.to_owned(),
|
2019-12-09 19:08:19 +00:00
|
|
|
expires,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
ModRemoveCommunity::create(&conn, &form)?;
|
2020-04-28 17:46:25 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 14:51:25 +00:00
|
|
|
if let Some(deleted) = data.deleted.to_owned() {
|
|
|
|
if deleted {
|
2020-05-01 14:07:38 +00:00
|
|
|
updated_community.send_delete(&user, &conn)?;
|
2020-04-29 14:51:25 +00:00
|
|
|
} else {
|
|
|
|
// TODO: undo delete
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let community_view = CommunityView::read(&conn, data.edit_id, Some(user_id))?;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let res = CommunityResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
community: community_view,
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(ws) = websocket_info {
|
|
|
|
// Strip out the user id and subscribed when sending to others
|
|
|
|
let mut res_sent = res.clone();
|
|
|
|
res_sent.community.user_id = None;
|
|
|
|
res_sent.community.subscribed = None;
|
|
|
|
|
|
|
|
ws.chatserver.do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::EditCommunity,
|
|
|
|
response: res_sent,
|
|
|
|
community_id: data.edit_id,
|
|
|
|
my_id: ws.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<ListCommunities> {
|
|
|
|
type Response = ListCommunitiesResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
_websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<ListCommunitiesResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &ListCommunities = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2019-08-14 02:52:43 +00:00
|
|
|
let user_claims: Option<Claims> = match &data.auth {
|
2019-09-07 15:35:05 +00:00
|
|
|
Some(auth) => match Claims::decode(&auth) {
|
|
|
|
Ok(claims) => Some(claims.claims),
|
|
|
|
Err(_e) => None,
|
|
|
|
},
|
|
|
|
None => None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-08-14 02:52:43 +00:00
|
|
|
let user_id = match &user_claims {
|
|
|
|
Some(claims) => Some(claims.id),
|
2019-09-07 15:35:05 +00:00
|
|
|
None => None,
|
2019-08-14 02:52:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let show_nsfw = match &user_claims {
|
|
|
|
Some(claims) => claims.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-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
let communities = CommunityQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
2020-01-02 11:30:00 +00:00
|
|
|
.for_user(user_id)
|
2019-12-08 20:39:54 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
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-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<FollowCommunity> {
|
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
_websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<CommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &FollowCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2020-04-21 14:25:29 +00:00
|
|
|
let community = Community::read(&conn, data.community_id)?;
|
2020-04-14 15:37:23 +00:00
|
|
|
if community.local {
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
|
|
|
user_id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
2020-04-14 15:37:23 +00:00
|
|
|
|
|
|
|
if data.follow {
|
|
|
|
match CommunityFollower::follow(&conn, &community_follower_form) {
|
|
|
|
Ok(user) => user,
|
|
|
|
Err(_e) => return Err(APIError::err("community_follower_already_exists").into()),
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityFollower::ignore(&conn, &community_follower_form) {
|
|
|
|
Ok(user) => user,
|
|
|
|
Err(_e) => return Err(APIError::err("community_follower_already_exists").into()),
|
|
|
|
};
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
} else {
|
2020-04-14 15:37:23 +00:00
|
|
|
// TODO: still have to implement unfollow
|
2020-04-21 14:25:29 +00:00
|
|
|
let user = User_::read(&conn, user_id)?;
|
2020-04-27 22:17:02 +00:00
|
|
|
user.send_follow(&community.actor_id, &conn)?;
|
2020-04-14 15:37:23 +00:00
|
|
|
// TODO: this needs to return a "pending" state, until Accept is received from the remote server
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let community_view = CommunityView::read(&conn, data.community_id, Some(user_id))?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(CommunityResponse {
|
|
|
|
community: community_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<GetFollowedCommunities> {
|
|
|
|
type Response = GetFollowedCommunitiesResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
_websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<GetFollowedCommunitiesResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &GetFollowedCommunities = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let communities: Vec<CommunityFollowerView> =
|
|
|
|
match CommunityFollowerView::for_user(&conn, user_id) {
|
|
|
|
Ok(communities) => communities,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("system_err_login").into()),
|
2019-09-07 15:35:05 +00:00
|
|
|
};
|
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-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<BanFromCommunity> {
|
|
|
|
type Response = BanFromCommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<BanFromCommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &BanFromCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
let community_user_ban_form = CommunityUserBanForm {
|
|
|
|
community_id: data.community_id,
|
|
|
|
user_id: data.user_id,
|
|
|
|
};
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
if data.ban {
|
|
|
|
match CommunityUserBan::ban(&conn, &community_user_ban_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_user_already_banned").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityUserBan::unban(&conn, &community_user_ban_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_user_already_banned").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
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 {
|
|
|
|
mod_user_id: user_id,
|
|
|
|
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
|
|
|
};
|
|
|
|
ModBanFromCommunity::create(&conn, &form)?;
|
|
|
|
|
|
|
|
let user_view = UserView::read(&conn, data.user_id)?;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let res = BanFromCommunityResponse {
|
2019-09-07 15:35:05 +00:00
|
|
|
user: user_view,
|
|
|
|
banned: data.ban,
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(ws) = websocket_info {
|
|
|
|
ws.chatserver.do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::BanFromCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id: data.community_id,
|
|
|
|
my_id: ws.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<AddModToCommunity> {
|
|
|
|
type Response = AddModToCommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<AddModToCommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &AddModToCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
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-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
if data.added {
|
|
|
|
match CommunityModerator::join(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_moderator_already_exists").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityModerator::leave(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_moderator_already_exists").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
|
|
|
mod_user_id: user_id,
|
|
|
|
other_user_id: data.user_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(!data.added),
|
|
|
|
};
|
|
|
|
ModAddCommunity::create(&conn, &form)?;
|
|
|
|
|
|
|
|
let moderators = CommunityModeratorView::for_community(&conn, data.community_id)?;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let res = AddModToCommunityResponse { moderators };
|
|
|
|
|
|
|
|
if let Some(ws) = websocket_info {
|
|
|
|
ws.chatserver.do_send(SendCommunityRoomMessage {
|
|
|
|
op: UserOperation::AddModToCommunity,
|
|
|
|
response: res.clone(),
|
|
|
|
community_id: data.community_id,
|
|
|
|
my_id: ws.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2020-04-20 03:59:07 +00:00
|
|
|
impl Perform for Oper<TransferCommunity> {
|
|
|
|
type Response = GetCommunityResponse;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
fn perform(
|
|
|
|
&self,
|
|
|
|
pool: Pool<ConnectionManager<PgConnection>>,
|
|
|
|
_websocket_info: Option<WebsocketInfo>,
|
|
|
|
) -> Result<GetCommunityResponse, Error> {
|
2019-08-24 02:40:41 +00:00
|
|
|
let data: &TransferCommunity = &self.data;
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("not_logged_in").into()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
let conn = pool.get()?;
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
let read_community = Community::read(&conn, data.community_id)?;
|
|
|
|
|
2019-08-29 22:18:50 +00:00
|
|
|
let site_creator_id = Site::read(&conn, 1)?.creator_id;
|
|
|
|
let mut admins = UserView::admins(&conn)?;
|
|
|
|
let creator_index = admins.iter().position(|r| r.id == site_creator_id).unwrap();
|
|
|
|
let creator_user = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_user);
|
|
|
|
|
|
|
|
// Make sure user is the creator, or an admin
|
2020-01-02 11:30:00 +00:00
|
|
|
if user_id != read_community.creator_id && !admins.iter().map(|a| a.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
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
let community_form = CommunityForm {
|
|
|
|
name: read_community.name,
|
|
|
|
title: read_community.title,
|
|
|
|
description: read_community.description,
|
|
|
|
category_id: read_community.category_id,
|
2020-05-01 14:07:38 +00:00
|
|
|
creator_id: data.user_id, // This makes the new user the community creator
|
2019-08-24 02:40:41 +00:00
|
|
|
removed: None,
|
|
|
|
deleted: None,
|
|
|
|
nsfw: read_community.nsfw,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: Some(naive_now()),
|
2020-04-03 04:12:05 +00:00
|
|
|
actor_id: read_community.actor_id,
|
|
|
|
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-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let _updated_community = match Community::update(&conn, data.community_id, &community_form) {
|
|
|
|
Ok(community) => community,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => 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.
|
|
|
|
let mut community_mods = CommunityModeratorView::for_community(&conn, data.community_id)?;
|
2019-09-07 15:35:05 +00:00
|
|
|
let creator_index = community_mods
|
|
|
|
.iter()
|
|
|
|
.position(|r| r.user_id == data.user_id)
|
|
|
|
.unwrap();
|
2019-08-24 02:40:41 +00:00
|
|
|
let creator_user = community_mods.remove(creator_index);
|
|
|
|
community_mods.insert(0, creator_user);
|
|
|
|
|
|
|
|
CommunityModerator::delete_for_community(&conn, data.community_id)?;
|
|
|
|
|
|
|
|
for cmod in &community_mods {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: cmod.community_id,
|
2019-09-07 15:35:05 +00:00
|
|
|
user_id: cmod.user_id,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let _inserted_community_moderator =
|
|
|
|
match CommunityModerator::join(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
2020-01-16 14:39:08 +00:00
|
|
|
Err(_e) => return Err(APIError::err("community_moderator_already_exists").into()),
|
2019-09-07 15:35:05 +00:00
|
|
|
};
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddCommunityForm {
|
|
|
|
mod_user_id: user_id,
|
|
|
|
other_user_id: data.user_id,
|
|
|
|
community_id: data.community_id,
|
|
|
|
removed: Some(false),
|
|
|
|
};
|
|
|
|
ModAddCommunity::create(&conn, &form)?;
|
|
|
|
|
|
|
|
let community_view = match CommunityView::read(&conn, data.community_id, Some(user_id)) {
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
let moderators = match CommunityModeratorView::for_community(&conn, data.community_id) {
|
|
|
|
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 {
|
|
|
|
community: community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
|
|
|
admins,
|
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
|
|
|
}
|
|
|
|
}
|