-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.js
1398 lines (1283 loc) · 61.2 KB
/
app.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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
const Homey = require('homey');
const { OAuth2App } = require('homey-oauth2app');
const ShellyOAuth2Client = require('./lib/ShellyOAuth2Client');
const Util = require('./lib/util.js');
const shellies = require('shellies');
const WebSocket = require('ws');
const tinycolor = require("tinycolor2");
const jwt_decode = require('jwt-decode');
class ShellyApp extends OAuth2App {
static OAUTH2_CLIENT = ShellyOAuth2Client;
static OAUTH2_DEBUG = false;
static OAUTH2_MULTI_SESSION = false;
static OAUTH2_DRIVERS = ['shelly_cloud'];
async onOAuth2Init() {
try {
this.log('Initializing Shelly App ...');
if (!this.util) this.util = new Util({homey: this.homey});
// VARIABLES GENERIC
this.shellyDevices = [];
// VARIABLES WEBSOCKET GEN2
this.wss = null;
// VARIABLES CLOUD GEN1 & GEN2
this.client = null;
this.cloudServer = null;
this.cloudAccessToken = null;
this.cloudWs = null;
this.cloudWsUnInit = false;
this.wsConnected = false;
// ALL: INITIALLY UPDATE THE SHELLY COLLECTION FOR MATCHING INCOMING STATUS UPDATES
this.homey.setTimeout(async () => {
try {
await this.updateShellyCollection();
this.log('Shelly collection has been updated ...');
} catch (error) {
this.error(error);
}
}, 15000);
// COAP GEN1: START COAP LISTENER FOR RECEIVING STATUS UPDATES
if (this.homey.platform !== "cloud") {
this.homey.setTimeout(async () => {
try {
let gen1 = await this.util.getDeviceType('gen1');
if (gen1) {
shellies.start();
this.log('CoAP listener for gen1 LAN devices started ...');
} else {
this.log('CoAP listener not started as no gen 1 devices where found during app init ...');
}
} catch (error) {
this.error(error);
}
}, 20000);
}
// WEBSOCKET GEN2: INITIALLY START WEBSOCKET SERVER AND LISTEN FOR GEN2 UPDATES
if (this.homey.platform !== "cloud") {
this.homey.setTimeout(async () => {
let gen2 = await this.util.getDeviceType('gen2');
let gen3 = await this.util.getDeviceType('gen3');
if (gen2 || gen3) {
this.websocketLocalListener();
} else {
this.log('Websocket server for gen2 / gen3 devices with outbound websockets not started as no gen2 / gen3 devices where found during app init ...');
}
}, 25000);
}
// BLUETOOTH GEN2: LISTEN FOR BLE ADVERTISEMENTS
if (this.homey.platform !== "cloud") {
this.homey.setTimeout(async () => {
try {
let bluetooth = await this.util.getDeviceType('bluetooth');
if (bluetooth) {
this.bluetoothListener();
} else {
this.log('BLE listener not started as no Bluetooth devices have been paired ...');
}
} catch (error) {
this.error(error);
}
}, 27000);
}
// CLOUD: START CLOUD LISTENER AND INITIALLY UPDATE DEVICE STATUS AND REFRESH TOKEN IF NEEDED
if (this.homey.platform === "cloud") {
try {
/* open the cloud websocket */
this.homey.setTimeout(async () => {
this.websocketCloudListener();
}, 10000);
/* initially update the device status based on Shelly Cloud status (also used to refresh expired tokens) */
this.homey.setTimeout(async () => {
if (this.cloudServer !== null) {
await this.cloudDeviceStatus().catch(this.error);
}
}, 18000);
/* update at 31 minute interval the device status based on Shelly Cloud status (also used to refresh expired tokens) */
this.homey.clearInterval(this.cloudDeviceStatusInterval);
this.cloudDeviceStatusInterval = this.homey.setInterval(async () => {
await this.cloudDeviceStatus().catch(this.error);
}, 1860000);
} catch (error) {
this.error(error);
}
}
// GENERIC TRIGGER FLOWCARDS
this.homey.flow.getTriggerCard('triggerDeviceOffline');
this.homey.flow.getTriggerCard('triggerFWUpdate');
this.homey.flow.getTriggerCard('triggerCloudError');
// TODO: eventually remove this triggercard
const listenerCallbacks = this.homey.flow.getTriggerCard('triggerCallbacks').registerRunListener(async (args, state) => {
try {
if (args.action.action === undefined) {
var action = args.action.name;
} else {
var action = args.action.action;
}
if (
(state.id == args.shelly.id && args.action.id === 999) ||
(args.shelly.id === 'all' && state.action == action) ||
(args.shelly.id === 'all' && args.action.id === 999) ||
((state.id === args.shelly.id || args.shelly === undefined) && (state.action === action || args.action === undefined)) && state.action !== 'n/a' && state.action !== 'n/a_1' && state.action !== 'n/a_2' && state.action !== 'n/a_3' && state.action !== 'n/a_4'
) {
return Promise.resolve(true);
} else {
return Promise.resolve(false);
}
} catch (error) {
this.error(error)
}
});
listenerCallbacks.getArgument('shelly').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getShellies('flowcard_actions');
} catch (error) {
this.error(error)
}
});
listenerCallbacks.getArgument('action').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getActions(args.shelly.actions);
} catch (error) {
this.error(error)
}
});
// GENERIC SHELLY ACTION FLOWCARDS
this.homey.flow.getActionCard('actionReboot')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/reboot', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
return await this.util.sendRPCCommand('/rpc/Shelly.Reboot', args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
// cloud does not support these commands
break;
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionCustomCommand')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/'+ args.command, args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
return await this.util.sendRPCCommand('/rpc/'+ args.command, args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
// cloud does not support these commands
break;
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionOTAUpdate')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/ota?update=true', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
return await this.util.sendRPCCommand('/rpc/Shelly.Update', args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
// cloud does not support these commands
break;
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionUpdateFirmware')
.registerRunListener(async (args) => {
try {
const drivers = Object.values(this.homey.drivers.getDrivers());
for (const driver of drivers) {
const devices = driver.getDevices();
for (const device of devices) {
if (device.getStoreValue('channel') === 0 && device.getStoreValue('battery') === false) {
switch (device.getStoreValue('communication')) {
case 'coap': {
const path = args.stage === 'stable' ? '/ota?update=true' : '/ota?update=true&beta=true';
await this.util.sendCommand(path, device.getSetting('address'), device.getSetting('username'), device.getSetting('password'));
}
case 'websocket': {
await this.util.sendRPCCommand('/rpc/Shelly.CheckForUpdate', device.getSetting('address'), device.getSetting('password'));
await this.util.sendRPCCommand('/rpc/Shelly.Update?stage='+ args.stage, device.getSetting('address'), device.getSetting('password'));
}
case 'default': {
break;
}
}
}
}
return Promise.resolve(true);
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionEcoMode')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/settings?eco_mode_enabled='+ args.eco_mode, args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
const eco_mode = args.eco_mode === 'false' ? false : true;
return await this.util.sendRPCCommand('/rpc', args.device.getSetting('address'), args.device.getSetting('password'), 'POST', {"id": args.device.getCommandId(), "method": "Sys.SetConfig", "params": {"config": {"device": {"eco_mode": eco_mode} } } });
}
case 'cloud': {
// cloud does not support these commands
break;
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
// GENERIC DEVICE TRIGGER CARDS
/* action events */
const listenerActionEvents = this.homey.flow.getDeviceTriggerCard('triggerActionEvent').registerRunListener(async (args, state) => {
try {
var action = args.action.action ?? args.action.name;
if ((state.action === action) || (args.action.id === 999)) {
return Promise.resolve(true);
} else {
return Promise.resolve(false);
}
} catch (error) {
this.error(error)
}
});
listenerActionEvents.getArgument('action').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getActions(args.device.getStoreValue('config').callbacks);
} catch (error) {
this.error(error)
}
});
/* virtual components */
const listenerTriggerVirtualComponents = this.homey.flow.getDeviceTriggerCard('triggerVirtualComponents').registerRunListener(async (args, state) => {
try {
if (args.virtual_component.id === state.vc_id) {
return Promise.resolve(true);
} else {
return Promise.resolve(false);
}
} catch (error) {
this.error(error)
}
});
listenerTriggerVirtualComponents.getArgument('virtual_component').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getVirtualComponents(args.device.getSetting('address'), args.device.getSetting('password'), 'all');
} catch (error) {
this.error(error)
}
});
// GENERIC DEVICE CONDITION FLOWCARDS
this.homey.flow.getConditionCard('conditionInput0')
.registerRunListener(async (args) => {
if (args.device) {
return args.device.getCapabilityValue("input_1");
} else {
return false;
}
})
this.homey.flow.getConditionCard('conditionInput1')
.registerRunListener(async (args) => {
if (args.device) {
return args.device.getCapabilityValue("input_2");
} else {
return false;
}
})
this.homey.flow.getConditionCard('conditionInput2')
.registerRunListener(async (args) => {
if (args.device) {
return args.device.getCapabilityValue("input_3");
} else {
return false;
}
})
this.homey.flow.getConditionCard('conditionInput3')
.registerRunListener(async (args) => {
if (args.device) {
return args.device.getCapabilityValue("input_4");
} else {
return false;
}
})
this.homey.flow.getConditionCard('conditionBeacon')
.registerRunListener(async (args) => {
if (args.device) {
return args.device.getCapabilityValue("beacon");
} else {
return false;
}
})
// GENERIC DEVICE ACTION CARDS
/* virtual components */
const listenerActionVirtualComponentsBoolean = this.homey.flow.getActionCard('actionUpdateVirtualComponentBoolean').registerRunListener(async (args, state) => {
try {
return await this.util.sendRPCCommand('/rpc/Boolean.Set?id='+args.virtual_component.vc_id+'&value='+args.boolean, args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
});
listenerActionVirtualComponentsBoolean.getArgument('virtual_component').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getVirtualComponents(args.device.getSetting('address'), args.device.getSetting('password'), 'boolean');
} catch (error) {
this.error(error)
}
});
const listenerActionVirtualComponentsNumber = this.homey.flow.getActionCard('actionUpdateVirtualComponentNumber').registerRunListener(async (args, state) => {
try {
return await this.util.sendRPCCommand('/rpc/Number.Set?id='+args.virtual_component.vc_id+'&value='+args.number, args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
});
listenerActionVirtualComponentsNumber.getArgument('virtual_component').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getVirtualComponents(args.device.getSetting('address'), args.device.getSetting('password'), 'number');
} catch (error) {
this.error(error)
}
});
const listenerActionVirtualComponentsText = this.homey.flow.getActionCard('actionUpdateVirtualComponentText').registerRunListener(async (args, state) => {
try {
return await this.util.sendRPCCommand('/rpc/Text.Set?id='+args.virtual_component.vc_id+'&value="'+args.text+'"', args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
});
listenerActionVirtualComponentsText.getArgument('virtual_component').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getVirtualComponents(args.device.getSetting('address'), args.device.getSetting('password'), 'text');
} catch (error) {
this.error(error)
}
});
const listenerActionVirtualComponentsEnum = this.homey.flow.getActionCard('actionUpdateVirtualComponentEnum').registerRunListener(async (args, state) => {
try {
return await this.util.sendRPCCommand('/rpc/Enum.Set?id='+args.virtual_component.vc_id+'&value="'+args.enum.id+'"', args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
});
listenerActionVirtualComponentsEnum.getArgument('virtual_component').registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getVirtualComponents(args.device.getSetting('address'), args.device.getSetting('password'), 'enum');
} catch (error) {
this.error(error)
}
});
listenerActionVirtualComponentsEnum.getArgument('enum').registerAutocompleteListener(async (query, args) => {
try {
let enum_options = [];
args.virtual_component.enum_options.forEach((option) => {
enum_options.push({
id: option,
name: option,
icon: '/assets/enum.svg'
});
});
return enum_options;
} catch (error) {
this.error(error)
}
});
/* relays */
this.homey.flow.getActionCard('flipbackSwitch')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
const onoff = args.switch === "1" ? 'on' : 'off';
return await this.util.sendCommand('/relay/'+ args.device.getStoreValue('channel') +'?turn='+ onoff +'&timer='+ args.timer +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
const onoff = args.switch === "1" ? true : false;
return await this.util.sendRPCCommand('/rpc/Switch.Set?id='+ args.device.getStoreValue('channel') +'&on='+ onoff +'&toggle_after='+ args.timer, args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
const onoff = args.switch === "1" ? true : false;
return await this.websocketSendCommand([this.util.websocketMessage({event: 'Shelly:CommandRequest-timer', command: 'relay', command_param: 'turn', command_value: onoff, timer_param: 'timeout', timer: args.timer, deviceid: String(args.device.getSetting('cloud_device_id')), channel: args.device.getStoreValue('channel')})]);
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* Plus Plug S */
this.homey.flow.getActionCard('actionPlusPlugSLEDRing')
.registerRunListener(async (args) => {
try {
const config = await this.util.sendRPCCommand('/rpc/PLUGS_UI.GetConfig', args.device.getSetting('address'), args.device.getSetting('password'));
const onColor = tinycolor(args.on_color);
const onColorRGB = onColor.toPercentageRgb();
const offColor = tinycolor(args.off_color);
const offColorRGB = offColor.toPercentageRgb();
config.leds.mode = "switch";
config.leds.colors['switch:0'].on.rgb = [parseInt(onColorRGB.r, 10), parseInt(onColorRGB.g, 10), parseInt(onColorRGB.b, 10)];
config.leds.colors['switch:0'].on.brightness = args.on_brightness;
config.leds.colors['switch:0'].off.rgb = [parseInt(offColorRGB.r, 10), parseInt(offColorRGB.g, 10), parseInt(offColorRGB.b, 10)];
config.leds.colors['switch:0'].off.brightness = args.off_brightness;
return await this.util.sendRPCCommand('/rpc', args.device.getSetting('address'), args.device.getSetting('password'), 'POST', {"id": 1, "method": "PLUGS_UI.SetConfig", "params": {"config": config } });
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* lights */
this.homey.flow.getActionCard('onOffTransition')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
const onoff = args.switch === "1" ? 'on' : 'off';
return await this.util.sendCommand('/light/'+ args.device.getStoreValue('channel') +'?turn='+ onoff +'&transition='+ args.transition +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
const onoff = args.switch === "1" ? true : false;
return await this.util.sendRPCCommand('/rpc/Switch.Set?id='+ args.device.getStoreValue('channel') +'&on='+ onoff +'&transition='+ args.transition, args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
const onoff = args.switch === "1" ? true : false;
return await this.websocketSendCommand([this.util.websocketMessage({event: 'Shelly:CommandRequest-timer', command: 'light', command_param: 'turn', command_value: onoff, timer_param: 'transition', timer: args.transition, deviceid: String(args.device.getSetting('cloud_device_id')), channel: args.device.getStoreValue('channel')})]);
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('effectRGBW2Color') /* deprecated and replaced by more generic actionColorEffect */
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/color/0?turn=on&effect='+ Number(args.effect) +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionColorEffect')
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/color/0?turn=on&effect='+ args.effect +'&duration='+ args.duration, args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionRGBW2EnableWhiteMode')
.registerRunListener(async (args) => {
try {
return await args.device.triggerCapabilityListener("onoff.whitemode", true);
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionRGBW2DisableWhiteMode')
.registerRunListener(async (args) => {
try {
return await args.device.triggerCapabilityListener("onoff.whitemode", false);
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionRGBW2DimWhite')
.registerRunListener(async (args) => {
try {
return await args.device.triggerCapabilityListener("dim.white", args.brightness);
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* roller shutters */
this.homey.flow.getActionCard('moveRollerShutter')
.registerRunListener(async (args) => {
try {
if (args.direction == 'open') {
args.device.setStoreValue('last_action', 'up');
args.device.updateCapabilityValue('windowcoverings_state','up');
var gen2_method = 'Cover.Open';
var cloud_direction = 'up';
} else if (args.direction == 'close') {
args.device.setStoreValue('last_action', 'down');
args.device.updateCapabilityValue('windowcoverings_state','down');
var gen2_method = 'Cover.Close';
var cloud_direction = 'down';
}
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/roller/0?go='+ args.direction +'&duration='+ args.move_duration +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
return await this.util.sendRPCCommand('/rpc/'+ gen2_method +'?id='+ args.device.getStoreValue('channel') +'&duration='+ args.move_duration, args.device.getSetting('address'), args.device.getSetting('password'));
}
case 'cloud': {
return await this.websocketSendCommand([this.util.websocketMessage({event: 'Shelly:CommandRequest-timer', command: 'roller', command_param: 'go', command_value: cloud_direction, timer_param: 'duration', timer: args.move_duration, deviceid: String(args.device.getSetting('cloud_device_id')), channel: args.device.getStoreValue('channel')})]);
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('moveRollerShutterOffset')
.registerRunListener(async (args) => {
try {
if (args.direction == 'open') {
args.device.setStoreValue('last_action', 'up');
args.device.updateCapabilityValue('windowcoverings_state','up');
} else if (args.direction == 'close') {
args.device.setStoreValue('last_action', 'down');
args.device.updateCapabilityValue('windowcoverings_state','down');
}
return await this.util.sendCommand('/roller/0?go='+ args.direction +'&offset='+ args.offset +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('rollerShutterIntelligentAction')
.registerRunListener(async (args) => {
try {
if (args.device.getCapabilityValue('windowcoverings_state') !== 'idle') {
return await args.device.triggerCapabilityListener('windowcoverings_state', 'idle');
} else if (args.device.getStoreValue('last_action') === 'up') {
return await args.device.triggerCapabilityListener('windowcoverings_state', 'down');
} else if (args.device.getStoreValue('last_action') === 'down') {
return await args.device.triggerCapabilityListener('windowcoverings_state', 'up');
} else {
return Promise.reject('Invalid state');
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('moveRollerShutterPreviousPosition')
.registerRunListener(async (args) => {
try {
let position = args.device.getStoreValue('previous_position');
if (position == undefined) {
return Promise.reject('previous position has not been set yet');
} else {
return await args.device.triggerCapabilityListener('windowcoverings_set', position);
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* gas */
this.homey.flow.getActionCard('actionGasSetVolume')
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/settings/?set_volume='+ args.volume +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionGasMute')
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/mute', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionGasUnmute')
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/unmute', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionGasTest')
.registerRunListener(async (args) => {
try {
return await this.util.sendCommand('/self_test', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* smoke */
this.homey.flow.getActionCard('actionSmokeMute')
.registerRunListener(async (args) => {
try {
return await this.util.sendRPCCommand('/rpc/Smoke.Mute?id='+ args.device.getStoreValue('channel'), args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* TRV */
this.homey.flow.getConditionCard('conditionValveMode')
.registerRunListener(async (args) => {
try {
if (args.profile.id === args.device.getCapabilityValue("valve_mode")) {
return true;
} else {
return false;
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
.getArgument('profile')
.registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getTrvProfiles(args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
})
this.homey.flow.getActionCard('actionValvePosition')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/thermostat/0?pos='+ args.position +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
break;
}
case 'gateway': {
return await this.util.sendRPCCommand('/rpc/'+ args.device.getStoreValue('config').extra.component +'.Call?id='+ args.device.getStoreValue('componentid') +'&method=TRV.SetPosition¶ms={"id":0,"pos":'+ args.position +'}', args.device.getSetting('address'), args.device.getSetting('password'));
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionValveMode')
.registerRunListener(async (args) => {
try {
if (args.profile.id === "0") {
return await this.util.sendCommand('/thermostat/0?schedule=false', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} else {
return await this.util.sendCommand('/thermostat/0?schedule=true&schedule_profile='+ args.profile.id +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
.getArgument('profile')
.registerAutocompleteListener(async (query, args) => {
try {
return await this.util.getTrvProfiles(args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
} catch (error) {
this.error(error)
}
})
this.homey.flow.getActionCard('actionMeasuredExtTemp')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/ext_t?temp='+ args.temperature +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
break;
}
case 'gateway': {
return await this.util.sendRPCCommand('/rpc/'+ args.device.getStoreValue('config').extra.component +'.Call?id='+ args.device.getStoreValue('componentid') +'&method=TRV.SetExternalTemperature¶ms={"id":0,"t_C":'+ args.temperature +'}', args.device.getSetting('address'), args.device.getSetting('password'));
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionTrvOverride')
.registerRunListener(async (args) => {
try {
return await this.util.sendRPCCommand('/rpc/'+ args.device.getStoreValue('config').extra.component +'.Call?id='+ args.device.getStoreValue('componentid') +'&method=TRV.SetOverride¶ms={"id":0,"target_C":'+ args.target_c +', "duration":'+ args.duration +'}', args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionTrvBoost')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/thermostat/0?boost_minutes='+ args.duration +'', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
break;
}
case 'gateway': {
return await this.util.sendRPCCommand('/rpc/'+ args.device.getStoreValue('config').extra.component +'.Call?id='+ args.device.getStoreValue('componentid') +'&method=TRV.SetBoost¶ms={"id":0,"duration":'+ args.duration +'}', args.device.getSetting('address'), args.device.getSetting('password'));
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionTrvClearBoost')
.registerRunListener(async (args) => {
try {
return await this.util.sendRPCCommand('/rpc/'+ args.device.getStoreValue('config').extra.component +'.Call?id='+ args.device.getStoreValue('componentid') +'&method=TRV.ClearBoost¶ms={"id":0}', args.device.getSetting('address'), args.device.getSetting('password'));
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
/* EM DEVICES */
this.homey.flow.getActionCard('actionSetCumulative')
.registerRunListener(async (args) => {
try {
return await args.device.setEnergy({ cumulative: args.cumulative });
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionResetTotals')
.registerRunListener(async (args) => {
try {
switch(args.device.getStoreValue('communication')) {
case 'coap': {
return await this.util.sendCommand('/emeter/'+ args.device.getStoreValue('channel') +'?reset_totals=true', args.device.getSetting('address'), args.device.getSetting('username'), args.device.getSetting('password'));
}
case 'websocket': {
const result = await this.util.sendRPCCommand('/rpc/Shelly.GetStatus', args.device.getSetting('address'), args.device.getSetting('password'));
if (result.hasOwnProperty("em:0")) {
await this.util.sendRPCCommand('/rpc/EMData.ResetCounters?id='+ args.device.getStoreValue('channel'), args.device.getSetting('address'), args.device.getSetting('password'));
}
if (result.hasOwnProperty("em1:0")) {
await this.util.sendRPCCommand('/rpc/EM1Data.ResetCounters?id='+ args.device.getStoreValue('channel'), args.device.getSetting('address'), args.device.getSetting('password'));
}
if (result.hasOwnProperty("pm1:0")) {
await this.util.sendRPCCommand('/rpc/PM1.ResetCounters?id='+ args.device.getStoreValue('channel'), args.device.getSetting('address'), args.device.getSetting('password'));
}
return;
}
}
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
this.homey.flow.getActionCard('actionSetDeviceClass')
.registerRunListener(async (args) => {
try {
args.device.setStoreValue('customclass', true);
return await args.device.setClass(args.class.name);
} catch (error) {
this.error(error);
return Promise.reject(error);
}
})
.getArgument('class')
.registerAutocompleteListener(async (query, args) => {
try {
const results = await this.util.getDeviceClasses();
return results.filter((result) => {
return result.name.toLowerCase().includes(query.toLowerCase());
});
} catch (error) {
this.error(error)
}
})
/* WAVE (PRO) SHUTTER */
/* CUSTOM ACTION CARD FOR windowcoverings_tilt_set AS ATHOM DID NOT IMPLEMENT IT */
this.homey.flow.getActionCard('actionWaveShutterTiltSet')
.registerRunListener(async (args) => {
try {
if (args.device.hasCapability('windowcoverings_tilt_set')) {
args.device.setCapabilityValue('windowcoverings_tilt_set', args.tilt).catch(this.error);
return args.device._setCapabilityValue('windowcoverings_tilt_set', 'SWITCH_MULTILEVEL', args.tilt);
}
} catch (error) {
this.error(error);
return Promise.reject(error.message);
}
})
// COAP GEN1: COAP LISTENER FOR PROCESSING INCOMING MESSAGES
shellies.on('discover', device => {
this.log('Discovered device with ID', device.id, 'and type', device.type, 'with IP address', device.host);
device.on('change', (prop, newValue, oldValue) => {
try {
//console.log(prop, 'changed from', oldValue, 'to', newValue, 'for device', device.id, 'with IP address', device.host);
if (this.shellyDevices.length > 0) {
const filteredShelliesCoap = this.shellyDevices.filter(shelly => shelly.id.includes(device.id)); // filter total device collection based on incoming device id
let coap_device_id;
let coap_device;
if (filteredShelliesCoap.length > 0) {
if (filteredShelliesCoap.length === 1) {
coap_device = filteredShelliesCoap[0].device; // when there is 1 filtered device it's not multi channel
} else {
const channel = prop.slice(prop.length - 1);
if(isNaN(channel)) {
coap_device_id = filteredShelliesCoap[0].main_device+'-channel-0'; // when the capability does not have a ending channel number it's targeted at channel 0
} else {
coap_device_id = filteredShelliesCoap[0].main_device+'-channel-'+channel; // when the capability does have a ending channel number set it to the correct channel
}
const filteredShellyCoap = filteredShelliesCoap.filter(shelly => shelly.id.includes(coap_device_id)); // filter the filtered shellies with the correct channel device id
coap_device = filteredShellyCoap[0].device;
}
coap_device.parseCapabilityUpdate(prop, newValue, coap_device.getStoreValue('channel'));
if (coap_device.getSetting('address') !== device.host) {
coap_device.setSettings({address: device.host}).catch(this.error);
}
return;
}
}
} catch (error) {
this.error('Error processing CoAP message for device', device.id, 'of type', device.type, 'with IP address', device.host, 'on capability', prop, 'with old value', oldValue, 'to new value', newValue);
this.error(error);
}
})
});
} catch (error) {
this.log(error);
}
}
// WEBSOCKET GEN2: START WEBSOCKET SERVER AND LISTEN FOR INBOUND GEN2 AND BLUETOOTH UPDATES
async websocketLocalListener() {
try {
if (this.wss === null) {
this.wss = new WebSocket.Server({ port: 6113 });
this.log('Websocket server for gen2 / gen3 devices with outbound websockets started ...');
this.wss.on("connection", async (wsserver, req) => {
wsserver.send('{"jsonrpc":"2.0", "id":1, "src":"wsserver-getdeviceinfo_onconnect", "method":"Shelly.GetDeviceInfo"}');
await this.util.sleep(1000);
wsserver.send('{"jsonrpc":"2.0", "id":1, "src":"wsserver-getfullstatus_onconnect", "method":"Shelly.GetStatus"}');
wsserver.on("message", async (data) => {
const result = JSON.parse(data);
if (result.hasOwnProperty('method') && result.hasOwnProperty("params")) {
if (result.method === 'NotifyFullStatus') { // parse full status updates
const filteredShelliesWss = this.shellyDevices.filter(shelly => shelly.id.toLowerCase().includes(result.src.toLowerCase())).filter(shelly => shelly.channel === 0);
for (const filteredShellyWss of filteredShelliesWss) {
filteredShellyWss.device.parseFullStatusUpdateGen2(result.params);
if (result.params.hasOwnProperty('wifi')) {
if (result.params.wifi.sta_ip !== null) { // update IP address if it does not match the device
if (filteredShellyWss.device.getSetting('address') !== String(result.params.wifi.sta_ip)) {
await filteredShellyWss.device.setSettings({address: String(result.params.wifi.sta_ip)}).catch(this.error);
}
}
}
}
} else if (result.method === 'NotifyStatus') { // parse single component updates
let filteredShelliesWss = this.shellyDevices.filter(shelly => shelly.id.toLowerCase().includes(result.src.toLowerCase())).filter(shelly => shelly.channel === 0);
if (result.src.includes('shellyblugwg3-')) { // get the right device from status reports of the BLU Gateway Gen3
let componenttype = '';
let componentid = '';
const paramsKeys = Object.keys(result.params);
paramsKeys.forEach(key => {
if (key.includes(':')) {
componenttype = key.split(':')[0];
componentid = key.split(':')[1];
}
});
filteredShelliesWss = filteredShelliesWss.filter(shelly => shelly.id.toLowerCase().includes(componenttype)).filter(shelly => shelly.id.toLowerCase().includes(componentid.toString()));
}
for (const filteredShellyWss of filteredShelliesWss) {
filteredShellyWss.device.parseSingleStatusUpdateGen2(result);
}
} else if (result.method === 'NotifyEvent') { // parse events not reflected in the status of a component including BLE Proxy events
for (const single_event of result.params.events) {
if (single_event.event === 'NotifyBluetoothStatus') {
const filteredShelliesWss = this.shellyDevices.filter(shelly => shelly.id.toLowerCase().includes(single_event.data.addr)).filter(shelly => shelly.channel === 0);
for (const filteredShellyWss of filteredShelliesWss) {
filteredShellyWss.device.parseBluetoothEvents(single_event.data);