mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
ac84069071
* add password service interface * add password service implementation * add tests for password service * add password service wiring * add feature toggle * Rework from service interface to static function * Replace previous password validations * Add codeowners to password service * add error logs * update config files --------- Co-authored-by: Karl Persson <kalle.persson@grafana.com>
129 lines
5.0 KiB
Go
129 lines
5.0 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
"github.com/grafana/grafana/pkg/services/login"
|
|
"github.com/grafana/grafana/pkg/services/notifications"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
func (hs *HTTPServer) SendResetPasswordEmail(c *contextmodel.ReqContext) response.Response {
|
|
if hs.Cfg.DisableLoginForm || hs.Cfg.DisableLogin {
|
|
return response.Error(http.StatusUnauthorized, "Not allowed to reset password when login form is disabled", nil)
|
|
}
|
|
|
|
form := dtos.SendResetPasswordEmailForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
|
|
userQuery := user.GetUserByLoginQuery{LoginOrEmail: form.UserOrEmail}
|
|
|
|
usr, err := hs.userService.GetByLogin(c.Req.Context(), &userQuery)
|
|
if err != nil {
|
|
c.Logger.Info("Requested password reset for user that was not found", "user", userQuery.LoginOrEmail, "error", err)
|
|
return response.Error(http.StatusOK, "Email sent", nil)
|
|
}
|
|
|
|
if usr.IsDisabled {
|
|
c.Logger.Info("Requested password reset for disabled user", "user", userQuery.LoginOrEmail)
|
|
return response.Error(http.StatusOK, "Email sent", nil)
|
|
}
|
|
|
|
getAuthQuery := login.GetAuthInfoQuery{UserId: usr.ID}
|
|
if authInfo, err := hs.authInfoService.GetAuthInfo(c.Req.Context(), &getAuthQuery); err == nil {
|
|
oauthInfo := hs.SocialService.GetOAuthInfoProvider(authInfo.AuthModule)
|
|
if login.IsProviderEnabled(hs.Cfg, authInfo.AuthModule, oauthInfo) {
|
|
c.Logger.Info("Requested password reset for external user", nil)
|
|
return response.Error(http.StatusOK, "Email sent", nil)
|
|
}
|
|
}
|
|
|
|
emailCmd := notifications.SendResetPasswordEmailCommand{User: usr}
|
|
if err := hs.NotificationService.SendResetPasswordEmail(c.Req.Context(), &emailCmd); err != nil {
|
|
return response.Error(http.StatusInternalServerError, "Failed to send email", err)
|
|
}
|
|
|
|
return response.Success("Email sent")
|
|
}
|
|
|
|
func (hs *HTTPServer) ResetPassword(c *contextmodel.ReqContext) response.Response {
|
|
if hs.Cfg.DisableLoginForm || hs.Cfg.DisableLogin {
|
|
return response.Error(http.StatusUnauthorized,
|
|
"Not allowed to reset password when grafana authentication is disabled", nil)
|
|
}
|
|
|
|
form := dtos.ResetUserPasswordForm{}
|
|
if err := web.Bind(c.Req, &form); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
query := notifications.ValidateResetPasswordCodeQuery{Code: form.Code}
|
|
|
|
// For now the only way to know the username to clear login attempts for is
|
|
// to set it in the function provided to NotificationService
|
|
var username string
|
|
getUserByLogin := func(ctx context.Context, login string) (*user.User, error) {
|
|
username = login
|
|
userQuery := user.GetUserByLoginQuery{LoginOrEmail: login}
|
|
usr, err := hs.userService.GetByLogin(ctx, &userQuery)
|
|
return usr, err
|
|
}
|
|
|
|
userResult, err := hs.NotificationService.ValidateResetPasswordCode(c.Req.Context(), &query, getUserByLogin)
|
|
if err != nil {
|
|
if errors.Is(err, notifications.ErrInvalidEmailCode) {
|
|
return response.Error(http.StatusBadRequest, "Invalid or expired reset password code", nil)
|
|
}
|
|
return response.Error(http.StatusInternalServerError, "Unknown error validating email code", err)
|
|
}
|
|
|
|
getAuthQuery := login.GetAuthInfoQuery{UserId: userResult.ID}
|
|
if authInfo, err := hs.authInfoService.GetAuthInfo(c.Req.Context(), &getAuthQuery); err == nil {
|
|
oauthInfo := hs.SocialService.GetOAuthInfoProvider(authInfo.AuthModule)
|
|
if login.IsProviderEnabled(hs.Cfg, authInfo.AuthModule, oauthInfo) {
|
|
return response.Error(http.StatusBadRequest, "Cannot update external user password", err)
|
|
}
|
|
}
|
|
|
|
if form.NewPassword != form.ConfirmPassword {
|
|
return response.Error(http.StatusBadRequest, "Passwords do not match", nil)
|
|
}
|
|
|
|
if err := form.NewPassword.Validate(hs.Cfg); err != nil {
|
|
c.Logger.Warn("the new password doesn't meet the password policy criteria", "err", err)
|
|
return response.Err(err)
|
|
}
|
|
|
|
cmd := user.ChangeUserPasswordCommand{}
|
|
cmd.UserID = userResult.ID
|
|
encodedPassword, err := util.EncodePassword(string(form.NewPassword), userResult.Salt)
|
|
if err != nil {
|
|
return response.Error(http.StatusInternalServerError, "Failed to encode password", err)
|
|
}
|
|
cmd.NewPassword = user.Password(encodedPassword)
|
|
|
|
if err := hs.userService.ChangePassword(c.Req.Context(), &cmd); err != nil {
|
|
return response.Error(http.StatusInternalServerError, "Failed to change user password", err)
|
|
}
|
|
|
|
if err := hs.loginAttemptService.Reset(c.Req.Context(), username); err != nil {
|
|
c.Logger.Warn("could not reset login attempts", "err", err, "username", username)
|
|
}
|
|
|
|
if err := hs.AuthTokenService.RevokeAllUserTokens(c.Req.Context(),
|
|
userResult.ID); err != nil {
|
|
return response.Error(http.StatusExpectationFailed,
|
|
"User password updated but unable to revoke user sessions", err)
|
|
}
|
|
|
|
return response.Success("User password changed")
|
|
}
|