2021-11-05 00:24:10 +00:00
|
|
|
use crate::PerformCrud;
|
2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
2021-04-24 22:26:50 +00:00
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
post::{CreatePost, PostResponse},
|
|
|
|
request::fetch_site_data,
|
|
|
|
utils::{
|
|
|
|
blocking,
|
|
|
|
check_community_ban,
|
|
|
|
check_community_deleted_or_removed,
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
honeypot_check,
|
|
|
|
mark_post_as_read,
|
|
|
|
},
|
2021-04-24 22:26:50 +00:00
|
|
|
};
|
2021-07-30 14:35:32 +00:00
|
|
|
use lemmy_apub::{
|
2021-10-29 10:32:42 +00:00
|
|
|
generate_local_apub_endpoint,
|
2021-11-06 12:37:55 +00:00
|
|
|
objects::post::ApubPost,
|
2022-04-07 20:46:10 +00:00
|
|
|
protocol::activities::{create_or_update::post::CreateOrUpdatePost, CreateOrUpdateType},
|
2021-07-30 14:35:32 +00:00
|
|
|
EndpointType,
|
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-04-28 20:32:32 +00:00
|
|
|
source::{
|
|
|
|
community::Community,
|
|
|
|
post::{Post, PostForm, PostLike, PostLikeForm},
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{Crud, Likeable},
|
|
|
|
};
|
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,
|
2022-01-20 14:04:54 +00:00
|
|
|
utils::{
|
|
|
|
check_slurs,
|
|
|
|
check_slurs_opt,
|
|
|
|
clean_optional_text,
|
|
|
|
clean_url_params,
|
|
|
|
is_valid_post_title,
|
|
|
|
},
|
2021-03-25 19:19:40 +00:00
|
|
|
ConnectionId,
|
|
|
|
};
|
2021-08-17 18:04:58 +00:00
|
|
|
use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
|
2022-01-06 19:10:20 +00:00
|
|
|
use tracing::{warn, Instrument};
|
2021-11-05 00:24:10 +00:00
|
|
|
use url::Url;
|
|
|
|
use webmention::{Webmention, WebmentionError};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for CreatePost {
|
|
|
|
type Response = PostResponse;
|
|
|
|
|
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<PostResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &CreatePost = 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?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let slur_regex = &context.settings().slur_regex();
|
|
|
|
check_slurs(&data.name, slur_regex)?;
|
|
|
|
check_slurs_opt(&data.body, slur_regex)?;
|
2021-10-01 11:37:39 +00:00
|
|
|
honeypot_check(&data.honeypot)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
if !is_valid_post_title(&data.name) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("invalid_post_title"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_community_ban(local_user_view.person.id, data.community_id, context.pool()).await?;
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed(data.community_id, context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-04-28 20:32:32 +00:00
|
|
|
let community_id = data.community_id;
|
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
if community.posting_restricted_to_mods {
|
|
|
|
let community_id = data.community_id;
|
|
|
|
let is_mod = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityView::is_mod_or_admin(conn, local_user_view.local_user.person_id, community_id)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if !is_mod {
|
|
|
|
return Err(LemmyError::from_message("only_mods_can_post_in_community"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:12:49 +00:00
|
|
|
// Fetch post links and pictrs cached image
|
2021-03-25 19:19:40 +00:00
|
|
|
let data_url = data.url.as_ref();
|
2022-06-02 21:44:47 +00:00
|
|
|
let (metadata_res, thumbnail_url) =
|
2022-06-22 20:24:54 +00:00
|
|
|
fetch_site_data(context.client(), context.settings(), data_url).await;
|
2022-06-02 21:44:47 +00:00
|
|
|
let (embed_title, embed_description, embed_video_url) = metadata_res
|
|
|
|
.map(|u| (u.title, u.description, u.embed_video_url))
|
|
|
|
.unwrap_or_default();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let post_form = PostForm {
|
|
|
|
name: data.name.trim().to_owned(),
|
2021-06-18 18:38:34 +00:00
|
|
|
url: data_url.map(|u| clean_url_params(u.to_owned()).into()),
|
2022-01-20 14:04:54 +00:00
|
|
|
body: clean_optional_text(&data.body),
|
2021-03-25 19:19:40 +00:00
|
|
|
community_id: data.community_id,
|
|
|
|
creator_id: local_user_view.person.id,
|
|
|
|
nsfw: data.nsfw,
|
2021-08-04 21:13:51 +00:00
|
|
|
embed_title,
|
|
|
|
embed_description,
|
2022-06-02 21:44:47 +00:00
|
|
|
embed_video_url,
|
|
|
|
thumbnail_url,
|
2021-03-29 20:24:50 +00:00
|
|
|
..PostForm::default()
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_post =
|
|
|
|
match blocking(context.pool(), move |conn| Post::create(conn, &post_form)).await? {
|
|
|
|
Ok(post) => post,
|
|
|
|
Err(e) => {
|
|
|
|
let err_type = if e.to_string() == "value too long for type character varying(200)" {
|
|
|
|
"post_title_too_long"
|
|
|
|
} else {
|
|
|
|
"couldnt_create_post"
|
|
|
|
};
|
|
|
|
|
2022-03-16 20:11:49 +00:00
|
|
|
return Err(LemmyError::from_error_message(e, err_type));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_post_id = inserted_post.id;
|
2021-09-22 15:57:09 +00:00
|
|
|
let protocol_and_hostname = context.settings().get_protocol_and_hostname();
|
2021-04-16 13:10:43 +00:00
|
|
|
let updated_post = blocking(context.pool(), move |conn| -> Result<Post, LemmyError> {
|
2021-10-25 16:09:21 +00:00
|
|
|
let apub_id = generate_local_apub_endpoint(
|
2021-09-22 15:57:09 +00:00
|
|
|
EndpointType::Post,
|
|
|
|
&inserted_post_id.to_string(),
|
|
|
|
&protocol_and_hostname,
|
|
|
|
)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
Ok(Post::update_ap_id(conn, inserted_post_id, apub_id)?)
|
|
|
|
})
|
|
|
|
.await?
|
2021-12-06 14:54:47 +00:00
|
|
|
.map_err(|e| e.with_message("couldnt_create_post"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// They like their own post by default
|
2021-04-24 22:26:50 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let post_id = inserted_post.id;
|
2021-03-25 19:19:40 +00:00
|
|
|
let like_form = PostLikeForm {
|
2021-04-24 22:26:50 +00:00
|
|
|
post_id,
|
|
|
|
person_id,
|
2021-03-25 19:19:40 +00:00
|
|
|
score: 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
let like = move |conn: &'_ _| PostLike::like(conn, &like_form);
|
2022-03-16 20:11:49 +00:00
|
|
|
blocking(context.pool(), like)
|
|
|
|
.await?
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_like_post"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-04-24 22:26:50 +00:00
|
|
|
// Mark the post as read
|
|
|
|
mark_post_as_read(person_id, post_id, context.pool()).await?;
|
|
|
|
|
2021-09-27 14:49:47 +00:00
|
|
|
if let Some(url) = &updated_post.url {
|
2021-11-05 00:24:10 +00:00
|
|
|
let mut webmention =
|
|
|
|
Webmention::new::<Url>(updated_post.ap_id.clone().into(), url.clone().into())?;
|
2021-09-27 14:49:47 +00:00
|
|
|
webmention.set_checked(true);
|
2022-01-06 19:10:20 +00:00
|
|
|
match webmention
|
|
|
|
.send()
|
|
|
|
.instrument(tracing::info_span!("Sending webmention"))
|
|
|
|
.await
|
|
|
|
{
|
2021-09-27 14:49:47 +00:00
|
|
|
Ok(_) => {}
|
|
|
|
Err(WebmentionError::NoEndpointDiscovered(_)) => {}
|
|
|
|
Err(e) => warn!("Failed to send webmention: {}", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-06 12:37:55 +00:00
|
|
|
let apub_post: ApubPost = updated_post.into();
|
|
|
|
CreateOrUpdatePost::send(
|
|
|
|
apub_post.clone(),
|
|
|
|
&local_user_view.person.clone().into(),
|
|
|
|
CreateOrUpdateType::Create,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
send_post_ws_message(
|
|
|
|
inserted_post.id,
|
|
|
|
UserOperationCrud::CreatePost,
|
2021-03-25 19:19:40 +00:00
|
|
|
websocket_id,
|
2021-08-17 18:04:58 +00:00
|
|
|
Some(local_user_view.person.id),
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|