use async_trait::async_trait;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use better_auth_core::AuthSession;
use better_auth_core::{AuthContext, AuthPlugin, AuthRoute};
use better_auth_core::{AuthError, AuthResult};
use better_auth_core::{AuthRequest, AuthResponse, HttpMethod};
use better_auth_core::RequestMeta;
use better_auth_core::utils::password::PasswordHasher;
use super::StatusResponse;
pub(super) mod handlers;
pub(super) mod types;
#[cfg(test)]
mod tests;
use handlers::*;
use types::*;
pub type OnPasswordResetCallback =
dyn Fn(serde_json::Value) -> Pin<Box<dyn Future<Output = AuthResult<()>> + Send>> + Send + Sync;
#[async_trait]
pub trait SendResetPassword: Send + Sync {
async fn send(&self, user: &serde_json::Value, url: &str, token: &str) -> AuthResult<()>;
}
pub struct PasswordManagementPlugin {
config: PasswordManagementConfig,
}
#[derive(Clone, better_auth_core::PluginConfig)]
#[plugin(name = "PasswordManagementPlugin")]
pub struct PasswordManagementConfig {
#[config(default = 24)]
pub reset_token_expiry_hours: i64,
#[config(default = true)]
pub require_current_password: bool,
#[config(default = true)]
pub send_email_notifications: bool,
#[config(default = false)]
pub revoke_sessions_on_password_reset: bool,
#[config(default = None)]
pub send_reset_password: Option<Arc<dyn SendResetPassword>>,
#[config(default = None)]
pub on_password_reset: Option<Arc<OnPasswordResetCallback>>,
#[config(default = None)]
pub password_hasher: Option<Arc<dyn PasswordHasher>>,
}
impl std::fmt::Debug for PasswordManagementConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("PasswordManagementConfig")
.field("reset_token_expiry_hours", &self.reset_token_expiry_hours)
.field("require_current_password", &self.require_current_password)
.field("send_email_notifications", &self.send_email_notifications)
.field(
"revoke_sessions_on_password_reset",
&self.revoke_sessions_on_password_reset,
)
.field(
"send_reset_password",
&self.send_reset_password.as_ref().map(|_| "custom"),
)
.field(
"on_password_reset",
&self.on_password_reset.as_ref().map(|_| "custom"),
)
.field(
"password_hasher",
&self.password_hasher.as_ref().map(|_| "custom"),
)
.finish()
}
}
#[async_trait]
impl<S: better_auth_core::AuthSchema> AuthPlugin<S> for PasswordManagementPlugin {
fn name(&self) -> &'static str {
"password-management"
}
fn routes(&self) -> Vec<AuthRoute> {
vec![
AuthRoute::post("/request-password-reset", "request_password_reset"),
AuthRoute::post("/reset-password", "reset_password"),
AuthRoute::get("/reset-password/{token}", "reset_password_token"),
AuthRoute::post("/change-password", "change_password"),
AuthRoute::post("/verify-password", "verify_password"),
]
}
async fn on_request(
&self,
req: &AuthRequest,
ctx: &AuthContext<S>,
) -> AuthResult<Option<AuthResponse>> {
match (req.method(), req.path()) {
(HttpMethod::Post, "/request-password-reset") => {
Ok(Some(self.handle_request_password_reset(req, ctx).await?))
}
(HttpMethod::Post, "/reset-password") => {
Ok(Some(self.handle_reset_password(req, ctx).await?))
}
(HttpMethod::Post, "/change-password") => {
Ok(Some(self.handle_change_password(req, ctx).await?))
}
(HttpMethod::Post, "/verify-password") => {
Ok(Some(self.handle_verify_password(req, ctx).await?))
}
(HttpMethod::Get, path) if path.starts_with("/reset-password/") => {
let token = path.get(16..).unwrap_or(""); Ok(Some(
self.handle_reset_password_token(token, req, ctx).await?,
))
}
_ => Ok(None),
}
}
}
impl PasswordManagementPlugin {
async fn handle_request_password_reset(
&self,
req: &AuthRequest,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<AuthResponse> {
let body: RequestPasswordResetRequest = match better_auth_core::validate_request_body(req) {
Ok(v) => v,
Err(resp) => return Ok(resp),
};
let response = request_password_reset_core(&body, &self.config, ctx).await?;
Ok(AuthResponse::json(200, &response)?)
}
async fn handle_reset_password(
&self,
req: &AuthRequest,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<AuthResponse> {
let mut body: ResetPasswordRequest = match better_auth_core::validate_request_body(req) {
Ok(v) => v,
Err(resp) => return Ok(resp),
};
if body.token.is_none() {
body.token = req.query.get("token").cloned();
}
let response = reset_password_core(&body, &self.config, ctx).await?;
Ok(AuthResponse::json(200, &response)?)
}
async fn handle_change_password(
&self,
req: &AuthRequest,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<AuthResponse> {
let body: ChangePasswordRequest = match better_auth_core::validate_request_body(req) {
Ok(v) => v,
Err(resp) => return Ok(resp),
};
let user = self
.get_current_user(req, ctx)
.await?
.ok_or(AuthError::Unauthenticated)?;
let meta = RequestMeta::from_request(req);
let (response, new_token) =
change_password_core(&body, &user, &self.config, &meta, ctx).await?;
let auth_response = AuthResponse::json(200, &response)?;
if let Some(token) = new_token {
let cookie_header =
better_auth_core::utils::cookie_utils::create_session_cookie(&token, &ctx.config);
Ok(auth_response.with_header("Set-Cookie", cookie_header))
} else {
Ok(auth_response)
}
}
async fn handle_verify_password(
&self,
req: &AuthRequest,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<AuthResponse> {
let body: VerifyPasswordRequest = match better_auth_core::validate_request_body(req) {
Ok(v) => v,
Err(resp) => return Ok(resp),
};
let user = self.get_current_user(req, ctx).await?;
let Some(user) = user else {
return Ok(AuthResponse::new(401).with_header("content-type", "application/json"));
};
let response = verify_password_core(&body, &user, &self.config, ctx).await?;
Ok(AuthResponse::json(200, &response)?)
}
async fn handle_reset_password_token(
&self,
token: &str,
req: &AuthRequest,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<AuthResponse> {
let query = ResetPasswordTokenQuery {
callback_url: req.query.get("callbackURL").cloned(),
};
match reset_password_token_core(token, &query, ctx).await? {
ResetPasswordTokenResult::Redirect(url) => {
let mut headers = better_auth_core::Headers::new();
let _ = headers.insert("Location".to_string(), url);
let _ = headers.insert("content-type".to_string(), "application/json".to_string());
Ok(AuthResponse {
status: 302,
headers,
body: Vec::new(),
})
}
}
}
async fn get_current_user<S: better_auth_core::AuthSchema>(
&self,
req: &AuthRequest,
ctx: &AuthContext<S>,
) -> AuthResult<Option<S::User>> {
let session_manager = ctx.session_manager();
if let Some(token) = session_manager.extract_session_token(req)
&& let Some(session) = session_manager.get_session(&token).await?
{
return ctx.database.get_user_by_id(&session.user_id()).await;
}
Ok(None)
}
}
#[cfg(test)]
impl PasswordManagementPlugin {
fn validate_password(
&self,
password: &str,
ctx: &AuthContext<impl better_auth_core::AuthSchema>,
) -> AuthResult<()> {
better_auth_core::utils::password::validate_password(
password,
ctx.config.password.min_length,
usize::MAX,
ctx,
)
}
async fn hash_password(&self, password: &str) -> AuthResult<String> {
better_auth_core::utils::password::hash_password(
self.config.password_hasher.as_ref(),
password,
)
.await
}
async fn verify_password(&self, password: &str, hash: &str) -> AuthResult<()> {
better_auth_core::utils::password::verify_password(
self.config.password_hasher.as_ref(),
password,
hash,
)
.await
}
}