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},
|
2024-03-27 14:54:42 +00:00
|
|
|
request::generate_post_link_metadata,
|
|
|
|
send_activity::SendActivityData,
|
2024-01-25 14:22:11 +00:00
|
|
|
utils::{
|
|
|
|
check_community_user_action,
|
2024-03-15 11:03:29 +00:00
|
|
|
get_url_blocklist,
|
2024-01-25 14:22:11 +00:00
|
|
|
local_site_to_slur_regex,
|
|
|
|
process_markdown_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,
|
2024-06-06 13:55:08 +00:00
|
|
|
utils::{diesel_string_update, diesel_url_update, naive_now},
|
2021-10-16 13:33:38 +00:00
|
|
|
};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::LocalUserView;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2024-04-10 14:14:11 +00:00
|
|
|
error::{LemmyErrorExt, LemmyErrorType, LemmyResult},
|
2023-02-16 04:05:14 +00:00
|
|
|
utils::{
|
2024-06-06 13:55:08 +00:00
|
|
|
slurs::check_slurs,
|
2024-03-05 10:34:57 +00:00
|
|
|
validation::{
|
|
|
|
check_url_scheme,
|
2024-03-15 11:03:29 +00:00
|
|
|
is_url_blocked,
|
2024-03-05 10:34:57 +00:00
|
|
|
is_valid_alt_text_field,
|
|
|
|
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>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<Json<PostResponse>> {
|
2023-08-01 13:53:36 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2024-06-06 13:55:08 +00:00
|
|
|
let url = diesel_url_update(data.url.as_deref())?;
|
|
|
|
|
|
|
|
let custom_thumbnail = diesel_url_update(data.custom_thumbnail.as_deref())?;
|
2022-07-29 13:04:21 +00:00
|
|
|
|
2024-03-15 11:03:29 +00:00
|
|
|
let url_blocklist = get_url_blocklist(&context).await?;
|
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let slur_regex = local_site_to_slur_regex(&local_site);
|
2024-06-06 13:55:08 +00:00
|
|
|
|
|
|
|
let body = diesel_string_update(
|
|
|
|
process_markdown_opt(&data.body, &slur_regex, &url_blocklist, &context)
|
|
|
|
.await?
|
|
|
|
.as_deref(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let alt_text = diesel_string_update(data.alt_text.as_deref());
|
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)?;
|
2024-06-06 13:55:08 +00:00
|
|
|
check_slurs(name, &slur_regex)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(Some(body)) = &body {
|
|
|
|
is_valid_body_field(body, true)?;
|
2023-08-01 13:53:36 +00:00
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2024-06-06 13:55:08 +00:00
|
|
|
if let Some(Some(alt_text)) = &alt_text {
|
|
|
|
is_valid_alt_text_field(alt_text)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(Some(url)) = &url {
|
|
|
|
is_url_blocked(url, &url_blocklist)?;
|
|
|
|
check_url_scheme(url)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(Some(custom_thumbnail)) = &custom_thumbnail {
|
|
|
|
check_url_scheme(custom_thumbnail)?;
|
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-08-01 13:53:36 +00:00
|
|
|
let post_id = data.post_id;
|
2024-04-16 12:48:15 +00:00
|
|
|
let orig_post = Post::read(&mut context.pool(), post_id)
|
|
|
|
.await?
|
|
|
|
.ok_or(LemmyErrorType::CouldntFindPost)?;
|
2023-04-15 14:45:11 +00:00
|
|
|
|
2023-10-13 13:48:18 +00:00
|
|
|
check_community_user_action(
|
|
|
|
&local_user_view.person,
|
2023-08-01 13:53:36 +00:00
|
|
|
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) {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::NoPostEditAllowed)?
|
2023-08-01 13:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let language_id = data.language_id;
|
|
|
|
CommunityLanguage::is_allowed_community_language(
|
|
|
|
&mut context.pool(),
|
|
|
|
language_id,
|
|
|
|
orig_post.community_id,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
2023-08-08 09:41:41 +00:00
|
|
|
let post_form = PostUpdateForm {
|
2023-10-11 14:48:19 +00:00
|
|
|
name: data.name.clone(),
|
2024-06-06 13:55:08 +00:00
|
|
|
url,
|
|
|
|
body,
|
|
|
|
alt_text,
|
2023-08-08 09:41:41 +00:00
|
|
|
nsfw: data.nsfw,
|
|
|
|
language_id: data.language_id,
|
|
|
|
updated: Some(Some(naive_now())),
|
|
|
|
..Default::default()
|
|
|
|
};
|
2023-08-01 13:53:36 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2024-03-27 14:54:42 +00:00
|
|
|
generate_post_link_metadata(
|
|
|
|
updated_post.clone(),
|
2024-06-06 13:55:08 +00:00
|
|
|
custom_thumbnail.flatten().map(Into::into),
|
2024-03-27 14:54:42 +00:00
|
|
|
|post| Some(SendActivityData::UpdatePost(post)),
|
|
|
|
Some(local_site),
|
|
|
|
context.reset_request_count(),
|
2024-05-22 08:28:47 +00:00
|
|
|
)
|
|
|
|
.await?;
|
2023-08-01 13:53:36 +00:00
|
|
|
|
2023-08-02 16:52:41 +00:00
|
|
|
build_post_response(
|
|
|
|
context.deref(),
|
|
|
|
orig_post.community_id,
|
2023-10-13 13:48:18 +00:00
|
|
|
&local_user_view.person,
|
2023-08-02 16:52:41 +00:00
|
|
|
post_id,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|