use crate::sensitive::Sensitive;
use lemmy_db_schema::{
- newtypes::{CommentId, CommentReportId, CommunityId, LocalUserId, PostId},
+ newtypes::{CommentId, CommentReportId, CommunityId, LanguageId, LocalUserId, PostId},
CommentSortType,
ListingType,
};
pub content: String,
pub post_id: PostId,
pub parent_id: Option<CommentId>,
+ pub language_id: Option<LanguageId>,
pub form_id: Option<String>,
pub auth: Sensitive<String>,
}
pub comment_id: CommentId,
pub content: Option<String>,
pub distinguished: Option<bool>,
+ pub language_id: Option<LanguageId>,
pub form_id: Option<String>,
pub auth: Sensitive<String>,
}
}
}
+ // if no language is set, copy language from parent post/comment
+ let parent_language = parent_opt
+ .as_ref()
+ .map(|p| p.language_id)
+ .unwrap_or(post.language_id);
+ let language_id = Some(data.language_id.unwrap_or(parent_language));
+
let comment_form = CommentForm {
content: content_slurs_removed,
post_id: data.post_id,
creator_id: local_user_view.person.id,
+ language_id,
..CommentForm::default()
};
create_or_update::comment::CreateOrUpdateComment,
CreateOrUpdateType,
};
-use lemmy_db_schema::source::comment::Comment;
+use lemmy_db_schema::{
+ source::comment::{Comment, CommentForm},
+ traits::Crud,
+};
use lemmy_db_views::structs::CommentView;
use lemmy_utils::{
error::LemmyError,
CommentView::read(conn, comment_id, None)
})
.await??;
- let mut updated_comment = orig_comment.comment.clone();
// TODO is this necessary? It should really only need to check on create
check_community_ban(
return Err(LemmyError::from_message("no_comment_edit_allowed"));
}
- if let Some(distinguished) = data.distinguished {
+ if data.distinguished.is_some() {
// Verify that only a mod or admin can distinguish a comment
is_mod_or_admin(
context.pool(),
orig_comment.community.id,
)
.await?;
-
- updated_comment = blocking(context.pool(), move |conn| {
- Comment::update_distinguished(conn, comment_id, distinguished)
- })
- .await?
- .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_comment"))?;
}
// Update the Content
- if let Some(content) = &data.content {
- let content_slurs_removed = remove_slurs(content, &context.settings().slur_regex());
- let comment_id = data.comment_id;
- updated_comment = blocking(context.pool(), move |conn| {
- Comment::update_content(conn, comment_id, &content_slurs_removed)
- })
- .await?
- .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_comment"))?;
+ let content_slurs_removed = data
+ .content
+ .as_ref()
+ .map(|c| remove_slurs(&c, &context.settings().slur_regex()));
+ let comment_id = data.comment_id;
+ let form = CommentForm {
+ creator_id: orig_comment.comment.creator_id,
+ post_id: orig_comment.comment.post_id,
+ content: content_slurs_removed.unwrap_or(orig_comment.comment.content),
+ distinguished: data.distinguished,
+ language_id: data.language_id,
+ ..Default::default()
};
+ let updated_comment = blocking(context.pool(), move |conn| {
+ Comment::update(conn, comment_id, &form)
+ })
+ .await?
+ .map_err(|e| LemmyError::from_error_message(e, "couldnt_update_comment"))?;
// Do the mentions / recipients
let updated_comment_content = updated_comment.content.to_owned();
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 language_id = Some(
data.language_id.unwrap_or(
blocking(context.pool(), move |conn| {
+use crate::PerformCrud;
use actix_web::web::Data;
use lemmy_api_common::{
post::{EditPost, PostResponse},
CreateOrUpdateType,
};
use lemmy_db_schema::{
- source::{
- language::Language,
- post::{Post, PostForm},
- },
+ source::post::{Post, PostForm},
traits::Crud,
utils::{diesel_option_overwrite, naive_now},
};
};
use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
-use crate::PerformCrud;
-
#[async_trait::async_trait(?Send)]
impl PerformCrud for EditPost {
type Response = PostResponse;
.map(|u| (Some(u.title), Some(u.description), Some(u.embed_video_url)))
.unwrap_or_default();
- let language_id = Some(
- data.language_id.unwrap_or(
- blocking(context.pool(), move |conn| {
- Language::read_undetermined(conn)
- })
- .await??,
- ),
- );
-
let post_form = PostForm {
creator_id: orig_post.creator_id.to_owned(),
community_id: orig_post.community_id,
embed_title,
embed_description,
embed_video_url,
- language_id,
+ language_id: data.language_id,
thumbnail_url: Some(thumbnail_url),
..PostForm::default()
};
.get_results::<Self>(conn)
}
- pub fn update_content(
- conn: &PgConnection,
- comment_id: CommentId,
- new_content: &str,
- ) -> Result<Self, Error> {
- use crate::schema::comment::dsl::*;
- diesel::update(comment.find(comment_id))
- .set((content.eq(new_content), updated.eq(naive_now())))
- .get_result::<Self>(conn)
- }
-
- pub fn update_distinguished(
- conn: &PgConnection,
- comment_id: CommentId,
- new_distinguished: bool,
- ) -> Result<Self, Error> {
- use crate::schema::comment::dsl::*;
- diesel::update(comment.find(comment_id))
- .set((distinguished.eq(new_distinguished), updated.eq(naive_now())))
- .get_result::<Self>(conn)
- }
-
pub fn create(
conn: &PgConnection,
comment_form: &CommentForm,
# so to load the config we need to traverse to the repo root
export LEMMY_CONFIG_LOCATION=../../config/config.hjson
RUST_BACKTRACE=1 \
- cargo test -p lemmy_db_views --no-fail-fast --all-features -- --nocapture
+ cargo test --workspace --no-fail-fast --all-features
# Add this to do printlns: -- --nocapture