122 lines
3.1 KiB
Go
122 lines
3.1 KiB
Go
|
//usr/bin/env go run "$0" "$@"; exit
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// AutheliaCommandDefinition is the definition of one authelia-scripts command.
|
||
|
type AutheliaCommandDefinition struct {
|
||
|
Name string
|
||
|
Short string
|
||
|
Long string
|
||
|
CommandLine string
|
||
|
Args cobra.PositionalArgs
|
||
|
Func func(cmd *cobra.Command, args []string)
|
||
|
SubCommands []*cobra.Command
|
||
|
}
|
||
|
|
||
|
// CobraCommands list of cobra commands
|
||
|
type CobraCommands = []*cobra.Command
|
||
|
|
||
|
// Commands is the list of commands of authelia-scripts
|
||
|
var Commands = []AutheliaCommandDefinition{
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "bootstrap",
|
||
|
Short: "Prepare environment for development and testing.",
|
||
|
Long: `Prepare environment for development and testing. This command prepares docker
|
||
|
images and download tools like Kind for Kubernetes testing.`,
|
||
|
Func: Bootstrap,
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "build",
|
||
|
Short: "Build Authelia binary and static assets",
|
||
|
Func: Build,
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "clean",
|
||
|
Short: "Clean build artifacts",
|
||
|
Func: Clean,
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "docker",
|
||
|
Short: "Commands related to building and publishing docker image",
|
||
|
SubCommands: CobraCommands{DockerBuildCmd, DockerPushCmd},
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "hash-password [password]",
|
||
|
Short: "Compute hash of a password for creating a file-based users database",
|
||
|
Func: HashPassword,
|
||
|
Args: cobra.MinimumNArgs(1),
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "serve [config]",
|
||
|
Short: "Serve compiled version of Authelia",
|
||
|
Func: ServeCmd,
|
||
|
Args: cobra.MinimumNArgs(1),
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "suites",
|
||
|
Short: "Compute hash of a password for creating a file-based users database",
|
||
|
SubCommands: CobraCommands{SuitesCleanCmd, SuitesListCmd, SuitesStartCmd, SuitesTestCmd},
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "ci",
|
||
|
Short: "Run continuous integration script",
|
||
|
Func: RunCI,
|
||
|
},
|
||
|
AutheliaCommandDefinition{
|
||
|
Name: "unittest",
|
||
|
Short: "Run unit tests",
|
||
|
Func: RunUnitTest,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
var rootCmd = &cobra.Command{Use: "authelia-scripts"}
|
||
|
cobraCommands := make([]*cobra.Command, 0)
|
||
|
|
||
|
for _, autheliaCommand := range Commands {
|
||
|
var fn func(cobraCmd *cobra.Command, args []string)
|
||
|
|
||
|
if autheliaCommand.CommandLine != "" {
|
||
|
cmdline := autheliaCommand.CommandLine
|
||
|
fn = func(cobraCmd *cobra.Command, args []string) {
|
||
|
cmd := CommandWithStdout(cmdline, args...)
|
||
|
err := cmd.Run()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|
||
|
} else if autheliaCommand.Func != nil {
|
||
|
fn = autheliaCommand.Func
|
||
|
}
|
||
|
|
||
|
command := &cobra.Command{
|
||
|
Use: autheliaCommand.Name,
|
||
|
Short: autheliaCommand.Short,
|
||
|
}
|
||
|
|
||
|
if autheliaCommand.Long != "" {
|
||
|
command.Long = autheliaCommand.Long
|
||
|
}
|
||
|
|
||
|
if fn != nil {
|
||
|
command.Run = fn
|
||
|
}
|
||
|
|
||
|
if autheliaCommand.Args != nil {
|
||
|
command.Args = autheliaCommand.Args
|
||
|
}
|
||
|
|
||
|
if autheliaCommand.SubCommands != nil {
|
||
|
command.AddCommand(autheliaCommand.SubCommands...)
|
||
|
}
|
||
|
|
||
|
cobraCommands = append(cobraCommands, command)
|
||
|
}
|
||
|
rootCmd.AddCommand(cobraCommands...)
|
||
|
rootCmd.Execute()
|
||
|
}
|