2023-08-01 13:53:36 +00:00
|
|
|
use activitypub_federation::config::Data;
|
|
|
|
use actix_web::web::Json;
|
2021-10-14 16:33:19 +00:00
|
|
|
use lemmy_api_common::{
|
2023-06-06 16:27:22 +00:00
|
|
|
build_response::build_post_response,
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-05-03 17:44:13 +00:00
|
|
|
post::{EditPost, PostResponse},
|
|
|
|
request::fetch_site_data,
|
2023-08-01 13:53:36 +00:00
|
|
|
send_activity::{ActivityChannel, SendActivityData},
|
2023-07-26 18:01:15 +00:00
|
|
|
utils::{
|
|
|
|
check_community_ban,
|
|
|
|
local_site_to_slur_regex,
|
|
|
|
local_user_view_from_jwt,
|
|
|
|
sanitize_html_opt,
|
|
|
|
},
|
2021-10-29 10:32:42 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-10-06 18:27:58 +00:00
|
|
|
source::{
|
|
|
|
actor_language::CommunityLanguage,
|
2022-10-27 09:24:07 +00:00
|
|
|
local_site::LocalSite,
|
|
|
|
post::{Post, PostUpdateForm},
|
2022-10-06 18:27:58 +00:00
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
2023-02-14 21:41:22 +00:00
|
|
|
utils::{diesel_option_overwrite, naive_now},
|
2021-10-16 13:33:38 +00:00
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2023-07-10 14:50:07 +00:00
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType},
|
2023-02-16 04:05:14 +00:00
|
|
|
utils::{
|
|
|
|
slurs::check_slurs_opt,
|
2023-07-06 12:29:51 +00:00
|
|
|
validation::{check_url_scheme, clean_url_params, is_valid_body_field, is_valid_post_title},
|
2023-02-16 04:05:14 +00:00
|
|
|
},
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
2023-08-01 13:53:36 +00:00
|
|
|
use std::ops::Deref;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn update_post(
|
|
|
|
data: Json<EditPost>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<PostResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let data_url = data.url.as_ref();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// TODO No good way to handle a clear.
|
|
|
|
// Issue link: https://github.com/LemmyNet/lemmy/issues/2287
|
|
|
|
let url = Some(data_url.map(clean_url_params).map(Into::into));
|
2022-07-29 13:04:21 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let slur_regex = local_site_to_slur_regex(&local_site);
|
|
|
|
check_slurs_opt(&data.name, &slur_regex)?;
|
|
|
|
check_slurs_opt(&data.body, &slur_regex)?;
|
2022-07-29 13:04:21 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
if let Some(name) = &data.name {
|
|
|
|
is_valid_post_title(name)?;
|
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
is_valid_body_field(&data.body, true)?;
|
|
|
|
check_url_scheme(&data.url)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let post_id = data.post_id;
|
|
|
|
let orig_post = Post::read(&mut context.pool(), post_id).await?;
|
2023-04-15 14:45:11 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
orig_post.community_id,
|
|
|
|
&mut context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
// Verify that only the creator can edit
|
|
|
|
if !Post::is_post_creator(local_user_view.person.id, orig_post.creator_id) {
|
|
|
|
return Err(LemmyErrorType::NoPostEditAllowed)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch post links and Pictrs cached image
|
|
|
|
let data_url = data.url.as_ref();
|
|
|
|
let (metadata_res, thumbnail_url) =
|
|
|
|
fetch_site_data(context.client(), context.settings(), data_url, true).await;
|
|
|
|
let (embed_title, embed_description, embed_video_url) = metadata_res
|
|
|
|
.map(|u| (Some(u.title), Some(u.description), Some(u.embed_video_url)))
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
|
|
|
let name = sanitize_html_opt(&data.name);
|
|
|
|
let body = sanitize_html_opt(&data.body);
|
|
|
|
let body = diesel_option_overwrite(body);
|
|
|
|
let embed_title = embed_title.map(|e| sanitize_html_opt(&e));
|
|
|
|
let embed_description = embed_description.map(|e| sanitize_html_opt(&e));
|
|
|
|
|
|
|
|
let language_id = data.language_id;
|
|
|
|
CommunityLanguage::is_allowed_community_language(
|
|
|
|
&mut context.pool(),
|
|
|
|
language_id,
|
|
|
|
orig_post.community_id,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let post_form = PostUpdateForm::builder()
|
|
|
|
.name(name)
|
|
|
|
.url(url)
|
|
|
|
.body(body)
|
|
|
|
.nsfw(data.nsfw)
|
|
|
|
.embed_title(embed_title)
|
|
|
|
.embed_description(embed_description)
|
|
|
|
.embed_video_url(embed_video_url)
|
|
|
|
.language_id(data.language_id)
|
|
|
|
.thumbnail_url(Some(thumbnail_url))
|
|
|
|
.updated(Some(Some(naive_now())))
|
|
|
|
.build();
|
|
|
|
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let updated_post = Post::update(&mut context.pool(), post_id, &post_form)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdatePost)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
ActivityChannel::submit_activity(SendActivityData::UpdatePost(updated_post), &context).await?;
|
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
build_post_response(
|
|
|
|
context.deref(),
|
|
|
|
orig_post.community_id,
|
|
|
|
local_user_view.person.id,
|
|
|
|
post_id,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|