2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::{CommentReportResponse, ResolveCommentReport},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{is_mod_or_admin, local_user_view_from_jwt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{source::comment_report::CommentReport, traits::Reportable};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::CommentReportView;
|
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 comment report and notifies the moderators of the community
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for ResolveCommentReport {
|
|
|
|
type Response = CommentReportResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
2022-04-13 18:12:25 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
) -> Result<CommentReportResponse, LemmyError> {
|
|
|
|
let data: &ResolveCommentReport = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let report_id = data.report_id;
|
|
|
|
let person_id = local_user_view.person.id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let report = CommentReportView::read(&mut context.pool(), report_id, person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
2023-07-11 13:09:59 +00:00
|
|
|
is_mod_or_admin(&mut context.pool(), person_id, report.community.id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
if data.resolved {
|
2023-07-11 13:09:59 +00:00
|
|
|
CommentReport::resolve(&mut context.pool(), report_id, person_id)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
2022-11-09 10:05:00 +00:00
|
|
|
} else {
|
2023-07-11 13:09:59 +00:00
|
|
|
CommentReport::unresolve(&mut context.pool(), report_id, person_id)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntResolveReport)?;
|
2022-11-09 10:05:00 +00:00
|
|
|
}
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let report_id = data.report_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let comment_report_view =
|
|
|
|
CommentReportView::read(&mut context.pool(), report_id, person_id).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
Ok(CommentReportResponse {
|
2022-04-13 18:12:25 +00:00
|
|
|
comment_report_view,
|
2023-06-06 16:27:22 +00:00
|
|
|
})
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|