2021-03-25 19:19:40 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use anyhow::Context;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
2021-02-01 18:11:37 +00:00
|
|
|
build_federated_instances,
|
2021-03-11 04:43:11 +00:00
|
|
|
get_local_user_settings_view_from_jwt,
|
2021-03-10 22:33:55 +00:00
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
get_local_user_view_from_jwt_opt,
|
2020-09-24 14:14:09 +00:00
|
|
|
is_admin,
|
2021-03-25 19:19:40 +00:00
|
|
|
site::*,
|
2021-04-21 21:41:14 +00:00
|
|
|
user_show_bot_accounts,
|
|
|
|
user_show_nsfw,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2021-01-12 16:12:41 +00:00
|
|
|
use lemmy_apub::fetcher::search::search_by_apub_id;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_db_queries::{source::site::Site_, Crud, SearchType, SortType};
|
|
|
|
use lemmy_db_schema::source::{moderator::*, site::Site};
|
2020-12-21 16:30:34 +00:00
|
|
|
use lemmy_db_views::{
|
|
|
|
comment_view::CommentQueryBuilder,
|
|
|
|
post_view::PostQueryBuilder,
|
|
|
|
site_view::SiteView,
|
2020-12-21 23:27:42 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_view::CommunityQueryBuilder,
|
2021-03-10 22:33:55 +00:00
|
|
|
person_view::{PersonQueryBuilder, PersonViewSafe},
|
2020-12-21 16:30:34 +00:00
|
|
|
};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_views_moderator::{
|
|
|
|
mod_add_community_view::ModAddCommunityView,
|
|
|
|
mod_add_view::ModAddView,
|
|
|
|
mod_ban_from_community_view::ModBanFromCommunityView,
|
|
|
|
mod_ban_view::ModBanView,
|
|
|
|
mod_lock_post_view::ModLockPostView,
|
|
|
|
mod_remove_comment_view::ModRemoveCommentView,
|
|
|
|
mod_remove_community_view::ModRemoveCommunityView,
|
|
|
|
mod_remove_post_view::ModRemovePostView,
|
|
|
|
mod_sticky_post_view::ModStickyPostView,
|
|
|
|
};
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
2021-03-01 17:24:11 +00:00
|
|
|
settings::structs::Settings,
|
2021-02-09 18:26:06 +00:00
|
|
|
version,
|
2021-02-22 18:04:32 +00:00
|
|
|
ApiError,
|
2020-09-14 15:29:50 +00:00
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use log::debug;
|
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 GetModlog {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetModlogResponse;
|
|
|
|
|
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<GetModlogResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &GetModlog = &self;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = data.community_id;
|
2021-03-10 22:33:55 +00:00
|
|
|
let mod_person_id = data.mod_person_id;
|
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 removed_posts = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModRemovePostView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let locked_posts = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModLockPostView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let stickied_posts = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModStickyPostView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let removed_comments = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModRemoveCommentView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let banned_from_community = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModBanFromCommunityView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let added_to_community = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
ModAddCommunityView::list(conn, community_id, mod_person_id, page, limit)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
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() {
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| {
|
2020-07-01 12:54:29 +00:00
|
|
|
Ok((
|
2021-03-10 22:33:55 +00:00
|
|
|
ModRemoveCommunityView::list(conn, mod_person_id, page, limit)?,
|
|
|
|
ModBanView::list(conn, mod_person_id, page, limit)?,
|
|
|
|
ModAddView::list(conn, mod_person_id, page, limit)?,
|
2020-07-01 12:54:29 +00:00
|
|
|
)) as Result<_, LemmyError>
|
|
|
|
})
|
|
|
|
.await??
|
2020-01-02 11:30:00 +00:00
|
|
|
} 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 {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for Search {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = SearchResponse;
|
|
|
|
|
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<SearchResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &Search = &self;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
match search_by_apub_id(&data.q, context).await {
|
2020-04-17 13:46:08 +00:00
|
|
|
Ok(r) => return Ok(r),
|
|
|
|
Err(e) => debug!("Failed to resolve search query as activitypub ID: {}", e),
|
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let local_user_view = get_local_user_view_from_jwt_opt(&data.auth, context.pool()).await?;
|
2021-04-21 21:41:14 +00:00
|
|
|
|
|
|
|
let show_nsfw = user_show_nsfw(&local_user_view);
|
|
|
|
let show_bot_accounts = user_show_bot_accounts(&local_user_view);
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let person_id = local_user_view.map(|u| u.person.id);
|
2020-01-20 23:39:45 +00:00
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
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
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let q = data.q.to_owned();
|
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
let community_id = data.community_id;
|
2020-10-05 00:57:35 +00:00
|
|
|
let community_name = data.community_name.to_owned();
|
2021-04-09 20:09:58 +00:00
|
|
|
let community_name_2 = data.community_name.to_owned();
|
|
|
|
let creator_id = data.creator_id;
|
2019-05-05 05:20:38 +00:00
|
|
|
match type_ {
|
|
|
|
SearchType::Posts => {
|
2020-08-18 13:43:50 +00:00
|
|
|
posts = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
PostQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2020-12-16 18:59:43 +00:00
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name)
|
2021-04-09 20:09:58 +00:00
|
|
|
.creator_id(creator_id)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.search_term(q)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
SearchType::Comments => {
|
2020-08-18 13:43:50 +00:00
|
|
|
comments = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
CommentQueryBuilder::create(&conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
|
|
|
.search_term(q)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-09 20:09:58 +00:00
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name)
|
|
|
|
.creator_id(creator_id)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::Communities => {
|
2020-08-18 13:43:50 +00:00
|
|
|
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)
|
|
|
|
.search_term(q)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::Users => {
|
2020-08-18 13:43:50 +00:00
|
|
|
users = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
|
|
|
.search_term(q)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
SearchType::All => {
|
2020-08-18 13:43:50 +00:00
|
|
|
posts = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
PostQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2020-12-16 18:59:43 +00:00
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name)
|
2021-04-09 20:09:58 +00:00
|
|
|
.creator_id(creator_id)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.search_term(q)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let q = data.q.to_owned();
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
comments = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
CommentQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
|
|
|
.search_term(q)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-09 20:09:58 +00:00
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name_2)
|
|
|
|
.creator_id(creator_id)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let q = data.q.to_owned();
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
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)
|
|
|
|
.search_term(q)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let q = data.q.to_owned();
|
|
|
|
let sort = SortType::from_str(&data.sort)?;
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
users = blocking(context.pool(), move |conn| {
|
2021-03-10 22:33:55 +00:00
|
|
|
PersonQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
|
|
|
.search_term(q)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
}
|
2019-08-22 05:17:15 +00:00
|
|
|
SearchType::Url => {
|
2020-08-18 13:43:50 +00:00
|
|
|
posts = blocking(context.pool(), move |conn| {
|
2020-12-16 18:59:43 +00:00
|
|
|
PostQueryBuilder::create(conn)
|
2020-07-01 12:54:29 +00:00
|
|
|
.sort(&sort)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-03-10 22:33:55 +00:00
|
|
|
.my_person_id(person_id)
|
2020-12-16 18:59:43 +00:00
|
|
|
.community_id(community_id)
|
|
|
|
.community_name(community_name)
|
2021-04-09 20:09:58 +00:00
|
|
|
.creator_id(creator_id)
|
2020-07-01 12:54:29 +00:00
|
|
|
.url_search(q)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.list()
|
|
|
|
})
|
|
|
|
.await??;
|
2019-05-05 05:20:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Return the jwt
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(SearchResponse {
|
|
|
|
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
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for TransferSite {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetSiteResponse;
|
|
|
|
|
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<GetSiteResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &TransferSite = &self;
|
2021-03-10 22:33:55 +00:00
|
|
|
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
is_admin(&local_user_view)?;
|
2020-09-16 01:36:11 +00:00
|
|
|
|
2020-12-20 01:10:47 +00:00
|
|
|
let read_site = blocking(context.pool(), move |conn| Site::read_simple(conn)).await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
|
|
|
// Make sure user is the creator
|
2021-03-10 22:33:55 +00:00
|
|
|
if read_site.creator_id != local_user_view.person.id {
|
2021-02-22 18:04:32 +00:00
|
|
|
return Err(ApiError::err("not_an_admin").into());
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let new_creator_id = data.person_id;
|
2020-08-05 16:03:46 +00:00
|
|
|
let transfer_site = move |conn: &'_ _| Site::transfer(conn, new_creator_id);
|
2020-08-18 13:43:50 +00:00
|
|
|
if blocking(context.pool(), transfer_site).await?.is_err() {
|
2021-02-22 18:04:32 +00:00
|
|
|
return Err(ApiError::err("couldnt_update_site").into());
|
2019-08-24 02:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Mod tables
|
|
|
|
let form = ModAddForm {
|
2021-03-10 22:33:55 +00:00
|
|
|
mod_person_id: local_user_view.person.id,
|
|
|
|
other_person_id: data.person_id,
|
2019-08-24 02:40:41 +00:00
|
|
|
removed: Some(false),
|
|
|
|
};
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
blocking(context.pool(), move |conn| ModAdd::create(conn, &form)).await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let site_view = blocking(context.pool(), move |conn| SiteView::read(conn)).await??;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let mut admins = blocking(context.pool(), move |conn| PersonViewSafe::admins(conn)).await??;
|
2019-09-07 15:35:05 +00:00
|
|
|
let creator_index = admins
|
|
|
|
.iter()
|
2021-03-10 22:33:55 +00:00
|
|
|
.position(|r| r.person.id == site_view.creator.id)
|
2020-08-13 15:46:31 +00:00
|
|
|
.context(location_info!())?;
|
2021-03-10 22:33:55 +00:00
|
|
|
let creator_person = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_person);
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let banned = blocking(context.pool(), move |conn| PersonViewSafe::banned(conn)).await??;
|
2021-02-01 18:11:37 +00:00
|
|
|
let federated_instances = build_federated_instances(context.pool()).await?;
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2021-03-11 04:43:11 +00:00
|
|
|
let my_user = Some(get_local_user_settings_view_from_jwt(&data.auth, context.pool()).await?);
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
Ok(GetSiteResponse {
|
2020-12-20 01:10:47 +00:00
|
|
|
site_view: Some(site_view),
|
2019-12-09 19:08:19 +00:00
|
|
|
admins,
|
|
|
|
banned,
|
2019-10-13 19:06:18 +00:00
|
|
|
online: 0,
|
2020-07-21 13:20:23 +00:00
|
|
|
version: version::VERSION.to_string(),
|
2021-03-11 04:43:11 +00:00
|
|
|
my_user,
|
2021-02-01 18:11:37 +00:00
|
|
|
federated_instances,
|
2019-09-07 15:35:05 +00:00
|
|
|
})
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-10 20:55:57 +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 GetSiteConfig {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetSiteConfigResponse;
|
|
|
|
|
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<GetSiteConfigResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &GetSiteConfig = &self;
|
2021-03-10 22:33:55 +00:00
|
|
|
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
|
2020-04-10 20:55:57 +00:00
|
|
|
|
|
|
|
// Only let admins read this
|
2021-03-10 22:33:55 +00:00
|
|
|
is_admin(&local_user_view)?;
|
2020-04-10 20:55:57 +00:00
|
|
|
|
|
|
|
let config_hjson = Settings::read_config_file()?;
|
|
|
|
|
|
|
|
Ok(GetSiteConfigResponse { config_hjson })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-08-12 11:31:45 +00:00
|
|
|
impl Perform for SaveSiteConfig {
|
2020-04-20 03:59:07 +00:00
|
|
|
type Response = GetSiteConfigResponse;
|
|
|
|
|
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<GetSiteConfigResponse, LemmyError> {
|
2020-08-12 11:31:45 +00:00
|
|
|
let data: &SaveSiteConfig = &self;
|
2021-03-10 22:33:55 +00:00
|
|
|
let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
|
2020-04-10 20:55:57 +00:00
|
|
|
|
|
|
|
// Only let admins read this
|
2021-03-10 22:33:55 +00:00
|
|
|
is_admin(&local_user_view)?;
|
2020-04-10 20:55:57 +00:00
|
|
|
|
|
|
|
// Make sure docker doesn't have :ro at the end of the volume, so its not a read-only filesystem
|
2021-04-16 13:10:43 +00:00
|
|
|
let config_hjson = Settings::save_config_file(&data.config_hjson)
|
|
|
|
.map_err(|_| ApiError::err("couldnt_update_site"))?;
|
2020-04-10 20:55:57 +00:00
|
|
|
|
|
|
|
Ok(GetSiteConfigResponse { config_hjson })
|
|
|
|
}
|
|
|
|
}
|