]> Untitled Git - lemmy.git/blob - crates/api_crud/src/community/create.rs
Use .map_err in api code (fixes #1573) (#1575)
[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 = blocking(context.pool(), move |conn| {
89       Community::create(conn, &community_form)
90     })
91     .await?
92     .map_err(|_| ApiError::err("community_already_exists"))?;
93
94     // The community creator becomes a moderator
95     let community_moderator_form = CommunityModeratorForm {
96       community_id: inserted_community.id,
97       person_id: local_user_view.person.id,
98     };
99
100     let join = move |conn: &'_ _| CommunityModerator::join(conn, &community_moderator_form);
101     if blocking(context.pool(), join).await?.is_err() {
102       return Err(ApiError::err("community_moderator_already_exists").into());
103     }
104
105     // Follow your own community
106     let community_follower_form = CommunityFollowerForm {
107       community_id: inserted_community.id,
108       person_id: local_user_view.person.id,
109       pending: false,
110     };
111
112     let follow = move |conn: &'_ _| CommunityFollower::follow(conn, &community_follower_form);
113     if blocking(context.pool(), follow).await?.is_err() {
114       return Err(ApiError::err("community_follower_already_exists").into());
115     }
116
117     let person_id = local_user_view.person.id;
118     let community_view = blocking(context.pool(), move |conn| {
119       CommunityView::read(conn, inserted_community.id, Some(person_id))
120     })
121     .await??;
122
123     Ok(CommunityResponse { community_view })
124   }
125 }