2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
|
|
|
build_federated_instances,
|
|
|
|
get_local_user_settings_view_from_jwt_opt,
|
|
|
|
person::Register,
|
|
|
|
site::*,
|
|
|
|
};
|
|
|
|
use lemmy_db_views::site_view::SiteView;
|
2021-08-19 20:54:15 +00:00
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_block_view::CommunityBlockView,
|
|
|
|
community_follower_view::CommunityFollowerView,
|
|
|
|
community_moderator_view::CommunityModeratorView,
|
|
|
|
person_block_view::PersonBlockView,
|
|
|
|
person_view::PersonViewSafe,
|
|
|
|
};
|
2021-12-06 14:54:47 +00:00
|
|
|
use lemmy_utils::{version, ConnectionId, LemmyError};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_websocket::{messages::GetUsersOnline, LemmyContext};
|
2021-11-23 12:16:47 +00:00
|
|
|
use tracing::info;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetSite {
|
|
|
|
type Response = GetSiteResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-03-25 19:19:40 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<GetSiteResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &GetSite = self;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-10-12 16:46:26 +00:00
|
|
|
let site_view = match blocking(context.pool(), SiteView::read).await? {
|
2021-03-25 19:19:40 +00:00
|
|
|
Ok(site_view) => Some(site_view),
|
|
|
|
// If the site isn't created yet, check the setup
|
|
|
|
Err(_) => {
|
2021-09-22 15:57:09 +00:00
|
|
|
if let Some(setup) = context.settings().setup.as_ref() {
|
2021-03-25 19:19:40 +00:00
|
|
|
let register = Register {
|
|
|
|
username: setup.admin_username.to_owned(),
|
2021-12-06 14:54:47 +00:00
|
|
|
email: setup.admin_email.clone().map(|s| s.into()),
|
|
|
|
password: setup.admin_password.clone().into(),
|
|
|
|
password_verify: setup.admin_password.clone().into(),
|
2021-03-25 19:19:40 +00:00
|
|
|
show_nsfw: true,
|
|
|
|
captcha_uuid: None,
|
|
|
|
captcha_answer: None,
|
2021-10-01 11:37:39 +00:00
|
|
|
honeypot: None,
|
2021-12-15 19:49:59 +00:00
|
|
|
answer: None,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2021-12-15 19:49:59 +00:00
|
|
|
let admin_jwt = register
|
|
|
|
.perform(context, websocket_id)
|
|
|
|
.await?
|
|
|
|
.jwt
|
|
|
|
.expect("jwt is returned from registration on newly created site");
|
2021-03-25 19:19:40 +00:00
|
|
|
info!("Admin {} created", setup.admin_username);
|
|
|
|
|
|
|
|
let create_site = CreateSite {
|
|
|
|
name: setup.site_name.to_owned(),
|
2021-08-23 09:44:10 +00:00
|
|
|
sidebar: setup.sidebar.to_owned(),
|
|
|
|
description: setup.description.to_owned(),
|
|
|
|
icon: setup.icon.to_owned(),
|
|
|
|
banner: setup.banner.to_owned(),
|
|
|
|
enable_downvotes: setup.enable_downvotes,
|
|
|
|
open_registration: setup.open_registration,
|
|
|
|
enable_nsfw: setup.enable_nsfw,
|
|
|
|
community_creation_admin_only: setup.community_creation_admin_only,
|
2021-12-15 19:49:59 +00:00
|
|
|
require_email_verification: setup.require_email_verification,
|
|
|
|
require_application: setup.require_application,
|
|
|
|
application_question: setup.application_question.to_owned(),
|
|
|
|
private_instance: setup.private_instance,
|
|
|
|
auth: admin_jwt,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
create_site.perform(context, websocket_id).await?;
|
|
|
|
info!("Site {} created", setup.site_name);
|
2021-10-12 16:46:26 +00:00
|
|
|
Some(blocking(context.pool(), SiteView::read).await??)
|
2021-03-25 19:19:40 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-10-12 16:46:26 +00:00
|
|
|
let mut admins = blocking(context.pool(), PersonViewSafe::admins).await??;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Make sure the site creator is the top admin
|
|
|
|
if let Some(site_view) = site_view.to_owned() {
|
|
|
|
let site_creator_id = site_view.creator.id;
|
|
|
|
// TODO investigate why this is sometimes coming back null
|
|
|
|
// Maybe user_.admin isn't being set to true?
|
|
|
|
if let Some(creator_index) = admins.iter().position(|r| r.person.id == site_creator_id) {
|
|
|
|
let creator_person = admins.remove(creator_index);
|
|
|
|
admins.insert(0, creator_person);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let online = context
|
|
|
|
.chat_server()
|
|
|
|
.send(GetUsersOnline)
|
|
|
|
.await
|
|
|
|
.unwrap_or(1);
|
|
|
|
|
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;
|
|
|
|
let follows = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityFollowerView::for_person(conn, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-12-06 14:54:47 +00:00
|
|
|
.map_err(LemmyError::from)
|
|
|
|
.map_err(|e| e.with_message("system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let community_blocks = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityBlockView::for_person(conn, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-12-06 14:54:47 +00:00
|
|
|
.map_err(LemmyError::from)
|
|
|
|
.map_err(|e| e.with_message("system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let person_blocks = blocking(context.pool(), move |conn| {
|
|
|
|
PersonBlockView::for_person(conn, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-12-06 14:54:47 +00:00
|
|
|
.map_err(LemmyError::from)
|
|
|
|
.map_err(|e| e.with_message("system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
let moderates = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_person(conn, person_id)
|
|
|
|
})
|
|
|
|
.await?
|
2021-12-06 14:54:47 +00:00
|
|
|
.map_err(LemmyError::from)
|
|
|
|
.map_err(|e| e.with_message("system_err_login"))?;
|
2021-08-19 20:54:15 +00:00
|
|
|
|
|
|
|
Some(MyUserInfo {
|
|
|
|
local_user_view,
|
|
|
|
follows,
|
|
|
|
moderates,
|
|
|
|
community_blocks,
|
|
|
|
person_blocks,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let federated_instances = build_federated_instances(
|
|
|
|
context.pool(),
|
|
|
|
&context.settings().federation,
|
|
|
|
&context.settings().hostname,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
Ok(GetSiteResponse {
|
|
|
|
site_view,
|
|
|
|
admins,
|
|
|
|
online,
|
|
|
|
version: version::VERSION.to_string(),
|
|
|
|
my_user,
|
|
|
|
federated_instances,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|