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::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
post::{CreatePostReport, PostReportResponse},
|
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::{
|
|
|
|
local_site::LocalSite,
|
|
|
|
post_report::{PostReport, PostReportForm},
|
|
|
|
},
|
2022-04-13 18:12:25 +00:00
|
|
|
traits::Reportable,
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::{PostReportView, PostView};
|
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 post report and notifies the moderators of the community
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CreatePostReport {
|
|
|
|
type Response = PostReportResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<PostReportResponse, LemmyError> {
|
2022-04-13 18:12:25 +00:00
|
|
|
let data: &CreatePostReport = 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 post_id = data.post_id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let post_view = PostView::read(&mut context.pool(), post_id, None, None).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
check_community_ban(person_id, post_view.community.id, &mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
let report_form = PostReportForm {
|
|
|
|
creator_id: person_id,
|
|
|
|
post_id,
|
|
|
|
original_post_name: post_view.post.name,
|
|
|
|
original_post_url: post_view.post.url,
|
|
|
|
original_post_body: post_view.post.body,
|
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 = PostReport::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 post_report_view = PostReportView::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(
|
|
|
|
&post_report_view.creator.name,
|
|
|
|
&post_report_view.post_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(PostReportResponse { post_report_view })
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
}
|