mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-28 22:01:33 +00:00
d075acce43
- Diesel ordinarily throws an error when no results are returned for a single fetch, which is a bit confusing. This PR ensures that the missing value cases are all caught, and wrapped with new LemmyErrors, rather than diesel errors. - Fixes #4601
51 lines
1.7 KiB
Rust
51 lines
1.7 KiB
Rust
use actix_web::web::{Data, Json};
|
|
use lemmy_api_common::{
|
|
comment::{CommentReportResponse, ResolveCommentReport},
|
|
context::LemmyContext,
|
|
utils::check_community_mod_action,
|
|
};
|
|
use lemmy_db_schema::{source::comment_report::CommentReport, traits::Reportable};
|
|
use lemmy_db_views::structs::{CommentReportView, LocalUserView};
|
|
use lemmy_utils::error::{LemmyErrorExt, LemmyErrorType, LemmyResult};
|
|
|
|
/// Resolves or unresolves a comment report and notifies the moderators of the community
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn resolve_comment_report(
|
|
data: Json<ResolveCommentReport>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: LocalUserView,
|
|
) -> LemmyResult<Json<CommentReportResponse>> {
|
|
let report_id = data.report_id;
|
|
let person_id = local_user_view.person.id;
|
|
let report = CommentReportView::read(&mut context.pool(), report_id, person_id)
|
|
.await?
|
|
.ok_or(LemmyErrorType::CouldntFindCommentReport)?;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
check_community_mod_action(
|
|
&local_user_view.person,
|
|
report.community.id,
|
|
true,
|
|
&mut context.pool(),
|
|
)
|
|
.await?;
|
|
|
|
if data.resolved {
|
|
CommentReport::resolve(&mut context.pool(), report_id, person_id)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
|
} else {
|
|
CommentReport::unresolve(&mut context.pool(), report_id, person_id)
|
|
.await
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
|
}
|
|
|
|
let report_id = data.report_id;
|
|
let comment_report_view = CommentReportView::read(&mut context.pool(), report_id, person_id)
|
|
.await?
|
|
.ok_or(LemmyErrorType::CouldntFindCommentReport)?;
|
|
|
|
Ok(Json(CommentReportResponse {
|
|
comment_report_view,
|
|
}))
|
|
}
|