forked from csuermann/node-red-contrib-virtual-smart-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device-types.js
587 lines (516 loc) · 12.1 KB
/
device-types.js
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
const convert = require('color-convert')
//---VALIDATORS---
const wrapValidator = (validatorFn, outputStateKey) => {
return (val) => {
const validationResult = validatorFn(val)
if (!validationResult) {
return false
}
return { key: outputStateKey, value: validationResult.value }
}
}
const powerState = (val) => {
const isValid = val == 'ON' || val == 'OFF'
if (!isValid) {
return false
}
return { key: 'powerState', value: val }
}
const brightness = (val) => {
const isValid = Number.isInteger(val) && val >= 0 && val <= 100
if (!isValid) {
return false
}
return { key: 'brightness', value: val }
}
const percentage = (val) => {
const isValid = Number.isInteger(val) && val >= 0 && val <= 100
if (!isValid) {
return false
}
return { key: 'percentage', value: val }
}
const speed = (val) => {
const isValid = Number.isInteger(val) && val >= 1 && val <= 10
if (!isValid) {
return false
}
return { key: 'speed', value: val }
}
const colorTemperatureInKelvin = (val) => {
const isValid = Number.isInteger(val) && val >= 1000 && val <= 10000
if (!isValid) {
return false
}
return { key: 'colorTemperatureInKelvin', value: val }
}
const color = (val) => {
if (!typeof val == 'object') {
return false
}
if (
!val.hasOwnProperty('hue') ||
!val.hasOwnProperty('saturation') ||
!val.hasOwnProperty('brightness')
) {
return false
}
const isValid =
typeof val.hue == 'number' &&
val.hue >= 0 &&
val.hue <= 360 &&
typeof val.saturation == 'number' &&
val.saturation >= 0 &&
val.saturation <= 1 &&
typeof val.brightness == 'number' &&
val.brightness >= 0 &&
val.brightness <= 1
if (!isValid) {
return false
}
return {
key: 'color',
value: {
hue: val.hue,
saturation: val.saturation,
brightness: val.brightness,
},
}
}
const color_rgb = (val) => {
if (!typeof val == 'array' || val.length !== 3) {
return false
}
const isValid =
Number.isInteger(val[0]) &&
val[0] >= 0 &&
val[0] <= 255 &&
Number.isInteger(val[1]) &&
val[1] >= 0 &&
val[1] <= 255 &&
Number.isInteger(val[2]) &&
val[2] >= 0 &&
val[2] <= 255
if (!isValid) {
return true
}
const hsb = convert.rgb.hsv(val)
return {
key: 'color',
value: {
hue: hsb[0],
saturation: hsb[1] / 100,
brightness: hsb[2] / 100,
},
}
}
const color_cmyk = (val) => {
if (!typeof val == 'array' || val.length !== 4) {
return false
}
const isValid =
Number.isInteger(val[0]) &&
val[0] >= 0 &&
val[0] <= 100 &&
Number.isInteger(val[1]) &&
val[1] >= 0 &&
val[1] <= 100 &&
Number.isInteger(val[2]) &&
val[2] >= 0 &&
val[2] <= 100 &&
Number.isInteger(val[3]) &&
val[3] >= 0 &&
val[3] <= 100
if (!isValid) {
return true
}
const hsb = convert.cmyk.hsv(val)
return {
key: 'color',
value: {
hue: hsb[0],
saturation: hsb[1] / 100,
brightness: hsb[2] / 100,
},
}
}
const color_hex = (val) => {
const match = `${val}`.match(/^#?([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/)
if (!match) {
return false
}
const hsb = convert.hex.hsv(match[1])
return {
key: 'color',
value: {
hue: hsb[0],
saturation: hsb[1] / 100,
brightness: hsb[2] / 100,
},
}
}
const color_xyz = (val) => {
if (!typeof val == 'array' || val.length !== 3) {
return false
}
const isValid =
Number.isInteger(val[0]) &&
val[0] >= 0 &&
val[0] <= 100 &&
Number.isInteger(val[1]) &&
val[1] >= 0 &&
val[1] <= 100 &&
Number.isInteger(val[2]) &&
val[2] >= 0 &&
val[2] <= 100
if (!isValid) {
return false
}
const hsb = convert.xyz.hsv([val[0], val[1], val[2]])
return {
key: 'color',
value: {
hue: hsb[0],
saturation: hsb[1] / 100,
brightness: hsb[2] / 100,
},
}
}
const color_lab = (val) => {
if (!typeof val == 'array' || val.length !== 3) {
return false
}
const isValid =
Number.isInteger(val[0]) &&
val[0] >= -100 &&
val[0] <= 100 &&
Number.isInteger(val[1]) &&
val[1] >= -100 &&
val[1] <= 100 &&
Number.isInteger(val[2]) &&
val[2] >= -100 &&
val[2] <= 100
if (!isValid) {
return false
}
const hsb = convert.lab.hsv([val[0], val[1], val[2]])
return {
key: 'color',
value: {
hue: hsb[0],
saturation: hsb[1] / 100,
brightness: hsb[2] / 100,
},
}
}
const lightMode = (val) => {
const isValid = val == 'hsb' || val == 'temp'
if (!isValid) {
return false
}
return { key: 'lightMode', value: val }
}
const position = (val) => {
const isValid = val == 'Position.Up' || val == 'Position.Down'
if (!isValid) {
return false
}
return { key: 'position', value: val }
}
const temperatureValue = (val) => {
const floatValue = Number.parseFloat(val)
const isValid = floatValue !== NaN
if (!isValid) {
return false
}
return { key: 'temperature', value: floatValue }
}
const temperatureScale = (val) => {
const isValid = val === 'CELSIUS' || val === 'FAHRENHEIT' || val === 'KELVIN'
if (!isValid) {
return false
}
return { key: 'scale', value: val }
}
//---DECORATORS---
const diffDecoratorFactory = (anotherDecorator) => {
const directiveToAttributesMap = {
TurnOn: ['powerState'],
TurnOff: ['powerState'],
AdjustBrightness: ['brightness'],
SetBrightness: ['brightness'],
SetColor: [
'color',
'lightMode',
'color_rgb',
'color_hex',
'color_cmyk',
'color_lab',
'color_xyz',
],
SetColorTemperature: ['colorTemperatureInKelvin', 'lightMode'],
IncreaseColorTemperature: ['colorTemperatureInKelvin', 'lightMode'],
DecreaseColorTemperature: ['colorTemperatureInKelvin', 'lightMode'],
SetPercentage: ['percentage'],
Lock: ['lockState'],
Unlock: ['lockState'],
SetMode: ['mode', 'instance'],
AdjustRangeValue: ['speed'],
SetRangeValue: ['speed'],
Activate: ['isActivated'],
Deactivate: ['isActivated'],
SetTargetTemperature: ['targetTemperature', 'targetScale'],
AdjustTargetTemperature: ['targetTemperature', 'targetScale'],
}
return (decoratorParams) => {
const decoratedState = anotherDecorator(decoratorParams)
const directive =
decoratorParams.localState.directive || 'OverrideLocalState'
if (!directiveToAttributesMap[directive]) {
return decoratedState
}
const attribsToKeep = [
'directive',
'name',
'source',
...directiveToAttributesMap[directive],
]
return attribsToKeep.reduce((acc, attrib) => {
acc[attrib] = decoratedState[attrib]
return acc
}, {})
}
}
const defaultDecorator = ({
localState,
template,
friendlyName,
isPassthrough = false,
}) => {
localState.name = friendlyName
localState.type = template
delete localState.template
if (isPassthrough) {
delete localState.directive
}
return localState
}
const colorChangingLightDecorator = ({
localState,
template,
friendlyName,
isPassthrough = false,
}) => {
localState = defaultDecorator({
localState,
template,
friendlyName,
isPassthrough,
})
localState['color_rgb'] = convert.hsv.rgb(
localState.color.hue,
localState.color.saturation * 100,
localState.color.brightness * 100
)
localState['color_hex'] =
'#' +
convert.hsv.hex(
localState.color.hue,
localState.color.saturation * 100,
localState.color.brightness * 100
)
localState['color_cmyk'] = convert.hsv.cmyk(
localState.color.hue,
localState.color.saturation * 100,
localState.color.brightness * 100
)
localState['color_lab'] = convert.hsv.lab(
localState.color.hue,
localState.color.saturation * 100,
localState.color.brightness * 100
)
localState['color_xyz'] = convert.hsv.xyz(
localState.color.hue,
localState.color.saturation * 100,
localState.color.brightness * 100
)
localState['color_xy'] = (function (red, green, blue) {
//apply a gamma correction to the RGB values, which makes the color more vivid and more the like the color displayed on the screen of your device
red =
red > 0.04045 ? Math.pow((red + 0.055) / (1.0 + 0.055), 2.4) : red / 12.92
green =
green > 0.04045
? Math.pow((green + 0.055) / (1.0 + 0.055), 2.4)
: green / 12.92
blue =
blue > 0.04045
? Math.pow((blue + 0.055) / (1.0 + 0.055), 2.4)
: blue / 12.92
//RGB values to XYZ using the Wide RGB D65 conversion formula
var X = red * 0.664511 + green * 0.154324 + blue * 0.162028
var Y = red * 0.283881 + green * 0.668433 + blue * 0.047685
var Z = red * 0.000088 + green * 0.07231 + blue * 0.986039
//Calculate the xy values from the XYZ values
let x = X / (X + Y + Z)
let y = Y / (X + Y + Z)
x = isNaN(x) ? 0 : x
y = isNaN(y) ? 0 : y
return [x, y]
})(
localState['color_rgb'][0],
localState['color_rgb'][1],
localState['color_rgb'][2]
)
return localState
}
//---TYPES---
const types = {
BLINDS: {
defaultState: {
percentage: 100,
},
validators: {
percentage,
},
decorator: defaultDecorator,
},
COLOR_CHANGING_LIGHT_BULB: {
defaultState: {
powerState: 'OFF',
brightness: 100,
colorTemperatureInKelvin: 2200,
lightMode: 'temp',
color: { hue: 60, saturation: 1, brightness: 1 },
},
validators: {
powerState,
brightness,
colorTemperatureInKelvin,
color_hex: wrapValidator(color_hex, 'color'),
color_rgb: wrapValidator(color_rgb, 'color'),
color_cmyk: wrapValidator(color_cmyk, 'color'),
color_lab: wrapValidator(color_lab, 'color'),
color_xyz: wrapValidator(color_xyz, 'color'),
color,
lightMode,
},
decorator: colorChangingLightDecorator,
},
DIMMABLE_LIGHT_BULB: {
defaultState: {
powerState: 'OFF',
brightness: 100,
},
validators: {
powerState,
brightness,
},
decorator: defaultDecorator,
},
DIMMER_SWITCH: {
defaultState: {
powerState: 'OFF',
brightness: 100,
},
validators: {
powerState,
brightness,
},
decorator: defaultDecorator,
},
FAN: {
defaultState: {
powerState: 'OFF',
speed: 1,
},
validators: {
powerState,
speed,
},
decorator: defaultDecorator,
},
GARAGE_DOOR_OPENER: {
defaultState: {
mode: 'Position.Up',
instance: 'GarageDoor.Position',
},
validators: {
mode: wrapValidator(position, 'mode'),
},
decorator: defaultDecorator,
},
PLUG: {
defaultState: {
powerState: 'OFF',
},
validators: {
powerState,
},
decorator: defaultDecorator,
},
SCENE: {
defaultState: {
isActivated: false,
},
validators: {},
decorator: defaultDecorator,
},
SWITCH: {
defaultState: {
powerState: 'OFF',
},
validators: {
powerState,
},
decorator: defaultDecorator,
},
TEMPERATURE_SENSOR: {
defaultState: {
temperature: 0,
scale: 'CELSIUS',
},
validators: {
temperature: temperatureValue,
scale: temperatureScale,
},
decorator: defaultDecorator,
},
THERMOSTAT: {
defaultState: {
temperature: 0,
scale: 'CELSIUS',
targetTemperature: 0,
targetScale: 'CELSIUS',
},
validators: {
temperature: temperatureValue,
scale: temperatureScale,
targetTemperature: wrapValidator(temperatureValue, 'targetTemperature'),
targetScale: wrapValidator(temperatureScale, 'targetScale'),
},
decorator: defaultDecorator,
},
}
//---HELPERS---
function getValidators(template) {
return types[template].validators
}
function getDecorator(template, isDiffEnabled) {
const decorator = types[template].decorator
if (isDiffEnabled) {
return diffDecoratorFactory(decorator)
} else {
return decorator
}
}
function getDefaultState(template) {
const defaultState = types[template].defaultState
defaultState['template'] = template
defaultState['source'] = 'alexa'
return defaultState
}
module.exports = {
getValidators,
getDecorator,
getDefaultState,
}