2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-01-02 22:04:48 -08:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
package cli // import "miniflux.app/v2/internal/cli"
|
2018-01-02 22:04:48 -08:00
|
|
|
|
|
|
|
import (
|
2023-09-24 16:32:09 -07:00
|
|
|
"log/slog"
|
2018-01-02 22:04:48 -08:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/storage"
|
|
|
|
"miniflux.app/v2/internal/validator"
|
2018-01-02 22:04:48 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func createAdmin(store *storage.Storage) {
|
2021-01-03 21:20:21 -08:00
|
|
|
userCreationRequest := &model.UserCreationRequest{
|
|
|
|
Username: config.Opts.AdminUsername(),
|
|
|
|
Password: config.Opts.AdminPassword(),
|
|
|
|
IsAdmin: true,
|
2018-01-02 22:04:48 -08:00
|
|
|
}
|
|
|
|
|
2021-01-03 21:20:21 -08:00
|
|
|
if userCreationRequest.Username == "" || userCreationRequest.Password == "" {
|
|
|
|
userCreationRequest.Username, userCreationRequest.Password = askCredentials()
|
2018-01-02 22:04:48 -08:00
|
|
|
}
|
|
|
|
|
2021-01-03 21:20:21 -08:00
|
|
|
if store.UserExists(userCreationRequest.Username) {
|
2023-09-24 16:32:09 -07:00
|
|
|
slog.Info("Skipping admin user creation because it already exists",
|
|
|
|
slog.String("username", userCreationRequest.Username),
|
|
|
|
)
|
2018-08-29 20:58:03 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:20:21 -08:00
|
|
|
if validationErr := validator.ValidateUserCreationWithPassword(store, userCreationRequest); validationErr != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
printErrorAndExit(validationErr.Error())
|
2021-01-03 21:20:21 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := store.CreateUser(userCreationRequest); err != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
printErrorAndExit(err)
|
2018-01-02 22:04:48 -08:00
|
|
|
}
|
|
|
|
}
|