2019-04-24 21:52:08 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
|
|
|
"github.com/authelia/authelia/v4/internal/utils"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// ResetPasswordPost handler for resetting passwords.
|
2019-04-24 21:52:08 +00:00
|
|
|
func ResetPasswordPost(ctx *middlewares.AutheliaCtx) {
|
|
|
|
userSession := ctx.GetSession()
|
|
|
|
|
|
|
|
// Those checks unsure that the identity verification process has been initiated and completed successfully
|
|
|
|
// otherwise PasswordReset would not be set to true. We can improve the security of this check by making the
|
2020-05-02 05:06:39 +00:00
|
|
|
// request expire at some point because here it only expires when the cookie expires.
|
2019-04-24 21:52:08 +00:00
|
|
|
if userSession.PasswordResetUsername == nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("No identity verification process has been initiated"), messageUnableToResetPassword)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var requestBody resetPasswordStep2RequestBody
|
|
|
|
err := ctx.ParseBody(&requestBody)
|
|
|
|
|
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageUnableToResetPassword)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ctx.Providers.UserProvider.UpdatePassword(*userSession.PasswordResetUsername, requestBody.Password)
|
|
|
|
|
|
|
|
if err != nil {
|
2020-11-27 09:59:22 +00:00
|
|
|
switch {
|
2021-06-16 02:50:14 +00:00
|
|
|
case utils.IsStringInSliceContains(err.Error(), ldapPasswordComplexityCodes),
|
|
|
|
utils.IsStringInSliceContains(err.Error(), ldapPasswordComplexityErrors):
|
2020-11-27 09:59:22 +00:00
|
|
|
ctx.Error(fmt.Errorf("%s", err), ldapPasswordComplexityCode)
|
|
|
|
default:
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("%s", err), messageUnableToResetPassword)
|
2020-11-27 09:59:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Logger.Debugf("Password of user %s has been reset", *userSession.PasswordResetUsername)
|
|
|
|
|
|
|
|
// Reset the request.
|
|
|
|
userSession.PasswordResetUsername = nil
|
|
|
|
err = ctx.SaveSession(userSession)
|
|
|
|
|
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("Unable to update password reset state: %s", err), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.ReplyOK()
|
|
|
|
}
|