lume/cmd/ls.go

50 lines
903 B
Go
Raw Normal View History

2020-03-25 00:12:35 +00:00
package lumecmd
2021-03-11 02:57:05 +00:00
import (
"flag"
"fmt"
2021-03-11 02:57:05 +00:00
)
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")
return fs
}(),
Use: "[--selector=<selector>]",
Short: "List the lights",
}
}
2021-03-17 00:23:50 +00:00
func LsCmd(ctx Context) (int, error) {
2021-03-13 22:20:18 +00:00
var p Printer
2021-03-17 00:23:50 +00:00
c := ctx.Client
selector := ctx.Flags.String("selector")
2021-04-11 02:05:05 +00:00
format, err := getOutputFormatFromFlags(ctx.Flags)
if err != nil {
return ExitFailure, err
}
2021-03-11 02:57:05 +00:00
2021-03-17 00:23:50 +00:00
if format == "" && ctx.Config.OutputFormat != "" {
format = ctx.Config.OutputFormat
2021-03-11 02:57:05 +00:00
}
2020-03-27 00:05:50 +00:00
lights, err := c.ListLights(selector)
2021-03-29 22:22:22 +00:00
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
2021-03-13 22:20:18 +00:00
p = NewPrinter(format)
fmt.Print(p.Lights(lights))
2021-03-11 02:57:05 +00:00
return ExitSuccess, nil
2020-03-25 00:12:35 +00:00
}