86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright © 2022 Roberto Hidalgo <nidito@un.rob.mx>
|
|
package hue
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.rob.mx/nidito/chinampa"
|
|
"git.rob.mx/nidito/chinampa/pkg/command"
|
|
"git.rob.mx/nidito/puerta/internal/door"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
chinampa.Register(setupHueCommand)
|
|
chinampa.Register(testHueCommand)
|
|
}
|
|
|
|
var setupHueCommand = &command.Command{
|
|
Path: []string{"hue", "setup"},
|
|
Summary: "Creates a local hue user and finds out available plugs",
|
|
Description: "",
|
|
Arguments: command.Arguments{
|
|
{
|
|
Name: "ip",
|
|
Description: "The ip address of the bridge",
|
|
Required: true,
|
|
},
|
|
{
|
|
Name: "domain",
|
|
Description: "the domain or application name to use when registering",
|
|
Default: "puerta.nidi.to",
|
|
},
|
|
},
|
|
Action: func(cmd *command.Command) error {
|
|
ip := cmd.Arguments[0].ToValue().(string)
|
|
domain := cmd.Arguments[1].ToValue().(string)
|
|
|
|
logrus.Infof("Setting up with bridge at %s, app %s", ip, domain)
|
|
d := door.NewHue(map[string]any{
|
|
"ip": ip,
|
|
"username": "",
|
|
"device": -1,
|
|
}).(*door.Hue)
|
|
|
|
return d.Setup(os.Args[2])
|
|
},
|
|
}
|
|
|
|
var testHueCommand = &command.Command{
|
|
Path: []string{"hue", "test"},
|
|
Summary: "Uses a given configuration to open door",
|
|
Description: "",
|
|
Arguments: command.Arguments{
|
|
{
|
|
Name: "ip",
|
|
Description: "The ip address of the bridge",
|
|
Required: true,
|
|
},
|
|
{
|
|
Name: "username",
|
|
Description: "An existing bridge username",
|
|
Required: true,
|
|
},
|
|
{
|
|
Name: "device",
|
|
Description: "The device ID to test",
|
|
Required: true,
|
|
},
|
|
},
|
|
Action: func(cmd *command.Command) error {
|
|
ip := cmd.Arguments[0].ToValue().(string)
|
|
username := cmd.Arguments[1].ToValue().(string)
|
|
device := cmd.Arguments[2].ToValue().(string)
|
|
|
|
logrus.Infof("Testing bridge at %s, username %s, device %s", ip, username, device)
|
|
d := door.NewHue(map[string]any{
|
|
"ip": ip,
|
|
"username": username,
|
|
"device": device,
|
|
})
|
|
|
|
return door.RequestToEnter(d, "test")
|
|
},
|
|
}
|