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
|
|
|
)
|
|
|
|
|
|
|
|
func createAdmin(store *storage.Storage) {
|
2021-01-04 06:20:21 +01:00
|
|
|
userCreationRequest := &model.UserCreationRequest{
|
|
|
|
Username: config.Opts.AdminUsername(),
|
|
|
|
Password: config.Opts.AdminPassword(),
|
|
|
|
IsAdmin: true,
|
2018-01-03 07:04:48 +01:00
|
|
|
}
|
|
|
|
|
2021-01-04 06:20:21 +01:00
|
|
|
if userCreationRequest.Username == "" || userCreationRequest.Password == "" {
|
|
|
|
userCreationRequest.Username, userCreationRequest.Password = askCredentials()
|
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
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := store.CreateUser(userCreationRequest); err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
printErrorAndExit(err)
|
2018-01-03 07:04:48 +01:00
|
|
|
}
|
|
|
|
}
|