mirror of
https://github.com/Xevion/go-ha.git
synced 2025-12-06 17:15:14 -06:00
166 lines
3.6 KiB
Go
166 lines
3.6 KiB
Go
package gomeassistant
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/golang-module/carbon"
|
|
)
|
|
|
|
type EntityListener struct {
|
|
entityIds []string
|
|
callback EntityListenerCallback
|
|
fromState string
|
|
toState string
|
|
betweenStart string
|
|
betweenEnd string
|
|
throttle time.Duration
|
|
lastRan carbon.Carbon
|
|
}
|
|
|
|
type EntityListenerCallback func(*Service, EntityData)
|
|
|
|
type EntityData struct {
|
|
TriggerEntityId string
|
|
FromState string
|
|
FromAttributes map[string]any
|
|
ToState string
|
|
ToAttributes map[string]any
|
|
LastChanged time.Time
|
|
}
|
|
|
|
type stateChangedMsg struct {
|
|
ID int `json:"id"`
|
|
Type string `json:"type"`
|
|
Event struct {
|
|
Data struct {
|
|
EntityID string `json:"entity_id"`
|
|
NewState msgState `json:"new_state"`
|
|
OldState msgState `json:"old_state"`
|
|
} `json:"data"`
|
|
EventType string `json:"event_type"`
|
|
Origin string `json:"origin"`
|
|
} `json:"event"`
|
|
}
|
|
|
|
type msgState struct {
|
|
EntityID string `json:"entity_id"`
|
|
LastChanged time.Time `json:"last_changed"`
|
|
State string `json:"state"`
|
|
Attributes map[string]any `json:"attributes"`
|
|
}
|
|
|
|
/* Methods */
|
|
|
|
func EntityListenerBuilder() elBuilder1 {
|
|
return elBuilder1{EntityListener{
|
|
lastRan: carbon.Now().StartOfCentury(),
|
|
}}
|
|
}
|
|
|
|
type elBuilder1 struct {
|
|
EntityListener
|
|
}
|
|
|
|
func (b elBuilder1) EntityIds(entityIds ...string) elBuilder2 {
|
|
if len(entityIds) == 0 {
|
|
log.Fatalln("must pass at least one entityId to EntityIds()")
|
|
} else {
|
|
b.EntityListener.entityIds = entityIds
|
|
}
|
|
return elBuilder2(b)
|
|
}
|
|
|
|
type elBuilder2 struct {
|
|
EntityListener
|
|
}
|
|
|
|
func (b elBuilder2) Call(callback EntityListenerCallback) elBuilder3 {
|
|
b.EntityListener.callback = callback
|
|
return elBuilder3(b)
|
|
}
|
|
|
|
type elBuilder3 struct {
|
|
EntityListener
|
|
}
|
|
|
|
func (b elBuilder3) OnlyBetween(start string, end string) elBuilder3 {
|
|
b.EntityListener.betweenStart = start
|
|
b.EntityListener.betweenEnd = end
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) OnlyAfter(start string) elBuilder3 {
|
|
b.EntityListener.betweenStart = start
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) OnlyBefore(end string) elBuilder3 {
|
|
b.EntityListener.betweenEnd = end
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) FromState(s string) elBuilder3 {
|
|
b.EntityListener.fromState = s
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) ToState(s string) elBuilder3 {
|
|
b.EntityListener.toState = s
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) Throttle(s TimeString) elBuilder3 {
|
|
d, err := time.ParseDuration(string(s))
|
|
if err != nil {
|
|
log.Fatalf("Couldn't parse string duration passed to Throttle(): \"%s\" see https://pkg.go.dev/time#ParseDuration for valid time units", s)
|
|
}
|
|
b.EntityListener.throttle = d
|
|
return b
|
|
}
|
|
|
|
func (b elBuilder3) Build() EntityListener {
|
|
return b.EntityListener
|
|
}
|
|
|
|
/* Functions */
|
|
func callEntityListeners(app *app, msgBytes []byte) {
|
|
msg := stateChangedMsg{}
|
|
json.Unmarshal(msgBytes, &msg)
|
|
data := msg.Event.Data
|
|
eid := data.EntityID
|
|
listeners, ok := app.entityListeners[eid]
|
|
if !ok {
|
|
// no listeners registered for this id
|
|
return
|
|
}
|
|
|
|
for _, l := range listeners {
|
|
// Check conditions
|
|
if c := checkWithinTimeRange(l.betweenStart, l.betweenEnd); c.fail {
|
|
return
|
|
}
|
|
if c := checkStatesMatch(l.fromState, data.OldState.State); c.fail {
|
|
return
|
|
}
|
|
if c := checkStatesMatch(l.toState, data.NewState.State); c.fail {
|
|
return
|
|
}
|
|
if c := checkThrottle(l.throttle, l.lastRan); c.fail {
|
|
return
|
|
}
|
|
|
|
entityData := EntityData{
|
|
TriggerEntityId: eid,
|
|
FromState: data.OldState.State,
|
|
FromAttributes: data.OldState.Attributes,
|
|
ToState: data.NewState.State,
|
|
ToAttributes: data.NewState.Attributes,
|
|
LastChanged: data.OldState.LastChanged,
|
|
}
|
|
go l.callback(app.service, entityData)
|
|
l.lastRan = carbon.Now()
|
|
}
|
|
}
|