]> Untitled Git - lemmy.git/blob - crates/api_crud/src/post/create.rs
Diesel 2.0.0 upgrade (#2452)
[lemmy.git] / crates / api_crud / src / post / create.rs
1 use crate::PerformCrud;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   post::{CreatePost, PostResponse},
5   request::fetch_site_data,
6   utils::{
7     blocking,
8     check_community_ban,
9     check_community_deleted_or_removed,
10     get_local_user_view_from_jwt,
11     honeypot_check,
12     mark_post_as_read,
13   },
14 };
15 use lemmy_apub::{
16   generate_local_apub_endpoint,
17   objects::post::ApubPost,
18   protocol::activities::{create_or_update::post::CreateOrUpdatePost, CreateOrUpdateType},
19   EndpointType,
20 };
21 use lemmy_db_schema::{
22   source::{
23     community::Community,
24     language::Language,
25     post::{Post, PostForm, PostLike, PostLikeForm},
26   },
27   traits::{Crud, Likeable},
28   utils::diesel_option_overwrite,
29 };
30 use lemmy_db_views_actor::structs::CommunityView;
31 use lemmy_utils::{
32   error::LemmyError,
33   utils::{check_slurs, check_slurs_opt, clean_url_params, is_valid_post_title},
34   ConnectionId,
35 };
36 use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
37 use tracing::{warn, Instrument};
38 use url::Url;
39 use webmention::{Webmention, WebmentionError};
40
41 #[async_trait::async_trait(?Send)]
42 impl PerformCrud for CreatePost {
43   type Response = PostResponse;
44
45   #[tracing::instrument(skip(context, websocket_id))]
46   async fn perform(
47     &self,
48     context: &Data<LemmyContext>,
49     websocket_id: Option<ConnectionId>,
50   ) -> Result<PostResponse, LemmyError> {
51     let data: &CreatePost = self;
52     let local_user_view =
53       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
54
55     let slur_regex = &context.settings().slur_regex();
56     check_slurs(&data.name, slur_regex)?;
57     check_slurs_opt(&data.body, slur_regex)?;
58     honeypot_check(&data.honeypot)?;
59
60     let data_url = data.url.as_ref();
61     let url = Some(data_url.map(clean_url_params).map(Into::into)); // TODO no good way to handle a "clear"
62     let body = diesel_option_overwrite(&data.body);
63
64     if !is_valid_post_title(&data.name) {
65       return Err(LemmyError::from_message("invalid_post_title"));
66     }
67
68     check_community_ban(local_user_view.person.id, data.community_id, context.pool()).await?;
69     check_community_deleted_or_removed(data.community_id, context.pool()).await?;
70
71     let community_id = data.community_id;
72     let community = blocking(context.pool(), move |conn| {
73       Community::read(conn, community_id)
74     })
75     .await??;
76     if community.posting_restricted_to_mods {
77       let community_id = data.community_id;
78       let is_mod = blocking(context.pool(), move |conn| {
79         CommunityView::is_mod_or_admin(conn, local_user_view.local_user.person_id, community_id)
80       })
81       .await?;
82       if !is_mod {
83         return Err(LemmyError::from_message("only_mods_can_post_in_community"));
84       }
85     }
86
87     // Fetch post links and pictrs cached image
88     let (metadata_res, thumbnail_url) =
89       fetch_site_data(context.client(), context.settings(), data_url).await;
90     let (embed_title, embed_description, embed_video_url) = metadata_res
91       .map(|u| (Some(u.title), Some(u.description), Some(u.embed_video_url)))
92       .unwrap_or_default();
93     let language_id = Some(
94       data.language_id.unwrap_or(
95         blocking(context.pool(), move |conn| {
96           Language::read_undetermined(conn)
97         })
98         .await??,
99       ),
100     );
101
102     let post_form = PostForm {
103       name: data.name.trim().to_owned(),
104       url,
105       body,
106       community_id: data.community_id,
107       creator_id: local_user_view.person.id,
108       nsfw: data.nsfw,
109       embed_title,
110       embed_description,
111       embed_video_url,
112       language_id,
113       thumbnail_url: Some(thumbnail_url),
114       ..PostForm::default()
115     };
116
117     let inserted_post =
118       match blocking(context.pool(), move |conn| Post::create(conn, &post_form)).await? {
119         Ok(post) => post,
120         Err(e) => {
121           let err_type = if e.to_string() == "value too long for type character varying(200)" {
122             "post_title_too_long"
123           } else {
124             "couldnt_create_post"
125           };
126
127           return Err(LemmyError::from_error_message(e, err_type));
128         }
129       };
130
131     let inserted_post_id = inserted_post.id;
132     let protocol_and_hostname = context.settings().get_protocol_and_hostname();
133     let updated_post = blocking(context.pool(), move |conn| -> Result<Post, LemmyError> {
134       let apub_id = generate_local_apub_endpoint(
135         EndpointType::Post,
136         &inserted_post_id.to_string(),
137         &protocol_and_hostname,
138       )?;
139       Ok(Post::update_ap_id(conn, inserted_post_id, apub_id)?)
140     })
141     .await?
142     .map_err(|e| e.with_message("couldnt_create_post"))?;
143
144     // They like their own post by default
145     let person_id = local_user_view.person.id;
146     let post_id = inserted_post.id;
147     let like_form = PostLikeForm {
148       post_id,
149       person_id,
150       score: 1,
151     };
152
153     let like = move |conn: &mut _| PostLike::like(conn, &like_form);
154     blocking(context.pool(), like)
155       .await?
156       .map_err(|e| LemmyError::from_error_message(e, "couldnt_like_post"))?;
157
158     // Mark the post as read
159     mark_post_as_read(person_id, post_id, context.pool()).await?;
160
161     if let Some(url) = &updated_post.url {
162       let mut webmention =
163         Webmention::new::<Url>(updated_post.ap_id.clone().into(), url.clone().into())?;
164       webmention.set_checked(true);
165       match webmention
166         .send()
167         .instrument(tracing::info_span!("Sending webmention"))
168         .await
169       {
170         Ok(_) => {}
171         Err(WebmentionError::NoEndpointDiscovered(_)) => {}
172         Err(e) => warn!("Failed to send webmention: {}", e),
173       }
174     }
175
176     let apub_post: ApubPost = updated_post.into();
177     CreateOrUpdatePost::send(
178       apub_post.clone(),
179       &local_user_view.person.clone().into(),
180       CreateOrUpdateType::Create,
181       context,
182     )
183     .await?;
184
185     send_post_ws_message(
186       inserted_post.id,
187       UserOperationCrud::CreatePost,
188       websocket_id,
189       Some(local_user_view.person.id),
190       context,
191     )
192     .await
193   }
194 }