]> Untitled Git - lemmy.git/commitdiff
Show deny reason to users after a failed login. Fixes #2191 (#2206)
authorDessalines <dessalines@users.noreply.github.com>
Tue, 19 Apr 2022 10:48:59 +0000 (06:48 -0400)
committerGitHub <noreply@github.com>
Tue, 19 Apr 2022 10:48:59 +0000 (10:48 +0000)
* Show deny reason to users after a failed login. Fixes #2191

* Updating translations.

* Adding registration_denied translated string.

crates/api_common/src/lib.rs
crates/utils/src/lib.rs
crates/utils/translations

index c37d40e9aa0d5668846f7af897aabfe6c96f28f1..330c75bd0bbd3ebc549d8def92c5f511dd5c7300 100644 (file)
@@ -485,8 +485,10 @@ pub async fn check_registration_application(
       RegistrationApplication::find_by_local_user_id(conn, local_user_id)
     })
     .await??;
       RegistrationApplication::find_by_local_user_id(conn, local_user_id)
     })
     .await??;
-    if registration.deny_reason.is_some() {
-      return Err(LemmyError::from_message("registration_denied"));
+    if let Some(deny_reason) = registration.deny_reason {
+      let lang = get_user_lang(local_user_view);
+      let registration_denied_message = format!("{}: {}", lang.registration_denied(), &deny_reason);
+      return Err(LemmyError::from_message(&registration_denied_message));
     } else {
       return Err(LemmyError::from_message("registration_application_pending"));
     }
     } else {
       return Err(LemmyError::from_message("registration_application_pending"));
     }
index c993779bb0838f05246e9a697b1f622c9b351c32..1dbfb25bc1f835ffc91deb41b89b987419bb9e28 100644 (file)
@@ -51,50 +51,54 @@ macro_rules! location_info {
 
 #[derive(serde::Serialize)]
 struct ApiError {
 
 #[derive(serde::Serialize)]
 struct ApiError {
-  error: &'static str,
+  error: String,
 }
 
 pub struct LemmyError {
 }
 
 pub struct LemmyError {
-  pub message: Option<&'static str>,
+  pub message: Option<String>,
   pub inner: anyhow::Error,
   pub context: SpanTrace,
 }
 
 impl LemmyError {
   /// Create LemmyError from a message, including stack trace
   pub inner: anyhow::Error,
   pub context: SpanTrace,
 }
 
 impl LemmyError {
   /// Create LemmyError from a message, including stack trace
-  pub fn from_message(message: &'static str) -> Self {
+  pub fn from_message(message: &str) -> Self {
     let inner = anyhow::anyhow!("{}", message);
     LemmyError {
     let inner = anyhow::anyhow!("{}", message);
     LemmyError {
-      message: Some(message),
+      message: Some(message.into()),
       inner,
       context: SpanTrace::capture(),
     }
   }
 
   /// Create a LemmyError from error and message, including stack trace
       inner,
       context: SpanTrace::capture(),
     }
   }
 
   /// Create a LemmyError from error and message, including stack trace
-  pub fn from_error_message<E>(error: E, message: &'static str) -> Self
+  pub fn from_error_message<E>(error: E, message: &str) -> Self
   where
     E: Into<anyhow::Error>,
   {
     LemmyError {
   where
     E: Into<anyhow::Error>,
   {
     LemmyError {
-      message: Some(message),
+      message: Some(message.into()),
       inner: error.into(),
       context: SpanTrace::capture(),
     }
   }
 
   /// Add message to existing LemmyError (or overwrite existing error)
       inner: error.into(),
       context: SpanTrace::capture(),
     }
   }
 
   /// Add message to existing LemmyError (or overwrite existing error)
-  pub fn with_message(self, message: &'static str) -> Self {
+  pub fn with_message(self, message: &str) -> Self {
     LemmyError {
     LemmyError {
-      message: Some(message),
+      message: Some(message.into()),
       ..self
     }
   }
 
   pub fn to_json(&self) -> Result<String, Self> {
       ..self
     }
   }
 
   pub fn to_json(&self) -> Result<String, Self> {
-    let api_error = match self.message {
-      Some(error) => ApiError { error },
-      None => ApiError { error: "Unknown" },
+    let api_error = match &self.message {
+      Some(error) => ApiError {
+        error: error.into(),
+      },
+      None => ApiError {
+        error: "Unknown".into(),
+      },
     };
 
     Ok(serde_json::to_string(&api_error)?)
     };
 
     Ok(serde_json::to_string(&api_error)?)
@@ -126,7 +130,7 @@ impl std::fmt::Debug for LemmyError {
 
 impl Display for LemmyError {
   fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
 
 impl Display for LemmyError {
   fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
-    if let Some(message) = self.message {
+    if let Some(message) = &self.message {
       write!(f, "{}: ", message)?;
     }
     writeln!(f, "{}", self.inner)?;
       write!(f, "{}: ", message)?;
     }
     writeln!(f, "{}", self.inner)?;
@@ -144,7 +148,9 @@ impl actix_web::error::ResponseError for LemmyError {
 
   fn error_response(&self) -> HttpResponse {
     if let Some(message) = &self.message {
 
   fn error_response(&self) -> HttpResponse {
     if let Some(message) = &self.message {
-      HttpResponse::build(self.status_code()).json(ApiError { error: message })
+      HttpResponse::build(self.status_code()).json(ApiError {
+        error: message.into(),
+      })
     } else {
       HttpResponse::build(self.status_code())
         .content_type("text/plain")
     } else {
       HttpResponse::build(self.status_code())
         .content_type("text/plain")
index ad40feba4263a850f135946847d3ddd1a890a6e7..3f86b5c40796fa83054e2226e36effff3b93198a 160000 (submodule)
@@ -1 +1 @@
-Subproject commit ad40feba4263a850f135946847d3ddd1a890a6e7
+Subproject commit 3f86b5c40796fa83054e2226e36effff3b93198a