forked from jrhubott/homebridge-homeseer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
788 lines (647 loc) · 29.1 KB
/
index.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
'use strict';
var exports = module.exports;
var globals = null;
var net = require('net');
var promiseHTTP = require("request-promise-native");
var chalk = require("chalk");
var green = chalk.green.bold;
var red = chalk.red.bold;
var yellow = chalk.yellow.bold;
var cyan = chalk.cyan.bold;
var magenta = chalk.magenta.bold;
var HSutilities = require("./lib/HomeSeerUtilities");
var HKSetup = require("./lib/HomeKitDeviceSetup");
var DataExchange = require("./lib/DataExchange");
// - The config.json file information that used to be here was always out of date so it has been moved!
// https://github.com/jvmahon/homebridge-homeseer/wiki/Setting-Up-Your-Config.json-file.
//
// SUPORTED TYPES:
// - CarbonDioxideSensor
// - CarbonMonoxideSensor
// - ContactSensor
// - Fan
// - GarageDoorOpener
// - HumiditySensor
// - LeakSensor
// - Lightbulb
// - LightSensor
// - Lock
// - MotionSensor
// - OccupancySensor
// - Outlet
// - SecuritySystem
// - SmokeSensor
// - Switch
// - Thermostat
// - TemperatureSensor
// - Valve
// - Window
// - WindowCovering
var Accessory, Service, Characteristic, UUIDGen;
// The following variable is set to 0 ("true" the first time HomeSeer is polled.
// This ensures that all associated HomeKit devices get an .updateValue call during processing of updateAllFromHSData()
// On subsequent polls, this is set to false and the HomeKit .updateValue function only executes
// if there has been a (potential) change in the HomeKit value due to a HomeSeer change.
var pollingCount = 0;
// Following variable stores the full HomeSeer JSON-ified Device status data structure.
// This includes Device data for all of the HomeSeer devices of interest.
var _currentHSDeviceStatus = [];
var _everyHSDevice = [];
var allHSDevices = [];
// Note that the HomeSeer json date in _currentHSDeviceStatus is of the following form where _currentHSDeviceStatus is an array so
// an index must be specified to access the properties, such as
// _currentHSDeviceStatus[indexvalue] for a dimmer would be of the form...
// note indexvalue does not correspond to the HomeSeer reference, but is arbitrary. You need to loop
// through the entire array and do comparisons to find the "ref" value you are interested in
/*
{ ref: 299,
name: 'Floods',
location: 'Guest Bedroom',
location2: '1 - First Floor',
value: 0,
status: 'Off',
device_type_string: 'Z-Wave Switch Multilevel',
last_change: '/Date(1517009446329)/',
relationship: 4,
hide_from_view: false,
associated_devices: [ 297 ],
device_type:
{ Device_API: 4,
Device_API_Description: 'Plug-In API',
Device_Type: 0,
Device_Type_Description: 'Plug-In Type 0',
Device_SubType: 38,
Device_SubType_Description: '' },
device_image: '',
UserNote: '',
UserAccess: 'Any',
status_image: '/images/HomeSeer/status/off.gif',
voice_command: '',
misc: 4864 },
*/
// The next array variable (_HSValues) stores just the value of the associated HomeSeer reference.
// This is a sparse array with most index values null.
// The array index corresponds to the HomeSeer reference so _HSValues[211] would be the HomeSeer value for device 211.
var _HSValues = [];
// The next array variable holds a list of all of the HomeKit HAP Characteristic objects
// that can be affected by changes occurring at HomeSeer.
// The array is populated during by the getServices function when a HomeKit device is created.
// After HomeSeer is polled, each item in this array is analyzed by the updateAllFromHSData() function to determine
// if it needs to be updated.
var _statusObjects = [];
// Currently the HomeSeer variable is used as a global to allow access to the log variable (function)
var HomeSeer = [];
var HomeSeerHost = "";
var instantStatusEnabled = false;
module.exports = function (homebridge) {
console.log("homebridge API version: " + homebridge.version);
// Accessory must be created from PlatformAccessory Constructor
Accessory = homebridge.platformAccessory;
// Service and Characteristic are from hap-nodejs
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
UUIDGen = homebridge.hap.uuid;
// For platform plugin to be considered as dynamic platform plugin,
// registerPlatform(pluginName, platformName, constructor, dynamic), dynamic must be true
homebridge.registerPlatform("homebridge-HomeSeerPlatform", "HomeSeer", HomeSeerPlatform, true);
}
function getHSValue(ref) {
return _HSValues[ref];
}
function forceHSValue(ref, level)
{
// This function is used to temporarily 'fake' a HomeSeer poll update.
// Used when, e.g., you set a new value of an accessory in HomeKit - this provides a fast update to the
// Retrieved HomeSeer device values which will then be "corrected / confirmed" on the next poll.
_HSValues[ref] = parseFloat(level);
// Debugging
// console.log("** DEBUG ** - called forceHSValue with reference: %s, level: %s, resulting in new value: %s", ref, level, _HSValues[ref]);
}
function HomeSeerPlatform(log, config, api) {
// HomeSeer.log = log;
this.log = log;
this.config = config;
if(config)
{
if (this.config["platformPoll"]==null) this.config["platformPoll"] = 10;
this.log(green("System default periodic polling rate set to: ") + cyan(this.config.platformPoll) + green(' seconds'));
}
}
HomeSeerPlatform.prototype =
{
accessories: function (callback)
{
var foundAccessories = [];
var that = this;
// Check entries in the config.json file to make sure there are no obvious errors.
//HSutilities.checkConfig.call(this, this.config);
/////////////////////////////////////////////////////////////////////////////////
// Make devices for each HomeSeer event in the config.json file
// Make Devices for each 'Event' entry in the config.json file.
if (this.config.events)
{
for (var i in this.config.events)
{
var event = new HomeSeerEvent(that.log, that.config, that.config.events[i]);
foundAccessories.push(event);
}
}
// If the config.json file contains a "lightbulbs =" group of references, push them onto the accessories array as "type":"Lightbulb"
if(this.config.lightbulbs)
{
if(this.config.accessories === undefined || this.config.accessories == null) this.config.accessories = []; // make sure there's an accessories array to push bulbs onto
for (var thisRef in this.config.lightbulbs)
{
var addLight = { "type":"Lightbulb", "ref":this.config.lightbulbs[thisRef] };
this.config.accessories.push(addLight);
}
}
var self = this; // Assign this to self so you can access its values inside the promise.
var allStatusUrl = "";
promiseHTTP({ uri: this.config["host"] + "/JSON?request=getstatus", json:true})
.then( function(json)
{
allHSDevices = json.Devices;
exports.allHSDevices = allHSDevices;
// Check entries in the config.json file to make sure there are no obvious errors.
HSutilities.checkConfig.call(self, self.config, allHSDevices);
return (1);
}) // end then's function
.catch( (err) =>
{
if( err.message.includes("ECONNREFUSED") )
{
err = red( err + "\nCheck if HomeSeer is running, then start homebridge again.");
}
throw err;
} )
.then (()=>
{
////////////////// Identify all of the HomeSeer References of interest ////////////
// These are used to obtain status data from HomeSeer
var allHSRefs = [];
allHSRefs.pushUnique = function(item) //Pushes into onto stack if it isn't null. Can be chained!
{
if (item === undefined) return this;
if (item == null) return this;
if (isNaN(item)) throw new SyntaxError("You specified: '" + item +"' as a HomeSeer references, but it is not a number. You need to fix it to continue");
if (!Number.isInteger(parseFloat(item))) throw new SyntaxError("You specified: '" + item +"' as a HomeSeer references, but it is not an Integer. You need to fix it to continue");
if (this.indexOf(item) == -1) this.push(parseInt(item));
return this
}
for (var i in this.config.accessories)
{
// Gather every reference that isn't undefined or null!
allHSRefs
.pushUnique(this.config.accessories[i].ref)
.pushUnique(this.config.accessories[i].batteryRef)
.pushUnique(this.config.accessories[i].obstructionRef)
.pushUnique(this.config.accessories[i].stateRef)
.pushUnique(this.config.accessories[i].controlRef)
.pushUnique(this.config.accessories[i].doorSensorRef)
.pushUnique(this.config.accessories[i].humidityRef)
.pushUnique(this.config.accessories[i].humidityTargetRef)
.pushUnique(this.config.accessories[i].coolingSetpointRef)
.pushUnique(this.config.accessories[i].heatingSetpointRef)
.pushUnique(this.config.accessories[i].tamperRef)
} // end for
for (var j =0; j< allHSRefs.length; j++)
{
// console.log(cyan("*Debug* - Checking allHSRefs has references: " + allHSRefs[j] + " at location: " + j ));
if(_statusObjects[allHSRefs[j]] === undefined) _statusObjects[allHSRefs[j]] = [];
_HSValues[allHSRefs[j]] = parseFloat(0);
}
allHSRefs.sort( (a,b) => (a-b) ); // the internal function (a,b) => (a-b) causes a numeric order sort instead of alpha!
// console.log(cyan("*Debug* - All HomeSeer References Identified in config.json are: " + allHSRefs.concat() ));
/////////////////////////////////////////////////////////////////////////////////
// Then make a HomeKit device for each "regular" HomeSeer device.
this.log("Fetching HomeSeer devices.");
// URL to get status on everything.
allStatusUrl = this.config["host"] + "/JSON?request=getstatus&ref=" + allHSRefs.concat();
// now get the data from HomeSeer and pass it as the 'response' to the .then stage.
return promiseHTTP({ uri: allStatusUrl, json:true})
}) // End of gathering HomeSeer references
.catch((err) =>
{
throw err;
})
// Next - For each device value retrieved from HomeSeer, store it in the _HSValues array
// and create HomeKit Accessories for each accessory in the config.json 'accessories' array!
.then( function(response)
{
for(var i in response.Devices)
{
_HSValues[response.Devices[i].ref] = parseFloat(response.Devices[i].value);
}
this.log('HomeSeer status function succeeded!');
for (var i in this.config.accessories) {
let index = response.Devices.findIndex( (element, index, array)=> {return (element.ref == this.config.accessories[i].ref)} )
// Set up initial array of HS Response Values during startup
try
{
var accessory = new HomeSeerAccessory(that.log, that.config, this.config.accessories[i], response.Devices[index]);
} catch(err)
{
console.log(
magenta( "\n\n** Error ** creating new HomeSeerAccessory in file index.js.\n"
+ "This may be the result of specifying an incorrect HomeSeer reference number in your config.json file. \n"
+ "Check all reference numbers and be sure HomeSeer is running. Stopping operation\n"
+ "Check Accessory No: ")
+ cyan(i+1)
+ magenta(", of type: ")
+ cyan(this.config.accessories[i].type)
+ magenta(", and which identifies a reference No.: ")
+ cyan(this.config.accessories[i].ref + "\n")
);
console.log(red(err));
throw err
}
foundAccessories.push(accessory);
} //endfor.
return response
}.bind(this))
.catch((err) =>
{
throw err;
})
// Next - if prior .then block was completed without errors, next step is to return all the values to HomeBridge
.then((response)=>
{
callback(foundAccessories);
updateAllFromHSData();
return response
})
// Next step is to check if HomeSeer's ASCII control port is enabled and to make a connection to that port
.then((response) =>
{
function HSData(array)
{
this.ref = array[1];
this.newValue = array[2];
this.oldValue = array[3];
}
var ASCIIPort = "11000";
if(this.config["ASCIIPort"]) ASCIIPort = this.config["ASCIIPort"];
var uri = parseUri(this.config["host"]);
this.log("Host for ASCII Interface set to: " + uri.host + " at port " + ASCIIPort);
return new Promise((resolve, reject) =>
{
// this.log(green("Attempting connection to HomeSeer ASCII Port: "));
var client;
client = net.createConnection({port:ASCIIPort, host:uri.host}, ()=> {resolve(true)});
client.on('connect', () =>
{
this.log(green("Successfully connected to ASCII Control Interface of HomeSeer. Instant Status Enabled."));
instantStatusEnabled = true;
// resolve(true);
});
// Next, set up an event listener to receive any change data from HomeSeer and then update HomeKit
client.on('data', (data) =>
{
var myData = new HSData(data.toString().slice(0, -2).split(","));
//Only need to do an update if there is HomeKit data associated with it!
// Which occurs if the _statusObjects array has a non-zero length for the reference reported.
if( _statusObjects[myData.ref])
{
this.log("Received HomeSeer status update data for HomeSeer device: " + cyan(myData.ref) +", new value: " + cyan(myData.newValue) + ", old value: " + cyan(myData.oldValue));
_HSValues[myData.ref] = parseFloat(myData.newValue);
var statusObjectGroup = _statusObjects[myData.ref];
for (var thisCharacteristic in statusObjectGroup)
{
updateCharacteristicFromHSData(statusObjectGroup[thisCharacteristic], myData.ref);
}
}
});
var numAttempts = 0;
// If the status port closes, print a warning and then try to re-open it in 30 seconds.
client.on('close', () =>
{
this.log(red("* Warning * - ASCII Port closed - Instant Status Failure!. Restart system if failure continues."));
// Try to re-connect every 30 seconds If there is a failure, another error will be generated
// which will cause this code to run again.
setTimeout( ()=>
{
numAttempts = numAttempts +1;
try
{
this.log(red("Attempting to re-start ASCII Port Interface, Attempt: " + numAttempts));
// client = net.createConnection({port:ASCIIPort, host:uri.host});
client.connect({port:ASCIIPort, host:uri.host});
} catch(err)
{
this.log(red("Attempt not successful with error: "));
}
}, 30000); // Try to connect every 30 seconds
});
// If there is an error setting up the ASCII status port, print a message. Note that client.on('close', ...) is automatically called
// by the 'error' listener and will cause code to try and re-open the port after 30 seconds. A new error is raised and this cycle repeats
// if that fails.
client.on('error', (data) =>
{
this.log(red("* Warning * - Unable to connect to HomeSeer ASCII Port: " + ASCIIPort + ". Instant Status Not Enabled."));
if (ASCIIPort != 11000)
{
this.log(red("ASCIIPort configuration value of: " + ASCIIPort + " is unusual. Typical value is 11000. Check setting."));
}
this.log(yellow('To enable ASCII Port / Instant Status, see WIKI "Instant Status" entry at:'));
this.log(yellow("https://github.com/jvmahon/homebridge-homeseer/wiki/Enable-Instant-Status-(HomeSeer-ASCII-Port)"));
resolve(false)
});
// resolve (true);
});
})
// Next, set up the Polling mechanism as a 'backup' to the instant status. If instant status is enabled, poll less frequently.
.then((instantStatusEnabled) =>
{
// This is the new Polling Mechanism to poll all at once.
// If instantStatusEnabled is true, then poll less frequently (once per minute);
// this.log(yellow("Monitoring HomeSeer Device Status for references: " + allHSRefs.concat()));
if(instantStatusEnabled)
{
this.config.platformPoll = 60;
this.log(green("Reducing HomeSeer polling rate to: ") + cyan(this.config.platformPoll) + green(" seconds."))
}
else{
this.log(red("Instant Status Was Not Enabled"));
}
//set the polling interval.
setInterval( function ()
{
// Now do the poll
promiseHTTP({ uri: allStatusUrl, json:true})
.then( function(json)
{
_currentHSDeviceStatus = json.Devices;
that.log(cyan("Poll # " + pollingCount) + ": Retrieved values for " + cyan(_currentHSDeviceStatus.length) + " HomeSeer devices.");
if(instantStatusEnabled == false && ((pollingCount % 5) == 0)) // only display once every 5 polls!
{
that.log(red("* Warning * - Instant status not enabled. Operating in polling mode only which may degrade performance."));
that.log(red('To enable ASCII Port / Instant Status, see WIKI "Instant Status" entry at:'));
that.log(red("https://github.com/jvmahon/homebridge-homeseer/wiki/Enable-Instant-Status-(HomeSeer-ASCII-Port)"));
}
for (var index in _currentHSDeviceStatus)
{
_HSValues[_currentHSDeviceStatus[index].ref] = parseFloat(_currentHSDeviceStatus[index].value);
} //endfor
updateAllFromHSData();
} // end then's function
) // end then
.catch(function(err)
{
that.log("HomeSeer poll attempt failed with error %s", err);
} // end catch's function
);//end catch
}, this.config.platformPoll * 1000 // end SetInterval's function
); //end setInterval function for polling loop
return true;
})
.catch( (error) =>
{
// If you get here without handling the error, then stop and report the error
this.log(error.message);
process.exit();
});
}
}
function HomeSeerAccessory(log, platformConfig, accessoryConfig, status) {
HomeSeer.log = this.log = log;
this.config = accessoryConfig;
this.ref = status.ref;
this.name = status.name
this.model = status.device_type_string;
this.access_url = platformConfig["host"] + "/JSON?";
// this.log(magenta("ASCII Instant Status Port is: " + platformConfig["ASCIIPort"]));
this.HomeSeerHost = platformConfig["host"];
// _accessURL = this.access_url;
HomeSeerHost = this.HomeSeerHost;
if (this.config.name)
this.name = this.config.name;
this.uuid_base = this.config.uuid_base;
if(this.config.can_dim)
this.can_dim = this.config.can_dim;
var that = this; // May be unused?
}
HomeSeerAccessory.prototype = {
identify: function (callback) {
callback();
},
// setHSValue function should be bound by .bind() to a HomeKit Service Object Characteristic!
setHSValue: function (level, callback) {
// console.log(magenta("* Debug * - setHSValue called with level: " + level +", for item type: " + this.displayName));
// Pass all the variables and functions used. There's probably a cleaner way to do this with module.exports but this works for now!
this.log = HomeSeer.log;
DataExchange.sendToHomeSeer(level, HomeSeerHost, Characteristic, Service, forceHSValue, getHSValue, instantStatusEnabled, this);
// Need to poll for window coverings that are controlled by a binary switch.
// But which were adjusted on the iOS Home app using the slider. If poll isn't done, then the icon remains in a changing state until next poll!
// when the slider set a target state that wasn't 0 or 100
if (this.UUID == Characteristic.CurrentPosition.UUID || this.UUID == Characteristic.TargetPosition.UUID)
{
setTimeout ( ()=>
{
var statusObjectGroup = _statusObjects[this.HSRef];
for (var thisCharacteristic in statusObjectGroup)
{
updateCharacteristicFromHSData(statusObjectGroup[thisCharacteristic], this.HSRef);
}
}, 500);
}
callback(null);
},
// blindly transmit a particular value to HomeSeer
transmitToHS: function(level, ref)
{
this.log("Transmitting to HomeSeer device: " + cyan(ref) +", a new value: " + cyan(level));
var url = HomeSeerHost + "/JSON?request=controldevicebyvalue&ref="
+ ref + "&value=" + level;
promiseHTTP(url)
.then( function(returnData) {
if(returnData.trim() == "error")
{
console.log(red("transmitToHS Error sending: " + level +", to: " + ref ));
return false
}
else
{
return true;
}
})
.catch(function(err)
{
console.log(red("transmitToHS function Failed with error: " + err ));
return false;
}
);
},
getServices: function () {
var services = [];
// The following function gets all the services for a device and returns them in the array 'services'
// and also populates the '_statusObjects' array with the Characteristics that need to be updated
// when polling HomeSeer
HKSetup.setupServices(this, services, _statusObjects, Characteristic, Service, getHSValue);
return services;
}
}
////////////////////////////////////////////////////////////////////////////////
// The following code creates devices which can trigger HomeSeer Events ///
////////////////////////////////////////////////////////////////////////////////
function HomeSeerEvent(log, platformConfig, eventConfig) {
this.log = log;
this.config = eventConfig;
this.name = eventConfig.eventName
this.model = "HomeSeer Event";
this.access_url = platformConfig["host"] + "/JSON?";
this.on_url = this.access_url + "request=runevent&group=" + encodeURIComponent(this.config.eventGroup) + "&name=" + encodeURIComponent(this.config.eventName);
if (this.config.offEventGroup && this.config.offEventName) {
this.off_url = this.access_url + "request=runevent&group=" + encodeURIComponent(this.config.offEventGroup) + "&name=" + encodeURIComponent(this.config.offEventName);
}
if (this.config.name)
this.name = this.config.name;
if (this.config.uuid_base)
this.uuid_base = this.config.uuid_base;
}
HomeSeerEvent.prototype = {
identify: function (callback) {
callback();
},
launchEvent: function (value, callback) {
this.log("Setting event value to %s", value);
var url = this.on_url;
if (value == 0 && this.off_url) {
url = this.off_url;
}
promiseHTTP(url)
.then( function(htmlString) {
console.log(this.name + ': launchEvent function succeeded!');
callback(null);
if(this.off_url==null && value != 0)
{
setTimeout(function() {
this.log(this.name + ': Momentary switch reseting to 0');
this.switchService.getCharacteristic(Characteristic.On).setValue(0);
}.bind(this),2000);
}
}.bind(this))
.catch(function(err)
{ console.log(this.name + ': launchEvent function failed: %s', err);
callback(err);
}.bind(this)
);
},
getServices: function () {
var services = []
var informationService = new Service.AccessoryInformation();
informationService
.setCharacteristic(Characteristic.Manufacturer, "HomeSeer")
.setCharacteristic(Characteristic.Model, this.model)
.setCharacteristic(Characteristic.SerialNumber, "HS Event " + this.config.eventGroup + " " + this.config.eventName);
services.push(informationService);
this.switchService = new Service.Switch();
this.switchService
.getCharacteristic(Characteristic.On)
.on('set', this.launchEvent.bind(this));
services.push(this.switchService);
return services;
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// The following code is associated with polling HomeSeer and updating HomeKit Devices from Returned data //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function updateCharacteristicFromHSData(characteristicObject, HSReference)
{ //console.debug("DEBUG - Executing updateCharacteristicFromHSData(obj, obj)");
//console.debug(" characteristicObject: " + JSON.stringify(characteristicObject));
//console.debug(" HSReference: " + JSON.stringify(HSReference));
// This performs the update to the HomeKit value from data received from HomeSeer
DataExchange.processDataFromHomeSeer(characteristicObject, HSReference, this, Characteristic, Service, getHSValue);
}
function updateAllFromHSData()
{
//console.debug("DEBUG - Executing updateAllFromHSData()");
for (var HSReference in _statusObjects)
{
var statusObjectGroup = _statusObjects[HSReference];
// console.log(magenta("* Debug * - Updating for reference " + HSReference + " a group with length " + statusObjectGroup.length));
for (var thisCharacteristic in statusObjectGroup)
{
updateCharacteristicFromHSData(statusObjectGroup[thisCharacteristic], HSReference);
}
} // end for aindex
pollingCount++; // Increase each time you poll. After at least 1 round of updates, no longer in startup mode!
} // end function
//////////////////// End of Polling HomeSeer Code /////////////////////////////
module.exports.platform = HomeSeerPlatform;
//////////////////// End of Polling HomeSeer Code /////////////////////////////
// Testing Only!
/*
function findBattery(findRef)
{
try
{
var returnValue = 9999;
// first find the index of the HomeSeer device having the reference findRef
var deviceIndex = allHSDevices.findIndex( (element, index, array)=> {return (element.ref == findRef)} );
if (deviceIndex == -1) return (-1);
var thisDevice = allHSDevices[deviceIndex]; // this is the HomeSeer data for the device being checked!
if ((thisDevice.associated_devices == null) || (thisDevice.associated_devices.length == 0)) return (-1);
// The associated device should be a root device. Get it! ...
var rootDevice = allHSDevices[ allHSDevices.findIndex( (element, index, array)=> {return (element.ref == thisDevice.associated_devices)} )];
if(rootDevice.device_type_string.indexOf("Battery") != (-1)) return (rootDevice.ref);
if(rootDevice.device_type_string.indexOf("Root Device") != (-1)) // if true, we found the root device. Check all its elements for a battery
{
// console.log(green("Found a Root Device with associated devices: " + rootDevice.associated_devices));
// does the found device have associated devices?
if (rootDevice.associated_devices != null)
{
for (var j in rootDevice.associated_devices)
{
var checkDeviceIndex = allHSDevices.findIndex( (element, index, array)=> {return (element.ref == rootDevice.associated_devices[j])} )
if (checkDeviceIndex != -1)
{
var candidateDevice = allHSDevices[checkDeviceIndex]
if (candidateDevice.device_type_string.indexOf("Battery") != -1)
{
// console.log(red("Found a Battery reference: " + candidateDevice.ref + " for device reference " + findRef));
return (candidateDevice.ref);
}
}
}
}
}
return (-1);
}
catch(err)
{
console.log(yellow("Warning - Error Executing Find Battery Function for device with HomeSeer reference: " + findRef));
console.log(yellow("Find Battery function may not function for non-Z-Wave devices. Manually specify your battery! " ));
console.log(yellow("Error: " + err));
return(-1);
}
}
*/
//////////////////////// Code to Parse a URI and separate out Host and Port /////////////
// parseUri 1.2.2
// (c) Steven Levithan <stevenlevithan.com>
// MIT License
function parseUri (str) {
var o = parseUri.options,
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
uri = {},
i = 14;
while (i--) uri[o.key[i]] = m[i] || "";
uri[o.q.name] = {};
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
if ($1) uri[o.q.name][$1] = $2;
});
return uri;
};
parseUri.options = {
strictMode: false,
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
q: {
name: "queryKey",
parser: /(?:^|&)([^&=]*)=?([^&]*)/g
},
parser: {
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
}
};