miniflux-v2/cli/reset_password.go

45 lines
1.0 KiB
Go
Raw Normal View History

2018-01-03 07:18:24 +01:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package cli // import "miniflux.app/cli"
2018-01-03 07:18:24 +01:00
import (
"fmt"
"os"
"miniflux.app/model"
2018-08-25 06:51:50 +02:00
"miniflux.app/storage"
"miniflux.app/validator"
2018-01-03 07:18:24 +01:00
)
func resetPassword(store *storage.Storage) {
username, password := askCredentials()
user, err := store.UserByUsername(username)
if err != nil {
2018-12-10 03:05:40 +01:00
fmt.Fprintf(os.Stderr, "%v\n", err)
2018-01-03 07:18:24 +01:00
os.Exit(1)
}
if user == nil {
2018-12-10 03:05:40 +01:00
fmt.Fprintf(os.Stderr, "User not found!\n")
2018-01-03 07:18:24 +01:00
os.Exit(1)
}
userModificationRequest := &model.UserModificationRequest{
Password: &password,
}
if validationErr := validator.ValidateUserModification(store, user.ID, userModificationRequest); validationErr != nil {
fmt.Fprintf(os.Stderr, "%s\n", validationErr)
2018-01-03 07:18:24 +01:00
os.Exit(1)
}
2021-05-03 00:36:53 +02:00
user.Password = password
2018-01-03 07:18:24 +01:00
if err := store.UpdateUser(user); err != nil {
2018-12-10 03:05:40 +01:00
fmt.Fprintf(os.Stderr, "%v\n", err)
2018-01-03 07:18:24 +01:00
os.Exit(1)
}
fmt.Println("Password changed!")
}