2020-03-25 00:12:35 +00:00
|
|
|
package lumecmd
|
|
|
|
|
2021-03-11 02:57:05 +00:00
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
)
|
2021-02-17 05:24:32 +00:00
|
|
|
|
|
|
|
func NewCmdLs() Command {
|
|
|
|
return Command{
|
|
|
|
Name: "ls",
|
|
|
|
Func: LsCmd,
|
|
|
|
Flags: func() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("ls", flag.ExitOnError)
|
|
|
|
|
|
|
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
|
|
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
|
|
|
|
2021-03-11 02:57:05 +00:00
|
|
|
fs.String("format", defaultOutputFormat, "Set the output format")
|
|
|
|
|
2021-02-17 05:24:32 +00:00
|
|
|
return fs
|
|
|
|
}(),
|
|
|
|
Use: "[--selector=<selector>]",
|
|
|
|
Short: "List the lights",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-29 05:08:17 +00:00
|
|
|
func LsCmd(args CmdArgs) (int, error) {
|
2020-03-25 00:12:35 +00:00
|
|
|
c := args.Client
|
2020-03-27 00:05:50 +00:00
|
|
|
selector := args.Flags.String("selector")
|
2021-03-11 02:57:05 +00:00
|
|
|
format := args.Flags.String("format")
|
|
|
|
|
|
|
|
if format == "" && args.Config.OutputFormat != "" {
|
|
|
|
format = args.Config.OutputFormat
|
|
|
|
}
|
|
|
|
|
2020-03-27 00:05:50 +00:00
|
|
|
lights, err := c.ListLights(selector)
|
2020-03-25 00:12:35 +00:00
|
|
|
if err != nil {
|
2021-01-31 17:08:24 +00:00
|
|
|
return ExitFailure, err
|
2020-03-25 00:12:35 +00:00
|
|
|
}
|
2021-03-11 02:57:05 +00:00
|
|
|
|
|
|
|
switch format {
|
|
|
|
case "table":
|
|
|
|
PrintLightsTable(lights)
|
|
|
|
default:
|
|
|
|
PrintLights(lights)
|
|
|
|
}
|
|
|
|
|
2021-01-18 03:08:13 +00:00
|
|
|
return ExitSuccess, nil
|
2020-03-25 00:12:35 +00:00
|
|
|
}
|