mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-28 07:11:20 +00:00
Nutomic
9e099726e6
* Cleanup checks for community actions (fixes #2858, fixes #2868) * allow restoring deleted community * review changes * remove unneeded sql * remove joins * change mod log check
58 lines
1.5 KiB
Rust
58 lines
1.5 KiB
Rust
use actix_web::web::{Data, Json};
|
|
use lemmy_api_common::{
|
|
comment::{CommentResponse, DistinguishComment},
|
|
context::LemmyContext,
|
|
utils::{check_community_mod_action, check_community_user_action},
|
|
};
|
|
use lemmy_db_schema::{
|
|
source::comment::{Comment, CommentUpdateForm},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_db_views::structs::{CommentView, LocalUserView};
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn distinguish_comment(
|
|
data: Json<DistinguishComment>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> Result<Json<CommentResponse>, LemmyError> {
|
|
let orig_comment = CommentView::read(&mut context.pool(), data.comment_id, None).await?;
|
|
|
|
check_community_user_action(
|
|
&local_user_view.person,
|
|
orig_comment.community.id,
|
|
&mut context.pool(),
|
|
)
|
|
.await?;
|
|
|
|
// Verify that only a mod or admin can distinguish a comment
|
|
check_community_mod_action(
|
|
&local_user_view.person,
|
|
orig_comment.community.id,
|
|
false,
|
|
&mut context.pool(),
|
|
)
|
|
.await?;
|
|
|
|
// Update the Comment
|
|
let form = CommentUpdateForm {
|
|
distinguished: Some(data.distinguished),
|
|
..Default::default()
|
|
};
|
|
Comment::update(&mut context.pool(), data.comment_id, &form)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::CouldntUpdateComment)?;
|
|
|
|
let comment_view = CommentView::read(
|
|
&mut context.pool(),
|
|
data.comment_id,
|
|
Some(local_user_view.person.id),
|
|
)
|
|
.await?;
|
|
|
|
Ok(Json(CommentResponse {
|
|
comment_view,
|
|
recipient_ids: Vec::new(),
|
|
}))
|
|
}
|