]> Untitled Git - lemmy.git/blob - crates/api_crud/src/community/create.rs
Removing community.creator column. Fixes #1504 (#1541)
[lemmy.git] / crates / api_crud / src / community / create.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   blocking,
5   community::{CommunityResponse, CreateCommunity},
6   get_local_user_view_from_jwt,
7 };
8 use lemmy_apub::{
9   generate_apub_endpoint,
10   generate_followers_url,
11   generate_inbox_url,
12   generate_shared_inbox_url,
13   EndpointType,
14 };
15 use lemmy_db_queries::{diesel_option_overwrite_to_url, ApubObject, Crud, Followable, Joinable};
16 use lemmy_db_schema::source::community::{
17   Community,
18   CommunityFollower,
19   CommunityFollowerForm,
20   CommunityForm,
21   CommunityModerator,
22   CommunityModeratorForm,
23 };
24 use lemmy_db_views_actor::community_view::CommunityView;
25 use lemmy_utils::{
26   apub::generate_actor_keypair,
27   utils::{check_slurs, check_slurs_opt, is_valid_community_name},
28   ApiError,
29   ConnectionId,
30   LemmyError,
31 };
32 use lemmy_websocket::LemmyContext;
33
34 #[async_trait::async_trait(?Send)]
35 impl PerformCrud for CreateCommunity {
36   type Response = CommunityResponse;
37
38   async fn perform(
39     &self,
40     context: &Data<LemmyContext>,
41     _websocket_id: Option<ConnectionId>,
42   ) -> Result<CommunityResponse, LemmyError> {
43     let data: &CreateCommunity = &self;
44     let local_user_view = get_local_user_view_from_jwt(&data.auth, context.pool()).await?;
45
46     check_slurs(&data.name)?;
47     check_slurs(&data.title)?;
48     check_slurs_opt(&data.description)?;
49
50     if !is_valid_community_name(&data.name) {
51       return Err(ApiError::err("invalid_community_name").into());
52     }
53
54     // Double check for duplicate community actor_ids
55     let community_actor_id = generate_apub_endpoint(EndpointType::Community, &data.name)?;
56     let actor_id_cloned = community_actor_id.to_owned();
57     let community_dupe = blocking(context.pool(), move |conn| {
58       Community::read_from_apub_id(conn, &actor_id_cloned)
59     })
60     .await?;
61     if community_dupe.is_ok() {
62       return Err(ApiError::err("community_already_exists").into());
63     }
64
65     // Check to make sure the icon and banners are urls
66     let icon = diesel_option_overwrite_to_url(&data.icon)?;
67     let banner = diesel_option_overwrite_to_url(&data.banner)?;
68
69     // When you create a community, make sure the user becomes a moderator and a follower
70     let keypair = generate_actor_keypair()?;
71
72     let community_form = CommunityForm {
73       name: data.name.to_owned(),
74       title: data.title.to_owned(),
75       description: data.description.to_owned(),
76       icon,
77       banner,
78       nsfw: data.nsfw,
79       actor_id: Some(community_actor_id.to_owned()),
80       private_key: Some(keypair.private_key),
81       public_key: Some(keypair.public_key),
82       followers_url: Some(generate_followers_url(&community_actor_id)?),
83       inbox_url: Some(generate_inbox_url(&community_actor_id)?),
84       shared_inbox_url: Some(Some(generate_shared_inbox_url(&community_actor_id)?)),
85       ..CommunityForm::default()
86     };
87
88     let inserted_community = match blocking(context.pool(), move |conn| {
89       Community::create(conn, &community_form)
90     })
91     .await?
92     {
93       Ok(community) => community,
94       Err(_e) => return Err(ApiError::err("community_already_exists").into()),
95     };
96
97     // The community creator becomes a moderator
98     let community_moderator_form = CommunityModeratorForm {
99       community_id: inserted_community.id,
100       person_id: local_user_view.person.id,
101     };
102
103     let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
104     if blocking(context.pool(), join).await?.is_err() {
105       return Err(ApiError::err("community_moderator_already_exists").into());
106     }
107
108     // Follow your own community
109     let community_follower_form = CommunityFollowerForm {
110       community_id: inserted_community.id,
111       person_id: local_user_view.person.id,
112       pending: false,
113     };
114
115     let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);
116     if blocking(context.pool(), follow).await?.is_err() {
117       return Err(ApiError::err("community_follower_already_exists").into());
118     }
119
120     let person_id = local_user_view.person.id;
121     let community_view = blocking(context.pool(), move |conn| {
122       CommunityView::read(conn, inserted_community.id, Some(person_id))
123     })
124     .await??;
125
126     Ok(CommunityResponse { community_view })
127   }
128 }