]> Untitled Git - lemmy.git/blobdiff - crates/api/src/post_report/create.rs
Implement reports for private messages (#2433)
[lemmy.git] / crates / api / src / post_report / create.rs
index 28915f01ab03315ef25a902b4ca09ae6d2c749e1..6843bcd3b0c053ce1a9cd2dc6cca9c8e79d5e547 100644 (file)
@@ -1,4 +1,4 @@
-use crate::Perform;
+use crate::{check_report_reason, Perform};
 use activitypub_federation::core::object_id::ObjectId;
 use actix_web::web::Data;
 use lemmy_api_common::{
@@ -29,14 +29,8 @@ impl Perform for CreatePostReport {
     let local_user_view =
       get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
 
-    // check size of report and check for whitespace
-    let reason = data.reason.trim();
-    if reason.is_empty() {
-      return Err(LemmyError::from_message("report_reason_required"));
-    }
-    if reason.chars().count() > 1000 {
-      return Err(LemmyError::from_message("report_too_long"));
-    }
+    let reason = self.reason.trim();
+    check_report_reason(reason, context)?;
 
     let person_id = local_user_view.person.id;
     let post_id = data.post_id;
@@ -53,7 +47,7 @@ impl Perform for CreatePostReport {
       original_post_name: post_view.post.name,
       original_post_url: post_view.post.url,
       original_post_body: post_view.post.body,
-      reason: data.reason.to_owned(),
+      reason: reason.to_owned(),
     };
 
     let report = blocking(context.pool(), move |conn| {