]> Untitled Git - lemmy.git/blob - crates/api/src/post_report/create.rs
Making the chat server an actor. (#2793)
[lemmy.git] / crates / api / src / post_report / create.rs
1 use crate::{check_report_reason, Perform};
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   context::LemmyContext,
5   post::{CreatePostReport, PostReportResponse},
6   utils::{check_community_ban, get_local_user_view_from_jwt, send_new_report_email_to_admins},
7   websocket::UserOperation,
8 };
9 use lemmy_db_schema::{
10   source::{
11     local_site::LocalSite,
12     post_report::{PostReport, PostReportForm},
13   },
14   traits::Reportable,
15 };
16 use lemmy_db_views::structs::{PostReportView, PostView};
17 use lemmy_utils::{error::LemmyError, ConnectionId};
18
19 /// Creates a post report and notifies the moderators of the community
20 #[async_trait::async_trait(?Send)]
21 impl Perform for CreatePostReport {
22   type Response = PostReportResponse;
23
24   #[tracing::instrument(skip(context, websocket_id))]
25   async fn perform(
26     &self,
27     context: &Data<LemmyContext>,
28     websocket_id: Option<ConnectionId>,
29   ) -> Result<PostReportResponse, LemmyError> {
30     let data: &CreatePostReport = self;
31     let local_user_view =
32       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
33     let local_site = LocalSite::read(context.pool()).await?;
34
35     let reason = self.reason.trim();
36     check_report_reason(reason, &local_site)?;
37
38     let person_id = local_user_view.person.id;
39     let post_id = data.post_id;
40     let post_view = PostView::read(context.pool(), post_id, None, None).await?;
41
42     check_community_ban(person_id, post_view.community.id, context.pool()).await?;
43
44     let report_form = PostReportForm {
45       creator_id: person_id,
46       post_id,
47       original_post_name: post_view.post.name,
48       original_post_url: post_view.post.url,
49       original_post_body: post_view.post.body,
50       reason: reason.to_owned(),
51     };
52
53     let report = PostReport::report(context.pool(), &report_form)
54       .await
55       .map_err(|e| LemmyError::from_error_message(e, "couldnt_create_report"))?;
56
57     let post_report_view = PostReportView::read(context.pool(), report.id, person_id).await?;
58
59     // Email the admins
60     if local_site.reports_email_admins {
61       send_new_report_email_to_admins(
62         &post_report_view.creator.name,
63         &post_report_view.post_creator.name,
64         context.pool(),
65         context.settings(),
66       )
67       .await?;
68     }
69
70     let res = PostReportResponse { post_report_view };
71
72     context.send_mod_ws_message(
73       &UserOperation::CreatePostReport,
74       &res,
75       post_view.community.id,
76       websocket_id,
77     )?;
78
79     Ok(res)
80   }
81 }