2023-08-02 16:52:41 +00:00
|
|
|
use activitypub_federation::{config::Data, http_signatures::generate_actor_keypair};
|
|
|
|
use actix_web::web::Json;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::{
|
2023-06-06 16:27:22 +00:00
|
|
|
build_response::build_community_response,
|
2021-03-25 19:19:40 +00:00
|
|
|
community::{CommunityResponse, CreateCommunity},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
|
|
|
utils::{
|
|
|
|
generate_followers_url,
|
|
|
|
generate_inbox_url,
|
|
|
|
generate_local_apub_endpoint,
|
|
|
|
generate_shared_inbox_url,
|
|
|
|
is_admin,
|
|
|
|
local_site_to_slur_regex,
|
2024-01-25 14:22:11 +00:00
|
|
|
process_markdown_opt,
|
|
|
|
proxy_image_link_api,
|
2022-11-28 14:29:33 +00:00
|
|
|
EndpointType,
|
|
|
|
},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-12-19 11:40:22 +00:00
|
|
|
source::{
|
|
|
|
actor_language::{CommunityLanguage, SiteLanguage},
|
|
|
|
community::{
|
|
|
|
Community,
|
|
|
|
CommunityFollower,
|
|
|
|
CommunityFollowerForm,
|
|
|
|
CommunityInsertForm,
|
|
|
|
CommunityModerator,
|
|
|
|
CommunityModeratorForm,
|
|
|
|
},
|
2021-04-22 23:42:58 +00:00
|
|
|
},
|
2022-11-28 14:29:33 +00:00
|
|
|
traits::{ApubActor, Crud, Followable, Joinable},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::{LocalUserView, SiteView};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2023-07-10 14:50:07 +00:00
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
2023-02-16 04:05:14 +00:00
|
|
|
utils::{
|
2024-01-25 14:22:11 +00:00
|
|
|
slurs::check_slurs,
|
2023-04-15 14:45:11 +00:00
|
|
|
validation::{is_valid_actor_name, is_valid_body_field},
|
2023-02-16 04:05:14 +00:00
|
|
|
},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn create_community(
|
|
|
|
data: Json<CreateCommunity>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2023-08-02 16:52:41 +00:00
|
|
|
) -> Result<Json<CommunityResponse>, LemmyError> {
|
|
|
|
let site_view = SiteView::read_local(&mut context.pool()).await?;
|
|
|
|
let local_site = site_view.local_site;
|
|
|
|
|
|
|
|
if local_site.community_creation_admin_only && is_admin(&local_user_view).is_err() {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::OnlyAdminsCanCreateCommunities)?
|
2023-08-02 16:52:41 +00:00
|
|
|
}
|
2021-04-22 23:42:58 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
let slur_regex = local_site_to_slur_regex(&local_site);
|
2023-10-11 14:48:19 +00:00
|
|
|
check_slurs(&data.name, &slur_regex)?;
|
|
|
|
check_slurs(&data.title, &slur_regex)?;
|
2024-01-25 14:22:11 +00:00
|
|
|
let description = process_markdown_opt(&data.description, &slur_regex, &context).await?;
|
|
|
|
let icon = proxy_image_link_api(&data.icon, &context).await?;
|
|
|
|
let banner = proxy_image_link_api(&data.banner, &context).await?;
|
2023-08-02 16:52:41 +00:00
|
|
|
|
|
|
|
is_valid_actor_name(&data.name, local_site.actor_name_max_length as usize)?;
|
|
|
|
is_valid_body_field(&data.description, false)?;
|
|
|
|
|
|
|
|
// Double check for duplicate community actor_ids
|
|
|
|
let community_actor_id = generate_local_apub_endpoint(
|
|
|
|
EndpointType::Community,
|
|
|
|
&data.name,
|
|
|
|
&context.settings().get_protocol_and_hostname(),
|
|
|
|
)?;
|
|
|
|
let community_dupe =
|
|
|
|
Community::read_from_apub_id(&mut context.pool(), &community_actor_id).await?;
|
|
|
|
if community_dupe.is_some() {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::CommunityAlreadyExists)?
|
2023-08-02 16:52:41 +00:00
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
// When you create a community, make sure the user becomes a moderator and a follower
|
|
|
|
let keypair = generate_actor_keypair()?;
|
|
|
|
|
|
|
|
let community_form = CommunityInsertForm::builder()
|
2023-10-11 14:48:19 +00:00
|
|
|
.name(data.name.clone())
|
|
|
|
.title(data.title.clone())
|
2024-01-25 14:22:11 +00:00
|
|
|
.description(description)
|
2023-08-02 16:52:41 +00:00
|
|
|
.icon(icon)
|
|
|
|
.banner(banner)
|
|
|
|
.nsfw(data.nsfw)
|
|
|
|
.actor_id(Some(community_actor_id.clone()))
|
|
|
|
.private_key(Some(keypair.private_key))
|
|
|
|
.public_key(keypair.public_key)
|
|
|
|
.followers_url(Some(generate_followers_url(&community_actor_id)?))
|
|
|
|
.inbox_url(Some(generate_inbox_url(&community_actor_id)?))
|
2023-11-16 13:22:40 +00:00
|
|
|
.shared_inbox_url(Some(generate_shared_inbox_url(context.settings())?))
|
2023-08-02 16:52:41 +00:00
|
|
|
.posting_restricted_to_mods(data.posting_restricted_to_mods)
|
|
|
|
.instance_id(site_view.site.instance_id)
|
2024-01-25 16:04:25 +00:00
|
|
|
.visibility(data.visibility)
|
2023-08-02 16:52:41 +00:00
|
|
|
.build();
|
|
|
|
|
|
|
|
let inserted_community = Community::create(&mut context.pool(), &community_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityAlreadyExists)?;
|
|
|
|
|
|
|
|
// The community creator becomes a moderator
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
};
|
|
|
|
|
|
|
|
CommunityModerator::join(&mut context.pool(), &community_moderator_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityModeratorAlreadyExists)?;
|
|
|
|
|
|
|
|
// Follow your own community
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
pending: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
CommunityFollower::follow(&mut context.pool(), &community_follower_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CommunityFollowerAlreadyExists)?;
|
|
|
|
|
|
|
|
// Update the discussion_languages if that's provided
|
|
|
|
let community_id = inserted_community.id;
|
|
|
|
if let Some(languages) = data.discussion_languages.clone() {
|
|
|
|
let site_languages = SiteLanguage::read_local_raw(&mut context.pool()).await?;
|
|
|
|
// check that community languages are a subset of site languages
|
|
|
|
// https://stackoverflow.com/a/64227550
|
|
|
|
let is_subset = languages.iter().all(|item| site_languages.contains(item));
|
|
|
|
if !is_subset {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::LanguageNotAllowed)?
|
2022-12-19 11:40:22 +00:00
|
|
|
}
|
2023-08-02 16:52:41 +00:00
|
|
|
CommunityLanguage::update(&mut context.pool(), languages, community_id).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
2023-08-02 16:52:41 +00:00
|
|
|
|
|
|
|
build_community_response(&context, local_user_view, community_id).await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|