2021-03-25 19:19:40 +00:00
|
|
|
use actix_web::web::Data;
|
2021-10-29 10:32:42 +00:00
|
|
|
|
2021-10-14 16:33:19 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
blocking,
|
|
|
|
check_community_ban,
|
|
|
|
check_community_deleted_or_removed,
|
|
|
|
get_local_user_view_from_jwt,
|
|
|
|
post::*,
|
|
|
|
};
|
2021-10-29 10:32:42 +00:00
|
|
|
use lemmy_apub::protocol::activities::{
|
|
|
|
create_or_update::post::CreateOrUpdatePost,
|
|
|
|
CreateOrUpdateType,
|
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
|
|
|
source::post::{Post, PostForm},
|
|
|
|
traits::Crud,
|
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_utils::{
|
2021-08-19 14:12:49 +00:00
|
|
|
request::fetch_site_data,
|
2022-01-20 14:04:54 +00:00
|
|
|
utils::{check_slurs_opt, clean_optional_text, clean_url_params, is_valid_post_title},
|
2021-03-25 19:19:40 +00:00
|
|
|
ConnectionId,
|
|
|
|
LemmyError,
|
|
|
|
};
|
2021-08-17 18:04:58 +00:00
|
|
|
use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-10-29 10:32:42 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for EditPost {
|
|
|
|
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: &EditPost = 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_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 {
|
|
|
|
if !is_valid_post_title(name) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("invalid_post_title"));
|
2021-04-15 03:37:51 +00:00
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let orig_post = blocking(context.pool(), move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
check_community_ban(
|
|
|
|
local_user_view.person.id,
|
|
|
|
orig_post.community_id,
|
|
|
|
context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed(orig_post.community_id, context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// 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();
|
2021-09-22 15:57:09 +00:00
|
|
|
let (metadata_res, pictrs_thumbnail) =
|
|
|
|
fetch_site_data(context.client(), &context.settings(), data_url).await;
|
2021-08-19 14:12:49 +00:00
|
|
|
let (embed_title, embed_description, embed_html) = metadata_res
|
2021-08-04 21:13:51 +00:00
|
|
|
.map(|u| (u.title, u.description, u.html))
|
|
|
|
.unwrap_or((None, None, None));
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let post_form = PostForm {
|
2021-03-29 20:24:50 +00:00
|
|
|
creator_id: orig_post.creator_id.to_owned(),
|
|
|
|
community_id: orig_post.community_id,
|
2021-04-15 03:37:51 +00:00
|
|
|
name: data.name.to_owned().unwrap_or(orig_post.name),
|
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
|
|
|
nsfw: data.nsfw,
|
|
|
|
updated: Some(naive_now()),
|
2021-08-04 21:13:51 +00:00
|
|
|
embed_title,
|
|
|
|
embed_description,
|
|
|
|
embed_html,
|
2021-03-25 19:19:40 +00:00
|
|
|
thumbnail_url: pictrs_thumbnail.map(|u| u.into()),
|
2021-03-29 20:24:50 +00:00
|
|
|
..PostForm::default()
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let post_id = data.post_id;
|
|
|
|
let res = blocking(context.pool(), move |conn| {
|
|
|
|
Post::update(conn, post_id, &post_form)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
let updated_post: Post = match res {
|
|
|
|
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_update_post"
|
|
|
|
};
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from(e).with_message(err_type));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Send apub update
|
2021-07-31 17:26:17 +00:00
|
|
|
CreateOrUpdatePost::send(
|
2021-11-06 12:37:55 +00:00
|
|
|
updated_post.into(),
|
2021-10-18 21:36:44 +00:00
|
|
|
&local_user_view.person.clone().into(),
|
2021-07-31 17:26:17 +00:00
|
|
|
CreateOrUpdateType::Update,
|
|
|
|
context,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
send_post_ws_message(
|
|
|
|
data.post_id,
|
|
|
|
UserOperationCrud::EditPost,
|
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
|
|
|
}
|
|
|
|
}
|