-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.go
272 lines (233 loc) · 7.09 KB
/
groups.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
package hue
import (
"encoding/json"
"fmt"
)
const groupsEndpoint = "/groups"
// -------------------------------------------------------------
// ~ Types
// -------------------------------------------------------------
// GroupType hue group type
type GroupType int
// RoomClasses in hue
type RoomClasses int
const (
// All is a group containing all devices cannot be created
All GroupType = iota
Luminaire
Lightsource
LightGroup
Room
Entertainment
)
const (
LivingRoom RoomClasses = iota
Kitchen
Dining
Bedroom
KidsBedroom
Bathroom
Nursery
Recreation
Office
Gym
Hallway
Toilet
FrontDoor
Garage
Terrace
Garden
Driveway
Carport
Other
)
// Group hue type
type Group struct {
Name string `json:"name"`
LightIDs []string `json:"lights"`
SensorIDs []string `json:"sensors"`
Type string `json:"type"`
State *GroupState `json:"state"`
Recycle bool `json:"recycle"`
ModelID string `json:"modelid,omitempty"`
UniqueID string `json:"uniqueid,omitempty"`
Class string `json:"class,omitempty"`
Action LightState `json:"action"`
Presence *GroupPresence `json:"presence,omitempty"`
LightLevel *GroupLightLevel `json:"lightlevel,omitempty"`
}
// GroupPresence only exists if sensors array contains a presence sensor of type “ZLLPresence”, “CLIPPresence” or “Geofence”. This object contains a state object which contains the aggregated state of the sensors
type GroupPresence struct {
// State?
LastUpdated Time `json:"lastupdated"`
Presence bool `json:"presence"`
PresenceAll bool `json:"presence_all"`
}
// GroupLightLevel light level struct
type GroupLightLevel struct {
// State?
LastUpdated Time `json:"lastupdated"`
Dark bool `json:"dark"`
DarkAll bool `json:"dark_all"`
Daylight bool `json:"daylight"`
DaylightAny bool `json:"daylight_any"`
Level int `json:"lightlevel"`
LevelMin int `json:"lightlevel_min"`
LevelMax int `json:"lightlevel_max"`
}
// GroupCreateResponse is returned after a create group request
type GroupCreateResponse struct {
Success struct {
ID string `json:"id"`
} `json:"success"`
}
// GroupState describes the state of a group
type GroupState struct {
AllOn bool `json:"all_on"`
AnyOn bool `json:"any_on"`
}
// GroupAttributes that can be changed
type GroupAttributes struct {
Name string `json:"name,omitempty"`
LightIDs []string `json:"lights,omitempty"`
Class string `json:"class"`
}
// GroupAction is struct for changing a state of a hue group
// TODO: merge with light actions maybe?
type GroupAction struct {
On string `json:"on,omitempty"`
Bri uint8 `json:"bri,omitempty"`
Hue uint16 `json:"hue,omitempty"`
Sat uint8 `json:"sat,omitempty"`
Xy []float32 `json:"xy,omitempty"`
Ct uint16 `json:"ct,omitempty"`
Alert string `json:"alert,omitempty"`
Effect string `json:"effect,omitempty"`
TransitionTime uint16 `json:"transitiontime,omitempty"`
BriInc int16 `json:"bri_inc,omitempty"`
SatInc int16 `json:"sat_inc,omitempty"`
HueInc int `json:"hue_inc,omitempty"`
CtInc int `json:"ct_inc,omitempty"`
XyInc int8 `json:"xy_inc,omitempty"`
Scene string `json:"scene,omitempty"`
}
// -------------------------------------------------------------
// ~ String conversions
// -------------------------------------------------------------
func (g GroupType) String() string {
return [...]string{"0", "Luminaire", "Lightsource", "LightGroup", "Room", "Entertainment"}[g]
}
func (r RoomClasses) String() string {
return [...]string{
"Living room",
"Kitchen",
"Dining",
"Bedroom",
"Kids bedroom",
"Bathroom",
"Nursery",
"Recreation",
"Office",
"Gym",
"Hallway",
"Toilet",
"Front door",
"Garage",
"Terrace",
"Garden",
"Driveway",
"Carport",
"Other",
}[r]
}
// -------------------------------------------------------------
// ~ Public methods
// -------------------------------------------------------------
// CreateGroup creates a new hue group. For rooms please use the CreateRoom call since it also needs a class
func (b *Bridge) CreateGroup(name string, groupType GroupType, lights []string) (string, error) {
// perform some checks
if groupType != Lightsource && groupType != LightGroup && groupType != Entertainment {
return "", fmt.Errorf("only Lightsource, LightGroup or Entertainment type groups can be created, to create a room group please use CreateRoom (As of now other groups cannot be created manually)")
}
groupConfig := &Group{
LightIDs: lights,
Name: name,
Type: groupType.String(),
}
return b.createGroup(groupConfig)
}
// CreateRoom creates a new hue room.
func (b *Bridge) CreateRoom(name string, class RoomClasses, lights []string) (string, error) {
groupConfig := &Group{
LightIDs: lights,
Name: name,
Type: Room.String(),
Class: class.String(),
}
return b.createGroup(groupConfig)
}
// GetAllGroups returns all the groups for a hue bridge
func (b *Bridge) GetAllGroups() (map[string]*Group, error) {
result := make(map[string]*Group)
errCom := b.getAndDecode(groupsEndpoint, &result)
if errCom != nil {
return nil, errCom
}
return result, nil
}
// GetGroupAttributes returns the state of a group by id
func (b *Bridge) GetGroupAttributes(id string) (*Group, error) {
result := &Group{}
errCom := b.getAndDecode(groupsEndpoint+"/"+id, &result)
if errCom != nil {
return nil, errCom
}
return result, nil
}
// SetGroupAttributes updates a groups settings by adding devices or changing name or class
func (b *Bridge) SetGroupAttributes(id string, attributes *GroupAttributes) (*BridgeResponse, error) {
res, errCom := b.putToBridge(groupsEndpoint+"/"+id, attributes)
if errCom != nil {
return nil, errCom
}
result := &BridgeResponse{}
// Unmarshal data
errDecode := json.NewDecoder(res.Body).Decode(result)
if errDecode != nil {
return nil, errDecode
}
return result, nil
}
// SetGroupState sets the state of a group by id
func (b *Bridge) SetGroupState(id string, action *GroupAction) ([]*BridgeResponse, error) {
res, errCom := b.putToBridge(groupsEndpoint+"/"+id+"/action", action)
if errCom != nil {
return nil, errCom
}
result := []*BridgeResponse{}
// Unmarshal data
errDecode := json.NewDecoder(res.Body).Decode(&result)
if errDecode != nil {
return nil, errDecode
}
return result, nil
}
// -------------------------------------------------------------
// ~ Private methods
// -------------------------------------------------------------
func (b *Bridge) createGroup(group *Group) (string, error) {
res, errCreate := b.postToBridge(groupsEndpoint, group)
if errCreate != nil {
return "", errCreate
}
result := []*GroupCreateResponse{}
// Unmarshal data
errDecode := json.NewDecoder(res.Body).Decode(result)
if errDecode != nil {
return "", errDecode
}
if len(result) == 1 {
return result[0].Success.ID, nil
}
return "", fmt.Errorf("could not create group, bridge did not return new group id")
}