2022-08-23 21:40:56 +00:00
|
|
|
use crate::PerformCrud;
|
2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
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-05-25 14:50:07 +00:00
|
|
|
utils::{check_community_ban, local_site_to_slur_regex, local_user_view_from_jwt},
|
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::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2023-02-16 04:05:14 +00:00
|
|
|
utils::{
|
|
|
|
slurs::check_slurs_opt,
|
2023-04-15 14:45:11 +00:00
|
|
|
validation::{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
|
|
|
};
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for EditPost {
|
|
|
|
type Response = PostResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<PostResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &EditPost = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-07-29 13:04:21 +00:00
|
|
|
let data_url = data.url.as_ref();
|
|
|
|
|
|
|
|
// 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));
|
|
|
|
let body = diesel_option_overwrite(&data.body);
|
|
|
|
|
2022-10-27 09:24:07 +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)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
if let Some(name) = &data.name {
|
2023-04-15 14:45:11 +00:00
|
|
|
is_valid_post_title(name)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-26 08:47:01 +00:00
|
|
|
is_valid_body_field(&data.body, true)?;
|
2023-04-15 14:45:11 +00:00
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
let post_id = data.post_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let orig_post = Post::read(context.pool(), post_id).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
orig_post.community_id,
|
|
|
|
context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
// Verify that only the creator can edit
|
|
|
|
if !Post::is_post_creator(local_user_view.person.id, orig_post.creator_id) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("no_post_edit_allowed"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
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) =
|
2023-06-30 10:42:42 +00:00
|
|
|
fetch_site_data(context.client(), context.settings(), data_url, true).await;
|
2022-06-02 21:44:47 +00:00
|
|
|
let (embed_title, embed_description, embed_video_url) = metadata_res
|
2022-07-29 13:04:21 +00:00
|
|
|
.map(|u| (Some(u.title), Some(u.description), Some(u.embed_video_url)))
|
2022-06-02 21:44:47 +00:00
|
|
|
.unwrap_or_default();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2022-10-06 18:27:58 +00:00
|
|
|
let language_id = self.language_id;
|
2022-11-09 10:05:00 +00:00
|
|
|
CommunityLanguage::is_allowed_community_language(
|
|
|
|
context.pool(),
|
|
|
|
language_id,
|
|
|
|
orig_post.community_id,
|
|
|
|
)
|
|
|
|
.await?;
|
2022-10-06 18:27:58 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let post_form = PostUpdateForm::builder()
|
2022-11-19 04:33:54 +00:00
|
|
|
.name(data.name.clone())
|
2022-10-27 09:24:07 +00:00
|
|
|
.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))
|
2023-02-14 21:41:22 +00:00
|
|
|
.updated(Some(Some(naive_now())))
|
2022-10-27 09:24:07 +00:00
|
|
|
.build();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let post_id = data.post_id;
|
2023-07-03 15:59:49 +00:00
|
|
|
Post::update(context.pool(), post_id, &post_form)
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_create_post"))?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
build_post_response(
|
|
|
|
context,
|
|
|
|
orig_post.community_id,
|
|
|
|
local_user_view.person.id,
|
|
|
|
post_id,
|
|
|
|
)
|
|
|
|
.await
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|