2022-09-19 22:58:42 +00:00
|
|
|
use crate::{check_report_reason, Perform};
|
2022-04-13 18:12:25 +00:00
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
|
|
|
comment::{CommentReportResponse, CreateCommentReport},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-07-26 18:01:15 +00:00
|
|
|
utils::{
|
|
|
|
check_community_ban,
|
|
|
|
local_user_view_from_jwt,
|
|
|
|
sanitize_html,
|
|
|
|
send_new_report_email_to_admins,
|
|
|
|
},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
2022-10-27 09:24:07 +00:00
|
|
|
source::{
|
|
|
|
comment_report::{CommentReport, CommentReportForm},
|
|
|
|
local_site::LocalSite,
|
|
|
|
},
|
2022-04-13 18:12:25 +00:00
|
|
|
traits::Reportable,
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::{CommentReportView, CommentView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
/// Creates a comment report and notifies the moderators of the community
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CreateCommentReport {
|
|
|
|
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: &CreateCommentReport = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, context).await?;
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-26 18:01:15 +00:00
|
|
|
let reason = sanitize_html(self.reason.trim());
|
|
|
|
check_report_reason(&reason, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
let comment_id = data.comment_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let comment_view = CommentView::read(&mut context.pool(), comment_id, None).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
check_community_ban(person_id, comment_view.community.id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let report_form = CommentReportForm {
|
|
|
|
creator_id: person_id,
|
|
|
|
comment_id,
|
|
|
|
original_comment_text: comment_view.comment.content,
|
2023-07-26 18:01:15 +00:00
|
|
|
reason,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
let report = CommentReport::report(&mut context.pool(), &report_form)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntCreateReport)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
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-02-14 15:57:08 +00:00
|
|
|
// Email the admins
|
|
|
|
if local_site.reports_email_admins {
|
|
|
|
send_new_report_email_to_admins(
|
|
|
|
&comment_report_view.creator.name,
|
|
|
|
&comment_report_view.comment_creator.name,
|
2023-07-11 13:09:59 +00:00
|
|
|
&mut context.pool(),
|
2023-02-14 15:57:08 +00:00
|
|
|
context.settings(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|