2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetCommunity {
|
|
|
|
id: Option<i32>,
|
|
|
|
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 {
|
|
|
|
op: String,
|
|
|
|
community: CommunityView,
|
|
|
|
moderators: Vec<CommunityModeratorView>,
|
|
|
|
admins: Vec<UserView>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 {
|
|
|
|
op: String,
|
2019-09-07 15:35:05 +00:00
|
|
|
pub community: CommunityView,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct ListCommunities {
|
|
|
|
sort: String,
|
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: Option<String>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct ListCommunitiesResponse {
|
|
|
|
op: String,
|
2019-09-07 15:35:05 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct BanFromCommunityResponse {
|
|
|
|
op: String,
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct AddModToCommunityResponse {
|
|
|
|
op: String,
|
|
|
|
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 {
|
|
|
|
op: String,
|
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
|
|
|
}
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
impl Perform<GetCommunityResponse> for Oper<GetCommunity> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
let community_id = match data.id {
|
|
|
|
Some(id) => id,
|
2019-09-07 15:35:05 +00:00
|
|
|
None => {
|
2019-11-23 00:18:10 +00:00
|
|
|
match Community::read_from_name(&conn, data.name.to_owned().unwrap_or("main".to_string())) {
|
|
|
|
Ok(community) => community.id,
|
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_find_community"))?,
|
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let community_view = match CommunityView::read(&conn, community_id, user_id) {
|
|
|
|
Ok(community) => community,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_find_community"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let moderators = match CommunityModeratorView::for_community(&conn, community_id) {
|
|
|
|
Ok(moderators) => moderators,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_find_community"))?,
|
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
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetCommunityResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
community: community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
|
|
|
admins,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<CommunityResponse> for Oper<CreateCommunity> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
if has_slurs(&data.name)
|
|
|
|
|| has_slurs(&data.title)
|
|
|
|
|| (data.description.is_some() && has_slurs(&data.description.to_owned().unwrap()))
|
|
|
|
{
|
|
|
|
return Err(APIError::err(&self.op, "no_slurs"))?;
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
// Check for a site ban
|
|
|
|
if UserView::read(&conn, user_id)?.banned {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(&self.op, "site_ban"))?;
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// When you create a community, make sure the user becomes a moderator and a follower
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_community = match Community::create(&conn, &community_form) {
|
|
|
|
Ok(community) => community,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_already_exists"))?,
|
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,
|
|
|
|
Err(_e) => {
|
|
|
|
return Err(APIError::err(
|
|
|
|
&self.op,
|
|
|
|
"community_moderator_already_exists",
|
|
|
|
))?
|
|
|
|
}
|
|
|
|
};
|
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,
|
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_follower_already_exists"))?,
|
|
|
|
};
|
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 {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
community: community_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<CommunityResponse> for Oper<EditCommunity> {
|
|
|
|
fn perform(&self) -> Result<CommunityResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &EditCommunity = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
if has_slurs(&data.name) || has_slurs(&data.title) {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(&self.op, "no_slurs"))?;
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
// Check for a site ban
|
|
|
|
if UserView::read(&conn, user_id)?.banned {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(&self.op, "site_ban"))?;
|
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) {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(&self.op, "no_community_edit_allowed"))?;
|
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()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let _updated_community = match Community::update(&conn, data.edit_id, &community_form) {
|
|
|
|
Ok(community) => community,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_update_community"))?,
|
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)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
let community_view = CommunityView::read(&conn, data.edit_id, Some(user_id))?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(CommunityResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
community: community_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<ListCommunitiesResponse> for Oper<ListCommunities> {
|
|
|
|
fn perform(&self) -> Result<ListCommunitiesResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &ListCommunities = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
let conn = establish_connection();
|
|
|
|
|
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)?;
|
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
let communities = CommunityQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
2019-12-10 23:10:39 +00:00
|
|
|
.from_user_id(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
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(ListCommunitiesResponse {
|
|
|
|
op: self.op.to_string(),
|
2019-12-09 19:08:19 +00:00
|
|
|
communities,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<CommunityResponse> for Oper<FollowCommunity> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: data.community_id,
|
2019-12-09 19:08:19 +00:00
|
|
|
user_id,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if data.follow {
|
|
|
|
match CommunityFollower::follow(&conn, &community_follower_form) {
|
|
|
|
Ok(user) => user,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_follower_already_exists"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityFollower::ignore(&conn, &community_follower_form) {
|
|
|
|
Ok(user) => user,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_follower_already_exists"))?,
|
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 {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
community: community_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<GetFollowedCommunitiesResponse> for Oper<GetFollowedCommunities> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let communities: Vec<CommunityFollowerView> =
|
|
|
|
match CommunityFollowerView::for_user(&conn, user_id) {
|
|
|
|
Ok(communities) => communities,
|
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "system_err_login"))?,
|
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetFollowedCommunitiesResponse {
|
|
|
|
op: self.op.to_string(),
|
2019-12-09 19:08:19 +00:00
|
|
|
communities,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<BanFromCommunityResponse> for Oper<BanFromCommunity> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
if data.ban {
|
|
|
|
match CommunityUserBan::ban(&conn, &community_user_ban_form) {
|
|
|
|
Ok(user) => user,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_user_already_banned"))?,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityUserBan::unban(&conn, &community_user_ban_form) {
|
|
|
|
Ok(user) => user,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "community_user_already_banned"))?,
|
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)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(BanFromCommunityResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
user: user_view,
|
|
|
|
banned: data.ban,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<AddModToCommunityResponse> for Oper<AddModToCommunity> {
|
|
|
|
fn perform(&self) -> 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 conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
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
|
|
|
};
|
|
|
|
|
|
|
|
if data.added {
|
|
|
|
match CommunityModerator::join(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
|
|
|
Err(_e) => {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(
|
|
|
|
&self.op,
|
|
|
|
"community_moderator_already_exists",
|
|
|
|
))?
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match CommunityModerator::leave(&conn, &community_moderator_form) {
|
|
|
|
Ok(user) => user,
|
|
|
|
Err(_e) => {
|
2019-09-07 15:35:05 +00:00
|
|
|
return Err(APIError::err(
|
|
|
|
&self.op,
|
|
|
|
"community_moderator_already_exists",
|
|
|
|
))?
|
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)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(AddModToCommunityResponse {
|
|
|
|
op: self.op.to_string(),
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
impl Perform<GetCommunityResponse> for Oper<TransferCommunity> {
|
|
|
|
fn perform(&self) -> Result<GetCommunityResponse, Error> {
|
|
|
|
let data: &TransferCommunity = &self.data;
|
|
|
|
let conn = establish_connection();
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in"))?,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
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
|
2019-09-07 15:35:05 +00:00
|
|
|
if user_id != read_community.creator_id
|
|
|
|
&& !admins
|
|
|
|
.iter()
|
|
|
|
.map(|a| a.id)
|
|
|
|
.collect::<Vec<i32>>()
|
|
|
|
.contains(&user_id)
|
|
|
|
{
|
|
|
|
return Err(APIError::err(&self.op, "not_an_admin"))?;
|
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,
|
|
|
|
creator_id: data.user_id,
|
|
|
|
removed: None,
|
|
|
|
deleted: None,
|
|
|
|
nsfw: read_community.nsfw,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: Some(naive_now()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let _updated_community = match Community::update(&conn, data.community_id, &community_form) {
|
|
|
|
Ok(community) => community,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_update_community"))?,
|
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,
|
|
|
|
Err(_e) => {
|
|
|
|
return Err(APIError::err(
|
|
|
|
&self.op,
|
|
|
|
"community_moderator_already_exists",
|
|
|
|
))?
|
|
|
|
}
|
|
|
|
};
|
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,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_find_community"))?,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let moderators = match CommunityModeratorView::for_community(&conn, data.community_id) {
|
|
|
|
Ok(moderators) => moderators,
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_find_community"))?,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetCommunityResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
community: community_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
moderators,
|
|
|
|
admins,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
}
|