Added hue bridge discovery and check to make sure we are connected
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dreaded_X 2022-09-18 04:03:58 +02:00
parent 8b9e139b36
commit 76a8c5e620
Signed by: Dreaded_X
GPG Key ID: 76BDEC4E165D8AD9
3 changed files with 44 additions and 8 deletions

3
go.mod
View File

@ -5,10 +5,9 @@ go 1.17
require (
github.com/eclipse/paho.mqtt.golang v1.3.5
github.com/joho/godotenv v1.4.0
github.com/kelvins/sunrisesunset v0.0.0-20210220141756-39fa1bd816d5
)
require (
github.com/gorilla/websocket v1.4.2 // indirect
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1 // indirect
)

10
go.sum
View File

@ -4,11 +4,15 @@ github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0U
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/joho/godotenv v1.4.0 h1:3l4+N6zfMWnkbPEXKng2o2/MR5mSwTrBih4ZEkkz1lg=
github.com/joho/godotenv v1.4.0/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
github.com/kelvins/sunrisesunset v0.0.0-20210220141756-39fa1bd816d5 h1:ouekCqYkMw4QXFCaLyYqjBe99/MUW4Qf3DJhCRh1G18=
github.com/kelvins/sunrisesunset v0.0.0-20210220141756-39fa1bd816d5/go.mod h1:3oZ7G+fb8Z8KF+KPHxeDO3GWpEjgvk/f+d/yaxmDRT4=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 h1:Jcxah/M+oLZ/R4/z5RzfPzGbPXnVDPkEDtf2JnuxN+U=
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1 h1:4qWs8cYYH6PoEFy4dfhDFgoMGkwAcETd+MmPdCPMzUc=
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=

39
main.go
View File

@ -2,7 +2,9 @@ package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"os/signal"
@ -115,10 +117,41 @@ func (ntfy *ntfy) notifyPresence(home bool) {
func connectToHue() Hue {
login, _ := os.LookupEnv("HUE_BRIDGE")
// @TODO Discover the bridge here
hue := Hue{ip: "10.0.0.146", login: login}
resp, err := http.Get("https://discovery.meethue.com/")
if err != nil {
panic(err)
}
// @TODO Make sure we actually are connected here
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
var bridges []struct {
ID string `json:"id"`
InternalIPAddress string `json:"internalipaddress"`
Port int `json:"port"`
}
err = json.Unmarshal(body, &bridges)
if err != nil {
panic(err)
}
if len(bridges) != 1 {
fmt.Println(bridges)
panic("Expected one bridge!")
}
hue := Hue{ip: bridges[0].InternalIPAddress, login: login}
resp, err = http.Get("https://discovery.meethue.com/")
if err != nil {
panic(err)
}
if resp.Status != "200 OK" {
panic("Check failed")
}
return hue
}