2022-04-13 18:12:25 +00:00
|
|
|
use crate::Perform;
|
|
|
|
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
|
|
|
person::{PasswordReset, PasswordResetResponse},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::send_password_reset_email,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2023-06-27 09:20:53 +00:00
|
|
|
use lemmy_db_schema::source::password_reset_request::PasswordResetRequest;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::LocalUserView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for PasswordReset {
|
|
|
|
type Response = PasswordResetResponse;
|
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(self, context))]
|
2022-04-13 18:12:25 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
) -> Result<PasswordResetResponse, LemmyError> {
|
|
|
|
let data: &PasswordReset = self;
|
|
|
|
|
|
|
|
// Fetch that email
|
2022-09-27 16:02:04 +00:00
|
|
|
let email = data.email.to_lowercase();
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_user_view = LocalUserView::find_by_email(&mut context.pool(), &email)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::IncorrectLogin)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-06-27 09:20:53 +00:00
|
|
|
// Check for too many attempts (to limit potential abuse)
|
|
|
|
let recent_resets_count = PasswordResetRequest::get_recent_password_resets_count(
|
2023-07-11 13:09:59 +00:00
|
|
|
&mut context.pool(),
|
2023-06-27 09:20:53 +00:00
|
|
|
local_user_view.local_user.id,
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
if recent_resets_count >= 3 {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::PasswordResetLimitReached)?
|
2023-06-27 09:20:53 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
// Email the pure token to the user.
|
2023-07-11 13:09:59 +00:00
|
|
|
send_password_reset_email(&local_user_view, &mut context.pool(), context.settings()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
Ok(PasswordResetResponse {})
|
|
|
|
}
|
|
|
|
}
|