Compare commits

...

3 Commits

Author SHA1 Message Date
7d8e5f8b92
deserialize as time 2020-03-24 00:26:22 -05:00
d3c56d3aa8
add validation to RGBColor 2020-03-24 00:26:06 -05:00
f947b9b1ab
add ls to lume 2020-03-24 00:25:46 -05:00
3 changed files with 105 additions and 12 deletions

View File

@ -5,6 +5,9 @@ import (
"fmt"
"os"
"strconv"
"time"
fc "github.com/fatih/color"
)
import (
@ -33,9 +36,9 @@ func main() {
var (
command string
selector *string
r *lifx.Response
err error
color lifx.HSBKColor
//r *lifx.Response
err error
color lifx.HSBKColor
)
accessToken := os.Getenv("LIFX_ACCESS_TOKEN")
@ -65,14 +68,29 @@ func main() {
command = flag.Arg(0)
fmt.Println(command)
fmt.Println(*selector)
c := lifx.NewClient(accessToken)
switch command {
case "toggle":
r, err = c.Toggle(*selector, 1)
_, err = c.Toggle(*selector, 1)
case "ls":
lights, err := c.ListLights(*selector)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Printf("total %d\n", len(lights))
for _, l := range lights {
fmt.Printf(
"%*s %*s %*s %*s %*s %-*s\n",
IdLen(lights), l.Id,
LocationLen(lights), l.Location.Name,
GroupLen(lights), l.Group.Name,
LabelLen(lights), l.Label,
LastSeenLen(lights), l.LastSeen.Local().Format(time.RFC3339),
PowerLen(lights), PowerColor(l.Power),
)
}
case "set-state":
setStateCommand.Parse(os.Args[4:])
@ -106,7 +124,7 @@ func main() {
state.Fast, err = strconv.ParseBool(fast)
}
r, err = c.SetState(*selector, state)
_, err = c.SetState(*selector, state)
case "set-white":
setWhiteCommand.Parse(os.Args[4:])
@ -143,9 +161,79 @@ func main() {
state.Fast, err = strconv.ParseBool(fast)
}
r, err = c.SetState(*selector, state)
_, err = c.SetState(*selector, state)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
}
func IdLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.Id) > length {
length = len(l.Id)
}
}
return length
}
func LocationLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.Location.Name) > length {
length = len(l.Location.Name)
}
}
return length
}
func GroupLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.Group.Name) > length {
length = len(l.Group.Name)
}
}
return length
}
func LabelLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.Label) > length {
length = len(l.Label)
}
}
return length
}
func LastSeenLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.LastSeen.Local().Format(time.RFC3339)) > length {
length = len(l.LastSeen.Local().Format(time.RFC3339))
}
}
return length
}
func PowerLen(lights []lifx.Light) int {
var length int
for _, l := range lights {
if len(l.Power) > length {
length = len(l.Power)
}
}
return length
}
func PowerColor(s string) string {
color := fc.New(fc.FgRed).SprintFunc()
if s == "on" {
color = fc.New(fc.FgGreen).SprintFunc()
}
fmt.Println(r)
fmt.Println(err)
return color(s)
}

View File

@ -78,6 +78,10 @@ var (
)
func NewRGBColor(r, g, b uint8) (*RGBColor, error) {
if (r < 0 || r > 255) && (g < 0 || r > 255) && (b < 0 || b > 255) {
return nil, errors.New("values must be between 0-255")
}
return &RGBColor{R: r, G: g, B: b}, nil
}

View File

@ -4,6 +4,7 @@ import (
//"crypto/tls"
"encoding/json"
"net/http"
"time"
)
const (
@ -49,7 +50,7 @@ type (
Group Selector `json:"group"`
Location Selector `json:"location"`
Product Product `json:"product"`
LastSeen string `json:"last_seen"`
LastSeen time.Time `json:"last_seen"`
SecondsLastSeen float64 `json:"seconds_last_seen"`
}