2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
2020-01-12 15:31:51 +00:00
|
|
|
use diesel::PgConnection;
|
2019-05-05 05:20:38 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct ListCategories;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct ListCategoriesResponse {
|
|
|
|
op: String,
|
2019-09-07 15:35:05 +00:00
|
|
|
categories: Vec<Category>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct Search {
|
|
|
|
q: String,
|
|
|
|
type_: String,
|
|
|
|
community_id: Option<i32>,
|
|
|
|
sort: String,
|
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct SearchResponse {
|
|
|
|
op: String,
|
2019-08-22 05:17:15 +00:00
|
|
|
type_: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
comments: Vec<CommentView>,
|
|
|
|
posts: Vec<PostView>,
|
2019-08-10 17:32:06 +00:00
|
|
|
communities: Vec<CommunityView>,
|
|
|
|
users: Vec<UserView>,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetModlog {
|
|
|
|
mod_user_id: Option<i32>,
|
|
|
|
community_id: Option<i32>,
|
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetModlogResponse {
|
|
|
|
op: String,
|
|
|
|
removed_posts: Vec<ModRemovePostView>,
|
|
|
|
locked_posts: Vec<ModLockPostView>,
|
2019-09-09 06:14:13 +00:00
|
|
|
stickied_posts: Vec<ModStickyPostView>,
|
2019-05-05 05:20:38 +00:00
|
|
|
removed_comments: Vec<ModRemoveCommentView>,
|
|
|
|
removed_communities: Vec<ModRemoveCommunityView>,
|
|
|
|
banned_from_community: Vec<ModBanFromCommunityView>,
|
|
|
|
banned: Vec<ModBanView>,
|
|
|
|
added_to_community: Vec<ModAddCommunityView>,
|
|
|
|
added: Vec<ModAddView>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct CreateSite {
|
|
|
|
name: String,
|
|
|
|
description: Option<String>,
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: bool,
|
|
|
|
open_registration: bool,
|
|
|
|
enable_nsfw: bool,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct EditSite {
|
|
|
|
name: String,
|
|
|
|
description: Option<String>,
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: bool,
|
|
|
|
open_registration: bool,
|
|
|
|
enable_nsfw: bool,
|
2019-09-07 15:35:05 +00:00
|
|
|
auth: String,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
2019-06-12 01:41:01 +00:00
|
|
|
pub struct GetSite;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct SiteResponse {
|
|
|
|
op: String,
|
|
|
|
site: SiteView,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct GetSiteResponse {
|
|
|
|
op: String,
|
|
|
|
site: Option<SiteView>,
|
|
|
|
admins: Vec<UserView>,
|
|
|
|
banned: Vec<UserView>,
|
2019-09-13 16:09:01 +00:00
|
|
|
pub online: usize,
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct TransferSite {
|
|
|
|
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<ListCategoriesResponse> for Oper<ListCategories> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<ListCategoriesResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let _data: &ListCategories = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let categories: Vec<Category> = Category::list_all(&conn)?;
|
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(ListCategoriesResponse {
|
|
|
|
op: self.op.to_string(),
|
2019-12-09 19:08:19 +00:00
|
|
|
categories,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<GetModlogResponse> for Oper<GetModlog> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<GetModlogResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &GetModlog = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
let removed_posts = ModRemovePostView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
|
|
|
let locked_posts = ModLockPostView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
2019-09-09 06:14:13 +00:00
|
|
|
let stickied_posts = ModStickyPostView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
2019-09-07 15:35:05 +00:00
|
|
|
let removed_comments = ModRemoveCommentView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
|
|
|
let banned_from_community = ModBanFromCommunityView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
|
|
|
let added_to_community = ModAddCommunityView::list(
|
|
|
|
&conn,
|
|
|
|
data.community_id,
|
|
|
|
data.mod_user_id,
|
|
|
|
data.page,
|
|
|
|
data.limit,
|
|
|
|
)?;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// These arrays are only for the full modlog, when a community isn't given
|
2020-01-02 11:30:00 +00:00
|
|
|
let (removed_communities, banned, added) = if data.community_id.is_none() {
|
|
|
|
(
|
|
|
|
ModRemoveCommunityView::list(&conn, data.mod_user_id, data.page, data.limit)?,
|
|
|
|
ModBanView::list(&conn, data.mod_user_id, data.page, data.limit)?,
|
|
|
|
ModAddView::list(&conn, data.mod_user_id, data.page, data.limit)?,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(Vec::new(), Vec::new(), Vec::new())
|
|
|
|
};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetModlogResponse {
|
|
|
|
op: self.op.to_string(),
|
2019-12-09 19:08:19 +00:00
|
|
|
removed_posts,
|
|
|
|
locked_posts,
|
|
|
|
stickied_posts,
|
|
|
|
removed_comments,
|
|
|
|
removed_communities,
|
|
|
|
banned_from_community,
|
|
|
|
banned,
|
|
|
|
added_to_community,
|
|
|
|
added,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<SiteResponse> for Oper<CreateSite> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<SiteResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &CreateSite = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
if has_slurs(&data.name)
|
|
|
|
|| (data.description.is_some() && has_slurs(&data.description.to_owned().unwrap()))
|
|
|
|
{
|
2020-01-02 11:30:00 +00:00
|
|
|
return Err(APIError::err(&self.op, "no_slurs").into());
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
// Make sure user is an admin
|
|
|
|
if !UserView::read(&conn, user_id)?.admin {
|
2020-01-02 11:30:00 +00:00
|
|
|
return Err(APIError::err(&self.op, "not_an_admin").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let site_form = SiteForm {
|
|
|
|
name: data.name.to_owned(),
|
|
|
|
description: data.description.to_owned(),
|
|
|
|
creator_id: user_id,
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: data.enable_downvotes,
|
|
|
|
open_registration: data.open_registration,
|
|
|
|
enable_nsfw: data.enable_nsfw,
|
2019-05-05 05:20:38 +00:00
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
match Site::create(&conn, &site_form) {
|
|
|
|
Ok(site) => site,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "site_already_exists").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let site_view = SiteView::read(&conn)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(SiteResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
site: site_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<SiteResponse> for Oper<EditSite> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<SiteResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &EditSite = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
if has_slurs(&data.name)
|
|
|
|
|| (data.description.is_some() && has_slurs(&data.description.to_owned().unwrap()))
|
|
|
|
{
|
2020-01-02 11:30:00 +00:00
|
|
|
return Err(APIError::err(&self.op, "no_slurs").into());
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
// Make sure user is an admin
|
2020-01-02 11:30:00 +00:00
|
|
|
if !UserView::read(&conn, user_id)?.admin {
|
|
|
|
return Err(APIError::err(&self.op, "not_an_admin").into());
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let found_site = Site::read(&conn, 1)?;
|
|
|
|
|
|
|
|
let site_form = SiteForm {
|
|
|
|
name: data.name.to_owned(),
|
|
|
|
description: data.description.to_owned(),
|
|
|
|
creator_id: found_site.creator_id,
|
|
|
|
updated: Some(naive_now()),
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: data.enable_downvotes,
|
|
|
|
open_registration: data.open_registration,
|
|
|
|
enable_nsfw: data.enable_nsfw,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
match Site::update(&conn, 1, &site_form) {
|
|
|
|
Ok(site) => site,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_update_site").into()),
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let site_view = SiteView::read(&conn)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(SiteResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
site: site_view,
|
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<GetSiteResponse> for Oper<GetSite> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<GetSiteResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let _data: &GetSite = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
// It can return a null site in order to redirect
|
|
|
|
let site_view = match Site::read(&conn, 1) {
|
|
|
|
Ok(_site) => Some(SiteView::read(&conn)?),
|
2019-09-07 15:35:05 +00:00
|
|
|
Err(_e) => None,
|
2019-05-05 05:20:38 +00:00
|
|
|
};
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
let mut admins = UserView::admins(&conn)?;
|
|
|
|
if site_view.is_some() {
|
|
|
|
let site_creator_id = site_view.to_owned().unwrap().creator_id;
|
|
|
|
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
|
|
|
let banned = UserView::banned(&conn)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetSiteResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
site: site_view,
|
2019-12-09 19:08:19 +00:00
|
|
|
admins,
|
|
|
|
banned,
|
2019-10-13 19:06:18 +00:00
|
|
|
online: 0,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Perform<SearchResponse> for Oper<Search> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<SearchResponse, Error> {
|
2019-05-05 16:20:30 +00:00
|
|
|
let data: &Search = &self.data;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
let type_ = SearchType::from_str(&data.type_)?;
|
|
|
|
|
|
|
|
let mut posts = Vec::new();
|
|
|
|
let mut comments = Vec::new();
|
2019-08-10 17:32:06 +00:00
|
|
|
let mut communities = Vec::new();
|
|
|
|
let mut users = Vec::new();
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2019-08-14 02:52:43 +00:00
|
|
|
// TODO no clean / non-nsfw searching rn
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
match type_ {
|
|
|
|
SearchType::Posts => {
|
2019-12-07 22:54:42 +00:00
|
|
|
posts = PostQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.show_nsfw(true)
|
2019-12-10 23:10:39 +00:00
|
|
|
.for_community_id(data.community_id)
|
2019-12-07 12:03:03 +00:00
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-07 12:03:03 +00:00
|
|
|
.list()?;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
SearchType::Comments => {
|
2019-12-08 20:39:54 +00:00
|
|
|
comments = CommentQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::Communities => {
|
2019-12-08 20:39:54 +00:00
|
|
|
communities = CommunityQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::Users => {
|
2019-12-08 20:39:54 +00:00
|
|
|
users = UserQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::All => {
|
2019-12-07 22:54:42 +00:00
|
|
|
posts = PostQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.show_nsfw(true)
|
2019-12-10 23:10:39 +00:00
|
|
|
.for_community_id(data.community_id)
|
2019-12-07 12:03:03 +00:00
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-07 12:03:03 +00:00
|
|
|
.list()?;
|
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
comments = CommentQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
|
|
|
|
|
|
|
communities = CommunityQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
|
|
|
|
|
|
|
users = UserQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.search_term(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-08 20:39:54 +00:00
|
|
|
.list()?;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-22 05:17:15 +00:00
|
|
|
SearchType::Url => {
|
2019-12-07 22:54:42 +00:00
|
|
|
posts = PostQueryBuilder::create(&conn)
|
|
|
|
.sort(&sort)
|
|
|
|
.show_nsfw(true)
|
2019-12-10 23:10:39 +00:00
|
|
|
.for_community_id(data.community_id)
|
2019-12-07 12:03:03 +00:00
|
|
|
.url_search(data.q.to_owned())
|
2019-12-10 23:10:39 +00:00
|
|
|
.page(data.page)
|
|
|
|
.limit(data.limit)
|
2019-12-07 12:03:03 +00:00
|
|
|
.list()?;
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(SearchResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
type_: data.type_.to_owned(),
|
2019-12-09 19:08:19 +00:00
|
|
|
comments,
|
|
|
|
posts,
|
|
|
|
communities,
|
|
|
|
users,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-24 02:40:41 +00:00
|
|
|
|
|
|
|
impl Perform<GetSiteResponse> for Oper<TransferSite> {
|
2020-01-12 15:31:51 +00:00
|
|
|
fn perform(&self, conn: &PgConnection) -> Result<GetSiteResponse, Error> {
|
2019-08-24 02:40:41 +00:00
|
|
|
let data: &TransferSite = &self.data;
|
|
|
|
|
|
|
|
let claims = match Claims::decode(&data.auth) {
|
|
|
|
Ok(claims) => claims.claims,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "not_logged_in").into()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let user_id = claims.id;
|
|
|
|
|
|
|
|
let read_site = Site::read(&conn, 1)?;
|
|
|
|
|
|
|
|
// Make sure user is the creator
|
|
|
|
if read_site.creator_id != user_id {
|
2020-01-02 11:30:00 +00:00
|
|
|
return Err(APIError::err(&self.op, "not_an_admin").into());
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let site_form = SiteForm {
|
|
|
|
name: read_site.name,
|
|
|
|
description: read_site.description,
|
|
|
|
creator_id: data.user_id,
|
|
|
|
updated: Some(naive_now()),
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: read_site.enable_downvotes,
|
|
|
|
open_registration: read_site.open_registration,
|
|
|
|
enable_nsfw: read_site.enable_nsfw,
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
match Site::update(&conn, 1, &site_form) {
|
|
|
|
Ok(site) => site,
|
2020-01-02 11:30:00 +00:00
|
|
|
Err(_e) => return Err(APIError::err(&self.op, "couldnt_update_site").into()),
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddForm {
|
|
|
|
mod_user_id: user_id,
|
|
|
|
other_user_id: data.user_id,
|
|
|
|
removed: Some(false),
|
|
|
|
};
|
|
|
|
|
|
|
|
ModAdd::create(&conn, &form)?;
|
|
|
|
|
|
|
|
let site_view = SiteView::read(&conn)?;
|
|
|
|
|
|
|
|
let mut admins = UserView::admins(&conn)?;
|
2019-09-07 15:35:05 +00:00
|
|
|
let creator_index = admins
|
|
|
|
.iter()
|
|
|
|
.position(|r| r.id == site_view.creator_id)
|
|
|
|
.unwrap();
|
2019-08-24 02:40:41 +00:00
|
|
|
let creator_user = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_user);
|
|
|
|
|
|
|
|
let banned = UserView::banned(&conn)?;
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetSiteResponse {
|
|
|
|
op: self.op.to_string(),
|
|
|
|
site: Some(site_view),
|
2019-12-09 19:08:19 +00:00
|
|
|
admins,
|
|
|
|
banned,
|
2019-10-13 19:06:18 +00:00
|
|
|
online: 0,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
}
|