Skip to content

Commit

Permalink
Show deny reason to users after a failed login. Fixes #2191 (#2206)
Browse files Browse the repository at this point in the history
* Show deny reason to users after a failed login. Fixes #2191

* Updating translations.

* Adding registration_denied translated string.
  • Loading branch information
dessalines authored Apr 19, 2022
1 parent 0a36b16 commit 24be9f2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 16 deletions.
6 changes: 4 additions & 2 deletions crates/api_common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,10 @@ pub async fn check_registration_application(
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"));
}
Expand Down
32 changes: 19 additions & 13 deletions crates/utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,50 +51,54 @@ macro_rules! location_info {

#[derive(serde::Serialize)]
struct ApiError {
error: &'static str,
error: String,
}

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 fn from_message(message: &'static str) -> Self {
pub fn from_message(message: &str) -> Self {
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
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 {
message: Some(message),
message: Some(message.into()),
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 {
message: Some(message),
message: Some(message.into()),
..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)?)
Expand Down Expand Up @@ -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 {
if let Some(message) = self.message {
if let Some(message) = &self.message {
write!(f, "{}: ", message)?;
}
writeln!(f, "{}", self.inner)?;
Expand All @@ -144,7 +148,9 @@ impl actix_web::error::ResponseError for LemmyError {

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")
Expand Down
2 changes: 1 addition & 1 deletion crates/utils/translations

0 comments on commit 24be9f2

Please sign in to comment.