2020-03-28 00:31:41 +00:00
|
|
|
package lumecmd
|
|
|
|
|
|
|
|
import (
|
2021-02-17 05:24:32 +00:00
|
|
|
"flag"
|
|
|
|
|
2021-02-15 01:02:26 +00:00
|
|
|
"git.kill0.net/chill9/lifx-go"
|
2020-03-28 00:31:41 +00:00
|
|
|
)
|
|
|
|
|
2021-02-17 05:24:32 +00:00
|
|
|
func NewCmdSetState() Command {
|
|
|
|
return Command{
|
|
|
|
Name: "set-state",
|
|
|
|
Func: SetStateCmd,
|
|
|
|
Flags: func() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("set-state", flag.ExitOnError)
|
|
|
|
|
|
|
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
|
|
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
|
|
|
|
|
|
|
power := fs.String("power", defaultPower, "power state")
|
|
|
|
fs.StringVar(power, "p", defaultPower, "power state")
|
|
|
|
|
|
|
|
color := fs.String("color", defaultColor, "color state")
|
|
|
|
fs.StringVar(color, "c", defaultColor, "color state")
|
|
|
|
|
|
|
|
brightness := fs.String("brightness", defaultBrightness, "brightness state")
|
|
|
|
fs.StringVar(brightness, "b", defaultBrightness, "brightness state")
|
|
|
|
|
|
|
|
duration := fs.Float64("duration", defaultDuration, "duration state")
|
|
|
|
fs.Float64Var(duration, "d", defaultDuration, "duration state")
|
|
|
|
|
|
|
|
infrared := fs.String("infrared", defaultInfrared, "infrared state")
|
|
|
|
fs.StringVar(infrared, "i", defaultInfrared, "infrared state")
|
|
|
|
|
|
|
|
fast := fs.Bool("fast", defaultFast, "fast state")
|
|
|
|
fs.BoolVar(fast, "f", defaultFast, "fast state")
|
|
|
|
|
|
|
|
return fs
|
|
|
|
}(),
|
|
|
|
Use: "[--selector <selector>] [--power (on|off)] [--color <color>] [--brightness <brightness>] [--duration <sec>] [--infrared <infrared>] [--fast]",
|
|
|
|
Short: "Set various state attributes",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
func SetStateCmd(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
|
2020-03-28 00:31:41 +00:00
|
|
|
state := lifx.State{}
|
2021-03-17 00:23:50 +00:00
|
|
|
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-28 00:31:41 +00:00
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
power := ctx.Flags.String("power")
|
2020-03-28 00:31:41 +00:00
|
|
|
if power != "" {
|
|
|
|
state.Power = power
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
color := ctx.Flags.String("color")
|
2020-03-28 00:31:41 +00:00
|
|
|
if color != "" {
|
|
|
|
state.Color = lifx.NamedColor(color)
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
brightnessFlag := ctx.Flags.String("brightness")
|
2020-03-28 00:31:41 +00:00
|
|
|
if brightnessFlag != "" {
|
2021-03-17 00:23:50 +00:00
|
|
|
brightness := ctx.Flags.Float64("brightness")
|
2020-03-28 00:31:41 +00:00
|
|
|
state.Brightness = brightness
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
duration := ctx.Flags.Float64("duration")
|
2020-03-28 00:31:41 +00:00
|
|
|
state.Duration = duration
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
infraredFlag := ctx.Flags.String("infrared")
|
2020-03-28 00:31:41 +00:00
|
|
|
if infraredFlag != "" {
|
2021-03-17 00:23:50 +00:00
|
|
|
infrared := ctx.Flags.Float64("infrared")
|
2020-03-28 00:31:41 +00:00
|
|
|
state.Infrared = infrared
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
fast := ctx.Flags.Bool("fast")
|
2020-03-28 00:31:41 +00:00
|
|
|
state.Fast = fast
|
|
|
|
|
2021-02-07 23:38:49 +00:00
|
|
|
if power == "" && color == "" && brightnessFlag == "" && infraredFlag == "" {
|
2021-03-17 00:23:50 +00:00
|
|
|
printCmdHelp(ctx.Name)
|
2021-02-07 23:38:49 +00:00
|
|
|
return ExitFailure, nil
|
|
|
|
}
|
|
|
|
|
2020-03-28 00:31:41 +00:00
|
|
|
r, err := c.SetState(selector, state)
|
|
|
|
if err != nil {
|
2021-01-31 17:08:24 +00:00
|
|
|
return ExitFailure, err
|
2020-03-28 00:31:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !fast {
|
2021-03-13 22:20:18 +00:00
|
|
|
p = NewPrinter(format)
|
|
|
|
p.Results(r.Results)
|
2020-03-28 00:31:41 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 03:08:13 +00:00
|
|
|
return ExitSuccess, nil
|
2020-03-28 00:31:41 +00:00
|
|
|
}
|