2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::core::signatures::generate_actor_keypair;
|
2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
2021-04-07 11:40:35 +00:00
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
site::{CreateSite, SiteResponse},
|
2022-10-27 09:24:07 +00:00
|
|
|
utils::{
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
is_admin,
|
|
|
|
local_site_to_slur_regex,
|
|
|
|
site_description_length_check,
|
|
|
|
},
|
2021-04-07 11:40:35 +00:00
|
|
|
};
|
2022-02-07 19:23:12 +00:00
|
|
|
use lemmy_apub::generate_site_inbox_url;
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-02-07 19:23:12 +00:00
|
|
|
newtypes::DbUrl,
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{
|
|
|
|
local_site::{LocalSite, LocalSiteUpdateForm},
|
|
|
|
local_site_rate_limit::{LocalSiteRateLimit, LocalSiteRateLimitUpdateForm},
|
|
|
|
site::{Site, SiteUpdateForm},
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
2022-05-03 17:44:13 +00:00
|
|
|
utils::{diesel_option_overwrite, diesel_option_overwrite_to_url, naive_now},
|
2021-04-07 11:40:35 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::SiteView;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2022-10-27 09:24:07 +00:00
|
|
|
utils::{check_application_question, check_slurs, check_slurs_opt},
|
2021-03-25 19:19:40 +00:00
|
|
|
ConnectionId,
|
|
|
|
};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
2022-02-07 19:23:12 +00:00
|
|
|
use url::Url;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for CreateSite {
|
|
|
|
type Response = SiteResponse;
|
|
|
|
|
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<SiteResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &CreateSite = self;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
if local_site.site_setup {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("site_already_exists"));
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-04-04 20:23:18 +00:00
|
|
|
let sidebar = diesel_option_overwrite(&data.sidebar);
|
|
|
|
let description = diesel_option_overwrite(&data.description);
|
|
|
|
let icon = diesel_option_overwrite_to_url(&data.icon)?;
|
|
|
|
let banner = diesel_option_overwrite_to_url(&data.banner)?;
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let slur_regex = local_site_to_slur_regex(&local_site);
|
|
|
|
check_slurs(&data.name, &slur_regex)?;
|
|
|
|
check_slurs_opt(&data.description, &slur_regex)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Make sure user is an admin
|
|
|
|
is_admin(&local_user_view)?;
|
|
|
|
|
2021-04-07 11:40:35 +00:00
|
|
|
if let Some(Some(desc)) = &description {
|
|
|
|
site_description_length_check(desc)?;
|
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let application_question = diesel_option_overwrite(&data.application_question);
|
|
|
|
check_application_question(&application_question, &data.require_application)?;
|
|
|
|
|
2022-06-22 20:24:54 +00:00
|
|
|
let actor_id: DbUrl = Url::parse(&context.settings().get_protocol_and_hostname())?.into();
|
2022-02-07 19:23:12 +00:00
|
|
|
let inbox_url = Some(generate_site_inbox_url(&actor_id)?);
|
|
|
|
let keypair = generate_actor_keypair()?;
|
2022-10-27 09:24:07 +00:00
|
|
|
let site_form = SiteUpdateForm::builder()
|
|
|
|
.name(Some(data.name.to_owned()))
|
|
|
|
.sidebar(sidebar)
|
|
|
|
.description(description)
|
|
|
|
.icon(icon)
|
|
|
|
.banner(banner)
|
|
|
|
.actor_id(Some(actor_id))
|
|
|
|
.last_refreshed_at(Some(naive_now()))
|
|
|
|
.inbox_url(inbox_url)
|
|
|
|
.private_key(Some(Some(keypair.private_key)))
|
|
|
|
.public_key(Some(keypair.public_key))
|
|
|
|
.build();
|
|
|
|
|
|
|
|
let site_id = local_site.site_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
|
|
|
Site::update(context.pool(), site_id, &site_form).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
let local_site_form = LocalSiteUpdateForm::builder()
|
|
|
|
// Set the site setup to true
|
|
|
|
.site_setup(Some(true))
|
|
|
|
.enable_downvotes(data.enable_downvotes)
|
|
|
|
.open_registration(data.open_registration)
|
|
|
|
.enable_nsfw(data.enable_nsfw)
|
|
|
|
.community_creation_admin_only(data.community_creation_admin_only)
|
|
|
|
.require_email_verification(data.require_email_verification)
|
|
|
|
.require_application(data.require_application)
|
|
|
|
.application_question(application_question)
|
|
|
|
.private_instance(data.private_instance)
|
|
|
|
.default_theme(data.default_theme.clone())
|
|
|
|
.default_post_listing_type(data.default_post_listing_type.clone())
|
|
|
|
.legal_information(diesel_option_overwrite(&data.legal_information))
|
|
|
|
.application_email_admins(data.application_email_admins)
|
|
|
|
.hide_modlog_mod_names(data.hide_modlog_mod_names)
|
|
|
|
.updated(Some(Some(naive_now())))
|
|
|
|
.slur_filter_regex(diesel_option_overwrite(&data.slur_filter_regex))
|
|
|
|
.actor_name_max_length(data.actor_name_max_length)
|
|
|
|
.federation_enabled(data.federation_enabled)
|
|
|
|
.federation_debug(data.federation_debug)
|
|
|
|
.federation_strict_allowlist(data.federation_strict_allowlist)
|
|
|
|
.federation_http_fetch_retry_limit(data.federation_http_fetch_retry_limit)
|
|
|
|
.federation_worker_count(data.federation_worker_count)
|
|
|
|
.captcha_enabled(data.captcha_enabled)
|
|
|
|
.captcha_difficulty(data.captcha_difficulty.to_owned())
|
|
|
|
.build();
|
2022-11-09 10:05:00 +00:00
|
|
|
|
|
|
|
LocalSite::update(context.pool(), &local_site_form).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
let local_site_rate_limit_form = LocalSiteRateLimitUpdateForm::builder()
|
|
|
|
.message(data.rate_limit_message)
|
|
|
|
.message_per_second(data.rate_limit_message_per_second)
|
|
|
|
.post(data.rate_limit_post)
|
|
|
|
.post_per_second(data.rate_limit_post_per_second)
|
|
|
|
.register(data.rate_limit_register)
|
|
|
|
.register_per_second(data.rate_limit_register_per_second)
|
|
|
|
.image(data.rate_limit_image)
|
|
|
|
.image_per_second(data.rate_limit_image_per_second)
|
|
|
|
.comment(data.rate_limit_comment)
|
|
|
|
.comment_per_second(data.rate_limit_comment_per_second)
|
|
|
|
.search(data.rate_limit_search)
|
|
|
|
.search_per_second(data.rate_limit_search_per_second)
|
|
|
|
.build();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
LocalSiteRateLimit::update(context.pool(), &local_site_rate_limit_form).await?;
|
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
|
|
|
|
|
|
|
Ok(SiteResponse { site_view })
|
|
|
|
}
|
|
|
|
}
|