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"
|
|
|
|
|
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"
|
2018-01-03 07:04:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func createAdmin(store *storage.Storage) {
|
2018-01-03 07:18:24 +01:00
|
|
|
user := model.NewUser()
|
|
|
|
user.Username = os.Getenv("ADMIN_USERNAME")
|
|
|
|
user.Password = os.Getenv("ADMIN_PASSWORD")
|
|
|
|
user.IsAdmin = true
|
2018-01-03 07:04:48 +01:00
|
|
|
|
|
|
|
if user.Username == "" || user.Password == "" {
|
|
|
|
user.Username, user.Password = askCredentials()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := user.ValidateUserCreation(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2018-08-30 05:58:03 +02:00
|
|
|
if store.UserExists(user.Username) {
|
|
|
|
logger.Info(`User %q already exists, skipping creation`, user.Username)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-01-03 07:04:48 +01:00
|
|
|
if err := store.CreateUser(user); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|