2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::core::{object_id::ObjectId, signatures::generate_actor_keypair};
|
2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
community::{CommunityResponse, CreateCommunity},
|
|
|
|
generate_followers_url,
|
|
|
|
generate_inbox_url,
|
2021-10-25 16:09:21 +00:00
|
|
|
generate_local_apub_endpoint,
|
2021-03-25 19:19:40 +00:00
|
|
|
generate_shared_inbox_url,
|
2022-11-26 20:47:13 +00:00
|
|
|
utils::{get_local_user_view_from_jwt, is_admin, local_site_to_slur_regex},
|
2021-03-25 19:19:40 +00:00
|
|
|
EndpointType,
|
2022-11-26 20:47:13 +00:00
|
|
|
LemmyContext,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2022-11-26 20:47:13 +00:00
|
|
|
use lemmy_apub::objects::community::ApubCommunity;
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::community::{
|
|
|
|
Community,
|
|
|
|
CommunityFollower,
|
|
|
|
CommunityFollowerForm,
|
|
|
|
CommunityInsertForm,
|
|
|
|
CommunityModerator,
|
|
|
|
CommunityModeratorForm,
|
2021-04-22 23:42:58 +00:00
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{Crud, Followable, Joinable},
|
2022-10-27 09:24:07 +00:00
|
|
|
utils::diesel_option_overwrite_to_url_create,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_db_views::structs::SiteView;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::CommunityView;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2021-07-23 01:53:44 +00:00
|
|
|
utils::{check_slurs, check_slurs_opt, is_valid_actor_name},
|
2021-03-25 19:19:40 +00:00
|
|
|
ConnectionId,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for CreateCommunity {
|
|
|
|
type Response = CommunityResponse;
|
|
|
|
|
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<CommunityResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &CreateCommunity = self;
|
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?;
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(context.pool()).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
let local_site = site_view.local_site;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-10-06 18:27:58 +00:00
|
|
|
if local_site.community_creation_admin_only && is_admin(&local_user_view).is_err() {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message(
|
|
|
|
"only_admins_can_create_communities",
|
|
|
|
));
|
2021-04-22 23:42:58 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 20:23:18 +00:00
|
|
|
// Check to make sure the icon and banners are urls
|
2022-10-27 09:24:07 +00:00
|
|
|
let icon = diesel_option_overwrite_to_url_create(&data.icon)?;
|
|
|
|
let banner = diesel_option_overwrite_to_url_create(&data.banner)?;
|
2022-04-04 20:23:18 +00:00
|
|
|
|
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(&data.title, &slur_regex)?;
|
|
|
|
check_slurs_opt(&data.description, &slur_regex)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
if !is_valid_actor_name(&data.name, local_site.actor_name_max_length as usize) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("invalid_community_name"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Double check for duplicate community actor_ids
|
2021-10-25 16:09:21 +00:00
|
|
|
let community_actor_id = generate_local_apub_endpoint(
|
2021-09-22 15:57:09 +00:00
|
|
|
EndpointType::Community,
|
|
|
|
&data.name,
|
|
|
|
&context.settings().get_protocol_and_hostname(),
|
|
|
|
)?;
|
2021-10-18 21:36:44 +00:00
|
|
|
let community_actor_id_wrapped = ObjectId::<ApubCommunity>::new(community_actor_id.clone());
|
2022-06-08 15:45:39 +00:00
|
|
|
let community_dupe = community_actor_id_wrapped.dereference_local(context).await;
|
2021-03-25 19:19:40 +00:00
|
|
|
if community_dupe.is_ok() {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("community_already_exists"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// When you create a community, make sure the user becomes a moderator and a follower
|
|
|
|
let keypair = generate_actor_keypair()?;
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let community_form = CommunityInsertForm::builder()
|
2022-11-19 04:33:54 +00:00
|
|
|
.name(data.name.clone())
|
|
|
|
.title(data.title.clone())
|
|
|
|
.description(data.description.clone())
|
2022-10-27 09:24:07 +00:00
|
|
|
.icon(icon)
|
|
|
|
.banner(banner)
|
|
|
|
.nsfw(data.nsfw)
|
2022-11-19 04:33:54 +00:00
|
|
|
.actor_id(Some(community_actor_id.clone()))
|
2022-10-27 09:24:07 +00:00
|
|
|
.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)?))
|
|
|
|
.shared_inbox_url(Some(generate_shared_inbox_url(&community_actor_id)?))
|
|
|
|
.posting_restricted_to_mods(data.posting_restricted_to_mods)
|
|
|
|
.instance_id(site_view.site.instance_id)
|
|
|
|
.build();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_community = Community::create(context.pool(), &community_form)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "community_already_exists"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// The community creator becomes a moderator
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityModerator::join(context.pool(), &community_moderator_form)
|
|
|
|
.await
|
2022-03-16 20:11:49 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "community_moderator_already_exists"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Follow your own community
|
|
|
|
let community_follower_form = CommunityFollowerForm {
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
person_id: local_user_view.person.id,
|
|
|
|
pending: false,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityFollower::follow(context.pool(), &community_follower_form)
|
|
|
|
.await
|
2022-03-16 20:11:49 +00:00
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "community_follower_already_exists"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let community_view =
|
|
|
|
CommunityView::read(context.pool(), inserted_community.id, Some(person_id)).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
Ok(CommunityResponse { community_view })
|
|
|
|
}
|
|
|
|
}
|