2021-01-14 06:04:05 +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"
|
2021-01-14 06:04:05 +00:00
|
|
|
)
|
|
|
|
|
2021-02-17 05:24:32 +00:00
|
|
|
func NewCmdPoweron() Command {
|
|
|
|
return Command{
|
|
|
|
Name: "poweron",
|
|
|
|
Func: PoweronCmd,
|
|
|
|
Flags: func() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("poweron", flag.ExitOnError)
|
|
|
|
|
|
|
|
duration := fs.Float64("duration", defaultDuration, "Set the duration")
|
|
|
|
fs.Float64Var(duration, "d", defaultDuration, "Set the duration")
|
|
|
|
|
|
|
|
selector := fs.String("selector", defaultSelector, "Set the selector")
|
|
|
|
fs.StringVar(selector, "s", defaultSelector, "Set the selector")
|
|
|
|
|
|
|
|
return fs
|
|
|
|
}(),
|
|
|
|
Use: "[--selector <selector>] [--duration <sec>]",
|
|
|
|
Short: "Power on",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 00:23:50 +00:00
|
|
|
func PoweronCmd(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
|
|
|
|
duration := ctx.Flags.Float64("duration")
|
|
|
|
selector := ctx.Flags.String("selector")
|
2021-01-14 06:04:05 +00:00
|
|
|
state := lifx.State{Power: "on", Duration: duration}
|
2021-04-11 02:05:05 +00:00
|
|
|
format, err := getOutputFormatFromFlags(ctx.Flags)
|
|
|
|
if err != nil {
|
|
|
|
return ExitFailure, err
|
|
|
|
}
|
2021-01-14 06:04: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
|
|
|
}
|
|
|
|
|
2021-01-14 06:04:05 +00:00
|
|
|
r, err := c.SetState(selector, state)
|
|
|
|
if err != nil {
|
2021-01-31 17:08:24 +00:00
|
|
|
return ExitFailure, err
|
2021-01-14 06:04:05 +00:00
|
|
|
}
|
2021-03-11 02:57:05 +00:00
|
|
|
|
2021-03-13 22:20:18 +00:00
|
|
|
p = NewPrinter(format)
|
|
|
|
p.Results(r.Results)
|
2021-03-11 02:57:05 +00:00
|
|
|
|
2021-01-18 03:08:13 +00:00
|
|
|
return ExitSuccess, nil
|
2021-01-14 06:04:05 +00:00
|
|
|
}
|