2023-09-05 09:33:46 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
post::{PostReportResponse, ResolvePostReport},
|
2023-09-21 10:42:28 +00:00
|
|
|
utils::is_mod_or_admin,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{source::post_report::PostReport, traits::Reportable};
|
2023-09-21 10:42:28 +00:00
|
|
|
use lemmy_db_views::structs::{LocalUserView, PostReportView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
/// Resolves or unresolves a post report and notifies the moderators of the community
|
2023-09-05 09:33:46 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn resolve_post_report(
|
|
|
|
data: Json<ResolvePostReport>,
|
|
|
|
context: Data<LemmyContext>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: LocalUserView,
|
2023-09-05 09:33:46 +00:00
|
|
|
) -> Result<Json<PostReportResponse>, LemmyError> {
|
|
|
|
let report_id = data.report_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let report = PostReportView::read(&mut context.pool(), report_id, person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
is_mod_or_admin(&mut context.pool(), person_id, report.community.id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
if data.resolved {
|
|
|
|
PostReport::resolve(&mut context.pool(), report_id, person_id)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
|
|
|
} else {
|
|
|
|
PostReport::unresolve(&mut context.pool(), report_id, person_id)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let post_report_view = PostReportView::read(&mut context.pool(), report_id, person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
Ok(Json(PostReportResponse { post_report_view }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|