lume/cmd/poweroff.go

42 lines
982 B
Go
Raw Normal View History

2021-01-14 06:04:05 +00:00
package lumecmd
import (
2021-02-17 05:24:32 +00:00
"flag"
"git.kill0.net/chill9/lifx-go"
2021-01-14 06:04:05 +00:00
)
2021-02-17 05:24:32 +00:00
func NewCmdPoweroff() Command {
return Command{
Name: "poweroff",
Func: PoweroffCmd,
Flags: func() *flag.FlagSet {
fs := flag.NewFlagSet("poweroff", 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-01-14 06:04:05 +00:00
func PoweroffCmd(args CmdArgs) (int, error) {
c := args.Client
duration := args.Flags.Float64("duration")
selector := args.Flags.String("selector")
state := lifx.State{Power: "off", Duration: duration}
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
}
PrintResults(r.Results)
return ExitSuccess, nil
2021-01-14 06:04:05 +00:00
}