mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 06:52:42 +08:00

* 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>
79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/fatih/color"
|
|
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/logger"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/utils"
|
|
"github.com/grafana/grafana/pkg/server"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
"github.com/grafana/grafana/pkg/util"
|
|
)
|
|
|
|
const DefaultAdminUserId = 1
|
|
|
|
func resetPasswordCommand(c utils.CommandLine, runner server.Runner) error {
|
|
var newPassword user.Password
|
|
adminId := int64(c.Int("user-id"))
|
|
|
|
if c.Bool("password-from-stdin") {
|
|
logger.Infof("New Password: ")
|
|
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
if ok := scanner.Scan(); !ok {
|
|
if err := scanner.Err(); err != nil {
|
|
return fmt.Errorf("can't read password from stdin: %w", err)
|
|
}
|
|
return fmt.Errorf("can't read password from stdin")
|
|
}
|
|
newPassword = user.Password(scanner.Text())
|
|
} else {
|
|
newPassword = user.Password(c.Args().First())
|
|
}
|
|
|
|
if err := newPassword.Validate(runner.Cfg); err != nil {
|
|
return fmt.Errorf("the new password doesn't meet the password policy criteria")
|
|
}
|
|
|
|
err := resetPassword(adminId, newPassword, runner.UserService)
|
|
if err == nil {
|
|
logger.Infof("\n")
|
|
logger.Infof("Admin password changed successfully %s", color.GreenString("✔"))
|
|
}
|
|
return err
|
|
}
|
|
|
|
func resetPassword(adminId int64, newPassword user.Password, userSvc user.Service) error {
|
|
userQuery := user.GetUserByIDQuery{ID: adminId}
|
|
usr, err := userSvc.GetByID(context.Background(), &userQuery)
|
|
if err != nil {
|
|
return fmt.Errorf("could not read user from database. Error: %v", err)
|
|
}
|
|
if !usr.IsAdmin {
|
|
return ErrMustBeAdmin
|
|
}
|
|
|
|
passwordHashed, err := util.EncodePassword(string(newPassword), usr.Salt)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmd := user.ChangeUserPasswordCommand{
|
|
UserID: adminId,
|
|
NewPassword: user.Password(passwordHashed),
|
|
}
|
|
|
|
if err := userSvc.ChangePassword(context.Background(), &cmd); err != nil {
|
|
return fmt.Errorf("failed to update user password: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var ErrMustBeAdmin = fmt.Errorf("reset-admin-password can only be used to reset an admin user account")
|