]> Untitled Git - lemmy.git/blob - crates/api_crud/src/community/update.rs
4c7fa8ce608618c84f755a429cfbc575acf8358f
[lemmy.git] / crates / api_crud / src / community / update.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   community::{CommunityResponse, EditCommunity},
5   utils::{blocking, check_image_has_local_domain, get_local_user_view_from_jwt},
6 };
7 use lemmy_apub::protocol::activities::community::update::UpdateCommunity;
8 use lemmy_db_schema::{
9   newtypes::PersonId,
10   source::community::{Community, CommunityForm},
11   traits::Crud,
12   utils::{diesel_option_overwrite_to_url, naive_now},
13 };
14 use lemmy_db_views_actor::structs::CommunityModeratorView;
15 use lemmy_utils::{utils::check_slurs_opt, ConnectionId, LemmyError};
16 use lemmy_websocket::{send::send_community_ws_message, LemmyContext, UserOperationCrud};
17
18 #[async_trait::async_trait(?Send)]
19 impl PerformCrud for EditCommunity {
20   type Response = CommunityResponse;
21
22   #[tracing::instrument(skip(context, websocket_id))]
23   async fn perform(
24     &self,
25     context: &Data<LemmyContext>,
26     websocket_id: Option<ConnectionId>,
27   ) -> Result<CommunityResponse, LemmyError> {
28     let data: &EditCommunity = self;
29     let local_user_view =
30       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
31
32     let icon = diesel_option_overwrite_to_url(&data.icon)?;
33     let banner = diesel_option_overwrite_to_url(&data.banner)?;
34
35     check_slurs_opt(&data.title, &context.settings().slur_regex())?;
36     check_slurs_opt(&data.description, &context.settings().slur_regex())?;
37     check_image_has_local_domain(icon.as_ref().unwrap_or(&None))?;
38     check_image_has_local_domain(banner.as_ref().unwrap_or(&None))?;
39
40     // Verify its a mod (only mods can edit it)
41     let community_id = data.community_id;
42     let mods: Vec<PersonId> = blocking(context.pool(), move |conn| {
43       CommunityModeratorView::for_community(conn, community_id)
44         .map(|v| v.into_iter().map(|m| m.moderator.id).collect())
45     })
46     .await??;
47     if !mods.contains(&local_user_view.person.id) {
48       return Err(LemmyError::from_message("not_a_moderator"));
49     }
50
51     let community_id = data.community_id;
52     let read_community = blocking(context.pool(), move |conn| {
53       Community::read(conn, community_id)
54     })
55     .await??;
56
57     let community_form = CommunityForm {
58       name: read_community.name,
59       title: data.title.to_owned().unwrap_or(read_community.title),
60       description: data.description.to_owned(),
61       icon,
62       banner,
63       nsfw: data.nsfw,
64       posting_restricted_to_mods: data.posting_restricted_to_mods,
65       updated: Some(naive_now()),
66       ..CommunityForm::default()
67     };
68
69     let community_id = data.community_id;
70     let updated_community = blocking(context.pool(), move |conn| {
71       Community::update(conn, community_id, &community_form)
72     })
73     .await?
74     .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_community"))?;
75
76     UpdateCommunity::send(
77       updated_community.into(),
78       &local_user_view.person.into(),
79       context,
80     )
81     .await?;
82
83     let op = UserOperationCrud::EditCommunity;
84     send_community_ws_message(data.community_id, op, websocket_id, None, context).await
85   }
86 }