mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-27 20:25:41 +00:00
81 lines
2.3 KiB
Go
81 lines
2.3 KiB
Go
package create
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/charmbracelet/huh"
|
|
"github.com/rs/zerolog"
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
var interactive bool
|
|
var docker bool
|
|
|
|
// i stands for input
|
|
var iUsername string
|
|
var iPassword string
|
|
|
|
var CreateCmd = &cobra.Command{
|
|
Use: "create",
|
|
Short: "Create a user",
|
|
Long: `Create a user either interactively or by passing flags.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
log.Logger = log.Level(zerolog.InfoLevel)
|
|
|
|
if interactive {
|
|
form := huh.NewForm(
|
|
huh.NewGroup(
|
|
huh.NewInput().Title("Username").Value(&iUsername).Validate((func(s string) error {
|
|
if s == "" {
|
|
return errors.New("username cannot be empty")
|
|
}
|
|
return nil
|
|
})),
|
|
huh.NewInput().Title("Password").Value(&iPassword).Validate((func(s string) error {
|
|
if s == "" {
|
|
return errors.New("password cannot be empty")
|
|
}
|
|
return nil
|
|
})),
|
|
huh.NewSelect[bool]().Title("Format the output for docker?").Options(huh.NewOption("Yes", true), huh.NewOption("No", false)).Value(&docker),
|
|
),
|
|
)
|
|
var baseTheme *huh.Theme = huh.ThemeBase()
|
|
err := form.WithTheme(baseTheme).Run()
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Form failed")
|
|
}
|
|
}
|
|
|
|
if iUsername == "" || iPassword == "" {
|
|
log.Fatal().Err(errors.New("error invalid input")).Msg("Username and password cannot be empty")
|
|
}
|
|
|
|
log.Info().Str("username", iUsername).Str("password", iPassword).Bool("docker", docker).Msg("Creating user")
|
|
|
|
password, err := bcrypt.GenerateFromPassword([]byte(iPassword), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("Failed to hash password")
|
|
}
|
|
|
|
// If docker format is enabled, escape the dollar sign
|
|
passwordString := string(password)
|
|
if docker {
|
|
passwordString = strings.ReplaceAll(passwordString, "$", "$$")
|
|
}
|
|
|
|
log.Info().Str("user", fmt.Sprintf("%s:%s", iUsername, passwordString)).Msg("User created")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
CreateCmd.Flags().BoolVarP(&interactive, "interactive", "i", false, "Create a user interactively")
|
|
CreateCmd.Flags().BoolVar(&docker, "docker", false, "Format output for docker")
|
|
CreateCmd.Flags().StringVar(&iUsername, "username", "", "Username")
|
|
CreateCmd.Flags().StringVar(&iPassword, "password", "", "Password")
|
|
}
|