lume/cmd/toggle.go

53 lines
1.2 KiB
Go
Raw Permalink Normal View History

2020-03-27 00:05:50 +00:00
package lumecmd
2021-02-17 05:24:32 +00:00
import (
"flag"
)
func NewCmdToggle() Command {
return Command{
Name: "toggle",
Func: ToggleCmd,
Flags: func() *flag.FlagSet {
fs := flag.NewFlagSet("toggle", 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")
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>] [--duration <sec>]",
Short: "Toggle the power on/off",
}
}
2020-03-29 05:08:17 +00:00
func ToggleCmd(args CmdArgs) (int, error) {
2020-03-27 00:05:50 +00:00
c := args.Client
duration := args.Flags.Float64("duration")
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
r, err := c.Toggle(selector, duration)
if err != nil {
2021-01-31 17:08:24 +00:00
return ExitFailure, err
2020-03-27 00:05:50 +00:00
}
2021-03-11 02:57:05 +00:00
switch format {
case "table":
PrintResultsTable(r.Results)
default:
PrintResults(r.Results)
}
return ExitSuccess, nil
2020-03-27 00:05:50 +00:00
}