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
|
|
|
)
|
|
|
|
|
2024-03-23 14:05:05 -07:00
|
|
|
func createAdminUserFromEnvironmentVariables(store *storage.Storage) {
|
|
|
|
createAdminUser(store, config.Opts.AdminUsername(), config.Opts.AdminPassword())
|
|
|
|
}
|
|
|
|
|
|
|
|
func createAdminUserFromInteractiveTerminal(store *storage.Storage) {
|
|
|
|
username, password := askCredentials()
|
|
|
|
createAdminUser(store, username, password)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createAdminUser(store *storage.Storage, username, password string) {
|
2021-01-03 21:20:21 -08:00
|
|
|
userCreationRequest := &model.UserCreationRequest{
|
2024-03-23 14:05:05 -07:00
|
|
|
Username: username,
|
|
|
|
Password: password,
|
2021-01-03 21:20:21 -08:00
|
|
|
IsAdmin: true,
|
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
|
|
|
}
|
|
|
|
|
2024-03-23 14:05:05 -07:00
|
|
|
if user, err := store.CreateUser(userCreationRequest); err != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
printErrorAndExit(err)
|
2024-03-23 14:05:05 -07:00
|
|
|
} else {
|
|
|
|
slog.Info("Created new admin user",
|
|
|
|
slog.String("username", user.Username),
|
|
|
|
slog.Int64("user_id", user.ID),
|
|
|
|
)
|
2018-01-02 22:04:48 -08:00
|
|
|
}
|
|
|
|
}
|