2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-01-03 07:04:48 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package cli // import "miniflux.app/v2/internal/cli"
|
2018-01-03 07:04:48 +01:00
|
|
|
|
|
|
|
import (
|
2023-09-25 01:32:09 +02:00
|
|
|
"log/slog"
|
2018-01-03 07:04:48 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/storage"
|
|
|
|
"miniflux.app/v2/internal/validator"
|
2018-01-03 07:04:48 +01:00
|
|
|
)
|
|
|
|
|
2024-03-23 22:05:05 +01: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-04 06:20:21 +01:00
|
|
|
userCreationRequest := &model.UserCreationRequest{
|
2024-03-23 22:05:05 +01:00
|
|
|
Username: username,
|
|
|
|
Password: password,
|
2021-01-04 06:20:21 +01:00
|
|
|
IsAdmin: true,
|
2018-01-03 07:04:48 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 06:20:21 +01:00
|
|
|
if store.UserExists(userCreationRequest.Username) {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Info("Skipping admin user creation because it already exists",
|
|
|
|
slog.String("username", userCreationRequest.Username),
|
|
|
|
)
|
2018-08-30 05:58:03 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 06:20:21 +01:00
|
|
|
if validationErr := validator.ValidateUserCreationWithPassword(store, userCreationRequest); validationErr != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
printErrorAndExit(validationErr.Error())
|
2021-01-04 06:20:21 +01:00
|
|
|
}
|
|
|
|
|
2024-03-23 22:05:05 +01:00
|
|
|
if user, err := store.CreateUser(userCreationRequest); err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
printErrorAndExit(err)
|
2024-03-23 22:05:05 +01:00
|
|
|
} else {
|
|
|
|
slog.Info("Created new admin user",
|
|
|
|
slog.String("username", user.Username),
|
|
|
|
slog.Int64("user_id", user.ID),
|
|
|
|
)
|
2018-01-03 07:04:48 +01:00
|
|
|
}
|
|
|
|
}
|