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-01-25 14:22:11 +00:00
|
|
|
request::fetch_link_metadata,
|
2023-08-01 13:53:36 +00:00
|
|
|
send_activity::{ActivityChannel, SendActivityData},
|
2024-01-25 14:22:11 +00:00
|
|
|
utils::{
|
|
|
|
check_community_user_action,
|
|
|
|
local_site_to_slur_regex,
|
|
|
|
process_markdown_opt,
|
|
|
|
proxy_image_link_opt_apub,
|
|
|
|
},
|
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
|
|
|
};
|
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::{
|
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>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2023-08-01 13:53:36 +00:00
|
|
|
) -> Result<Json<PostResponse>, LemmyError> {
|
|
|
|
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
|
|
|
// TODO No good way to handle a clear.
|
|
|
|
// Issue link: https://github.com/LemmyNet/lemmy/issues/2287
|
2024-01-25 14:22:11 +00:00
|
|
|
let url = data.url.as_ref().map(clean_url_params);
|
2024-02-15 09:42:23 +00:00
|
|
|
let custom_thumbnail = data.custom_thumbnail.as_ref().map(clean_url_params);
|
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)?;
|
2024-01-25 14:22:11 +00:00
|
|
|
let body = process_markdown_opt(&data.body, &slur_regex, &context).await?;
|
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
|
|
|
|
2024-01-25 14:22:11 +00:00
|
|
|
is_valid_body_field(&body, true)?;
|
2024-02-15 09:42:23 +00:00
|
|
|
check_url_scheme(&url)?;
|
|
|
|
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;
|
|
|
|
let orig_post = Post::read(&mut context.pool(), post_id).await?;
|
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
|
|
|
}
|
|
|
|
|
2024-02-15 09:42:23 +00:00
|
|
|
// Fetch post links and thumbnail if url was updated
|
|
|
|
let (embed_title, embed_description, embed_video_url, metadata_thumbnail) = match &url {
|
2024-01-25 14:22:11 +00:00
|
|
|
Some(url) => {
|
2024-02-15 09:42:23 +00:00
|
|
|
// Only generate the thumbnail if there's no custom thumbnail provided,
|
|
|
|
// otherwise it will save it in pictrs
|
|
|
|
let generate_thumbnail = custom_thumbnail.is_none();
|
|
|
|
|
|
|
|
let metadata = fetch_link_metadata(url, generate_thumbnail, &context).await?;
|
2024-01-25 14:22:11 +00:00
|
|
|
(
|
|
|
|
Some(metadata.opengraph_data.title),
|
|
|
|
Some(metadata.opengraph_data.description),
|
|
|
|
Some(metadata.opengraph_data.embed_video_url),
|
|
|
|
Some(metadata.thumbnail),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
_ => Default::default(),
|
|
|
|
};
|
2024-02-15 09:42:23 +00:00
|
|
|
|
2024-01-25 14:22:11 +00:00
|
|
|
let url = match url {
|
|
|
|
Some(url) => Some(proxy_image_link_opt_apub(Some(url), &context).await?),
|
|
|
|
_ => Default::default(),
|
|
|
|
};
|
2023-08-01 13:53:36 +00:00
|
|
|
|
2024-02-15 09:42:23 +00:00
|
|
|
let custom_thumbnail = match custom_thumbnail {
|
|
|
|
Some(custom_thumbnail) => {
|
|
|
|
Some(proxy_image_link_opt_apub(Some(custom_thumbnail), &context).await?)
|
|
|
|
}
|
|
|
|
_ => Default::default(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let thumbnail_url = custom_thumbnail.or(metadata_thumbnail);
|
|
|
|
|
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(),
|
2023-08-08 09:41:41 +00:00
|
|
|
url,
|
2024-01-25 14:22:11 +00:00
|
|
|
body: diesel_option_overwrite(body),
|
2023-08-08 09:41:41 +00:00
|
|
|
nsfw: data.nsfw,
|
|
|
|
embed_title,
|
|
|
|
embed_description,
|
|
|
|
embed_video_url,
|
|
|
|
language_id: data.language_id,
|
2024-01-25 14:22:11 +00:00
|
|
|
thumbnail_url,
|
2023-08-08 09:41:41 +00:00
|
|
|
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
|
|
|
|
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,
|
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
|
|
|
}
|