2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-10-27 09:24:07 +00:00
|
|
|
site::{GetSite, GetSiteResponse, MyUserInfo},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{build_federated_instances, get_local_user_settings_view_from_jwt_opt},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2022-12-19 11:40:22 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
actor_language::{LocalUserLanguage, SiteLanguage},
|
|
|
|
language::Language,
|
|
|
|
tagline::Tagline,
|
|
|
|
};
|
2023-03-20 21:32:31 +00:00
|
|
|
use lemmy_db_views::structs::{CustomEmojiView, SiteView};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::{
|
|
|
|
CommunityBlockView,
|
|
|
|
CommunityFollowerView,
|
|
|
|
CommunityModeratorView,
|
|
|
|
PersonBlockView,
|
2023-03-01 17:19:46 +00:00
|
|
|
PersonView,
|
2021-08-19 20:54:15 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, version, ConnectionId};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetSite {
|
|
|
|
type Response = GetSiteResponse;
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
2021-03-25 19:19:40 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
2022-10-27 09:24:07 +00:00
|
|
|
_websocket_id: Option<ConnectionId>,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<GetSiteResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &GetSite = self;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-03-01 17:19:46 +00:00
|
|
|
let admins = PersonView::admins(context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-12-09 15:31:47 +00:00
|
|
|
let online = context.chat_server().get_users_online()?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
// Build the local user
|
2021-12-06 14:54:47 +00:00
|
|
|
let my_user = if let Some(local_user_view) = get_local_user_settings_view_from_jwt_opt(
|
|
|
|
data.auth.as_ref(),
|
|
|
|
context.pool(),
|
|
|
|
context.secret(),
|
|
|
|
)
|
|
|
|
.await?
|
2021-08-19 20:54:15 +00:00
|
|
|
{
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-08-18 19:11:19 +00:00
|
|
|
let local_user_id = local_user_view.local_user.id;
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let follows = CommunityFollowerView::for_person(context.pool(), person_id)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let community_blocks = CommunityBlockView::for_person(context.pool(), person_id)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let person_blocks = PersonBlockView::for_person(context.pool(), person_id)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let moderates = CommunityModeratorView::for_person(context.pool(), person_id)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-12-19 11:40:22 +00:00
|
|
|
let discussion_languages = LocalUserLanguage::read(context.pool(), local_user_id)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "system_err_login"))?;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
Some(MyUserInfo {
|
|
|
|
local_user_view,
|
|
|
|
follows,
|
|
|
|
moderates,
|
|
|
|
community_blocks,
|
|
|
|
person_blocks,
|
2022-08-18 19:11:19 +00:00
|
|
|
discussion_languages,
|
2021-08-19 20:54:15 +00:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let federated_instances =
|
|
|
|
build_federated_instances(&site_view.local_site, context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let all_languages = Language::read_all(context.pool()).await?;
|
|
|
|
let discussion_languages = SiteLanguage::read_local(context.pool()).await?;
|
2023-03-20 21:32:31 +00:00
|
|
|
let taglines = Tagline::get_all(context.pool(), site_view.local_site.id).await?;
|
|
|
|
let custom_emojis = CustomEmojiView::get_all(context.pool(), site_view.local_site.id).await?;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
Ok(GetSiteResponse {
|
|
|
|
site_view,
|
|
|
|
admins,
|
|
|
|
online,
|
|
|
|
version: version::VERSION.to_string(),
|
|
|
|
my_user,
|
|
|
|
federated_instances,
|
2022-08-18 19:11:19 +00:00
|
|
|
all_languages,
|
2022-10-06 18:27:58 +00:00
|
|
|
discussion_languages,
|
2022-11-19 14:48:29 +00:00
|
|
|
taglines,
|
2023-03-20 21:32:31 +00:00
|
|
|
custom_emojis,
|
2021-03-25 19:19:40 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|