2023-07-28 14:39:38 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::{CommentReportResponse, ResolveCommentReport},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-10-13 13:48:18 +00:00
|
|
|
utils::check_community_mod_action,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{source::comment_report::CommentReport, traits::Reportable};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::{CommentReportView, LocalUserView};
|
2024-04-10 14:14:11 +00:00
|
|
|
use lemmy_utils::error::{LemmyErrorExt, LemmyErrorType, LemmyResult};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
/// Resolves or unresolves a comment report and notifies the moderators of the community
|
2023-07-28 14:39:38 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn resolve_comment_report(
|
|
|
|
data: Json<ResolveCommentReport>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2024-04-10 14:14:11 +00:00
|
|
|
) -> LemmyResult<Json<CommentReportResponse>> {
|
2023-07-28 14:39:38 +00:00
|
|
|
let report_id = data.report_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
2024-04-16 12:48:15 +00:00
|
|
|
let report = CommentReportView::read(&mut context.pool(), report_id, person_id)
|
|
|
|
.await?
|
|
|
|
.ok_or(LemmyErrorType::CouldntFindCommentReport)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
2023-10-13 13:48:18 +00:00
|
|
|
check_community_mod_action(
|
|
|
|
&local_user_view.person,
|
|
|
|
report.community.id,
|
2024-01-03 09:31:03 +00:00
|
|
|
true,
|
2023-10-13 13:48:18 +00:00
|
|
|
&mut context.pool(),
|
|
|
|
)
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
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)?;
|
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
let report_id = data.report_id;
|
2024-04-16 12:48:15 +00:00
|
|
|
let comment_report_view = CommentReportView::read(&mut context.pool(), report_id, person_id)
|
|
|
|
.await?
|
|
|
|
.ok_or(LemmyErrorType::CouldntFindCommentReport)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
Ok(Json(CommentReportResponse {
|
|
|
|
comment_report_view,
|
|
|
|
}))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|