2018-01-03 07:04:48 +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:04:48 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2020-06-30 05:49:05 +02:00
|
|
|
"miniflux.app/config"
|
2018-08-30 05:58:03 +02:00
|
|
|
"miniflux.app/logger"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/model"
|
|
|
|
"miniflux.app/storage"
|
2021-01-04 06:20:21 +01:00
|
|
|
"miniflux.app/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) {
|
|
|
|
logger.Info(`User %q already exists, skipping creation`, 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 {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s\n", validationErr)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := store.CreateUser(userCreationRequest); err != nil {
|
2018-12-10 03:05:40 +01:00
|
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
2018-01-03 07:04:48 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|