forked from iobroker-community-adapters/ioBroker.harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharmony.js
executable file
·615 lines (567 loc) · 20.7 KB
/
harmony.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
/**
*
* ioBroker Logitech Harmony Adapter
*
* MIT License
*
*/
/* jshint -W097 */// jshint strict:false
/*jslint node: true */
'use strict';
const HarmonyHubDiscover = require(`@harmonyhub/discover`).Explorer;
const utils = require(`@iobroker/adapter-core`);
const HarmonyWS = require(`harmonyhubws`);
const hubs = {};
let adapter;
let discover;
const FORBIDDEN_CHARS = /[\][*,;'"`<>\\? ]/g;
const fixId = (id) => id.replace(FORBIDDEN_CHARS, `_`);
let manualDiscoverHubs;
let subnet;
let discoverInterval;
function startAdapter(options) {
options = options || {};
Object.assign(options, {
name: `harmony`
});
adapter = new utils.Adapter(options);
adapter.on(`stateChange`, (id, state) => {
if (!id || !state || state.ack) {
return;
}
const hub = id.split(`.`)[2];
if (!hubs[hub]) return;
const semaphore = hubs[hub].semaphore;
if (semaphore === undefined) {
adapter.log.warn(`state changed in offline hub`);
return;
}
if (semaphore.current > 0) {
adapter.log.info(`hub busy, stateChange delayed: ${id} = ${state.val}`);
}
semaphore.take(() => {
setBlocked(hub, true);
processStateChange(hub, id, state, () => {
if (semaphore.current === 1) {
setBlocked(hub, false);
}
semaphore.leave();
});
});
});
// callback has to be called under any circumstances
adapter.on(`unload`, callback => {
try {
adapter.log.info(`[END] Terminating`);
if (discover) {
discover.stop();
} // endIf
discover = null;
for (const hub in Object.keys(hubs)) {
clientStop(hub);
} // endFor
callback();
} catch (e) {
callback();
} // endTryCatch
});
adapter.on(`ready`, () => {
main();
});
return adapter;
} // endStartAdapter
function processStateChange(hub, id, state, callback) {
const tmp = id.split(`.`);
let channel = ``;
let name = ``;
if (tmp.length === 5) {
name = tmp.pop();
channel = tmp.pop();
} else {
adapter.log.warn(`unknown state change`);
return;
}
switch (channel) {
case `activities`:
switch (name) {
case `currentStatus`:
switchActivity(hub, undefined, 0, callback);
break;
case `currentActivity`:
adapter.log.warn(`change activities, not currentActivity`);
callback();
break;
default:
switchActivity(hub, name, state.val, callback);
break;
}
break;
default:
adapter.log.debug(`sending command: ${channel}:${name}`);
if (state.val) {
let ms = parseInt(state.val);
if (isNaN(ms) || ms < 100) {
ms = 100;
}
sendCommand(hub, id, ms, callback);
} else {
adapter.setState(id, {val: 0, ack: true});
callback();
}
break;
}
}
function sendCommand(hub, id, ms, callback) {
adapter.getObject(id, function (err, obj) {
if (err) {
adapter.log.warn(`cannot send command, unknown state`);
adapter.setState(id, {val: 0, ack: true});
callback();
return;
}
if (!hubs[hub].client || hubs[hub].client.status !== 3) {
adapter.log.warn(`error sending command, client offline`);
adapter.setState(id, {val: 0, ack: true});
callback();
return;
}
adapter.log.debug(`sending command: ${obj.common.name}`);
if (ms <= 250) {
hubs[hub].client.requestKeyPress(obj.native.action, 100);
adapter.setState(id, {val: 0, ack: true});
callback();
} else {
hubs[hub].client.requestKeyPress(obj.native.action, `hold`, ms);
setTimeout(() => {
adapter.setState(id, {val: 0, ack: true});
callback();
}, ms);
}
});
}
function switchActivity(hub, activityLabel, value, callback) {
// TODO: requestActivityChange is no longer a fully working promise (it resolves after execution now instead
// of after hub has confirmed that the activity has been changed). So we should just block hub before
// calling switchActivity and unblock on receiving changed activity in listener maybe in setStatusFromActivityID
if (!hubs[hub].client) {
adapter.log.warn(`[ACTIVITY] Error changing activity, client offline`);
callback();
return;
}
//get current Activity
value = parseInt(value);
if (isNaN(value)) value = 1;
if (value === 0) {
adapter.log.debug(`[ACTIVITY] Turning activity off`);
hubs[hub].client.requestActivityChange(`-1`).then(callback);
} else if (hubs[hub].activities_reverse.hasOwnProperty(activityLabel)) {
adapter.log.debug(`[ACTIVITY] Switching activity to: ${activityLabel}`);
hubs[hub].client.requestActivityChange(hubs[hub].activities_reverse[activityLabel]).then(callback);
} else {
adapter.log.warn(`[ACTIVITY] Activity does not exists`);
callback();
}
}
function main() {
manualDiscoverHubs = adapter.config.devices || [];
subnet = adapter.config.subnet || `255.255.255.255`;
discoverInterval = adapter.config.discoverInterval || 1000;
adapter.subscribeStates(`*`);
adapter.log.debug(`[START] Subnet: ${subnet}, Discovery interval: ${discoverInterval}`);
discoverStart();
}
function discoverStart() {
if (discover) {
adapter.log.debug(`[DISCOVER] Discover already started`);
return;
} // endIf
if (manualDiscoverHubs.length) {
let i = 1;
for (const manualDiscoverHub of manualDiscoverHubs) {
const name = "hub" + i;
const hub = {
friendlyName: name,
ip: manualDiscoverHub.ip
};
initHub(name, () => {
adapter.log.info(`[CONNECT] Connecting to ${hub.friendlyName} (${hub.ip})`);
connect(name, hub);
});
}
} else {
adapter.getPort(61991, port => {
discover = new HarmonyHubDiscover(port, {address: subnet, port: 5224, interval: discoverInterval});
discover.on(HarmonyHubDiscover.Events.ONLINE, hub => {
// Triggered when a new hub was found
if (hub.friendlyName !== undefined) {
let addHub = false;
const hubName = fixId(hub.friendlyName).replace(`.`, `_`);
if (manualDiscoverHubs.length) {
for (const manualDiscoverHub of manualDiscoverHubs) {
if (manualDiscoverHub.ip === hub.ip && !hubs[hubName]) {
adapter.log.info(`[DISCOVER] Discovered ${hub.friendlyName} (${hub.ip}) and will try to connect`);
addHub = true;
} else if (!hubs[hubName]) {
adapter.log.debug(`[DISCVOER] Discovered ${hub.friendlyName} (${hub.ip}) but won't try to connect, because \
manual search is configured and hub's ip not listed`);
}
} // endFor
} else if (!hubs[hubName]) {
adapter.log.info(`[DISCOVER] Discovered ${hub.friendlyName} (${hub.ip}) and will try to connect`);
addHub = true; // if no manual discovery --> add all hubs
}
if (addHub) {
initHub(hubName, () => {
// wait 2 seconds for hub before connecting
adapter.log.info(`[CONNECT] Connecting to ${hub.friendlyName} (${hub.ip})`);
connect(hubName, hub);
});
} // endIf
} // endIf
});
discover.on(`error`, err => {
adapter.log.warn(`[DISCOVER] Discover error: ${err.message}`);
});
discover.start();
adapter.log.info(`[DISCOVER] Searching for Harmony Hubs on ${subnet}`);
});
}
} // endDiscoverStart
function initHub(hub, callback) {
hubs[hub] = {
client: null,
connected: false,
activities: {},
activities_reverse: {},
devices: {},
devices_reverse: {},
blocked: true,
timestamp: null,
statesExist: false,
ioChannels: {},
ioStates: {},
isSync: false,
semaphore: require(`semaphore`)(1)
};
adapter.getState(`${hub}.hubConnected`, (err, state) => {
if (err || !state) {
adapter.log.debug(`hub not initialized`);
callback();
} else {
adapter.getChannelsOf(hub, (err, channels) => {
if (err || !channels) {
adapter.log.debug(`hub not initialized correctly`);
callback();
return;
}
for (let i = 0; i < channels.length; i++) {
const channel = channels[i];
if (channel.common.name === `activities`) {
hubs[hub].statesExist = true;
setBlocked(hub, true);
setConnected(hub, false);
hubs[hub].hasActivities = true;
adapter.log.debug(`hub initialized`);
continue;
}
hubs[hub].ioChannels[channel.common.name] = true;
}
adapter.getStates(`${hub}.activities.*`, (err, states) => {
if (err || !states) {
adapter.log.debug(`no activities found`);
callback();
return;
}
for (const state in states) {
if (states.hasOwnProperty(state)) {
const tmp = state.split(`.`);
const name = tmp.pop();
if (name !== `currentStatus` && name !== `currentActivity`) {
hubs[hub].ioStates[name] = true;
}
}
}
callback();
});
});
}
});
}
function clientStop(hub) {
setConnected(hub, false);
setBlocked(hub, false);
if (hubs[hub] && hubs[hub].client !== null) {
hubs[hub].client.close();
hubs[hub].client = null;
}
}
function connect(hub, hubObj) {
if (!hubs[hub] || hubs[hub].client !== null) return;
const client = new HarmonyWS(hubObj.ip);
hubs[hub].client = client;
client.on(`online`, () => {
setBlocked(hub, true);
setConnected(hub, true);
adapter.log.info(`[CONNECT] Connected to ${hubObj.friendlyName} (${hubObj.ip})`);
hubs[hub].client.requestConfig();
});
client.on(`offline`, () => {
if (hubs[hub].connected)
adapter.log.info(`[CONNECT] lost Connection to ${hubObj.friendlyName} (${hubObj.ip})`);
setConnected(hub, false);
setBlocked(hub, false);
});
client.on(`config`, (config) => {
try {
processConfig(hub, hubObj, config);
hubs[hub].client.requestState();
} catch (e) {
adapter.log.error(e);
}
});
client.on(`state`, (activityId, activityStatus) => {
processDigest(hub, activityId, activityStatus);
});
}
function processConfig(hub, hubObj, config) {
if (hubs[hub].isSync) {
setBlocked(hub, false);
setConnected(hub, true);
return;
}
/* create hub */
adapter.log.debug(`[PROCESS] Creating activities and devices`);
adapter.log.debug(`[PROCESS] Creating hub device`);
adapter.setObject(hub, {
type: `device`,
common: {
name: hub
},
native: hubObj
});
if (!hubs[hub].statesExist) {
adapter.setObject(`${hub}.hubConnected`, {
type: `state`,
common: {
name: `${hub}:hubConnected`,
role: `indicator.hubConnected`,
type: `boolean`,
write: false,
read: true
},
native: {}
});
}
adapter.setState(`${hub}.hubConnected`, {val: true, ack: true});
if (!hubs[hub].statesExist) {
adapter.setObject(`${hub}.hubBlocked`, {
type: `state`,
common: {
name: `${hub}:hubBlocked`,
role: `indicator.hubBlocked`,
type: `boolean`,
write: false,
read: true
},
native: {}
});
}
adapter.setState(`${hub}.hubBlocked`, {val: true, ack: true});
/* create activities */
adapter.log.debug(`creating activities`);
let channelName = `${hub}.activities`;
//create channel for activities
adapter.setObject(channelName, {
type: `channel`,
common: {
name: `activities`,
role: `media.activities`
},
native: {}
});
if (!hubs[hub].statesExist) {
adapter.setObject(`${channelName}.currentActivity`, {
type: `state`,
common: {
name: `activity:currentActivity`,
role: `indicator.activity`,
type: `string`,
write: true,
read: true
},
native: {}
});
adapter.setObject(`${channelName}.currentStatus`, {
type: `state`,
common: {
name: `activity:currentStatus`,
role: `indicator.status`,
type: `number`,
write: true,
read: true,
min: 0,
max: 3
},
native: {}
});
}
config.activity.forEach(activity => {
const activityLabel = fixId(activity.label).replace(`.`, `_`);
hubs[hub].activities[activity.id] = activityLabel;
hubs[hub].activities_reverse[activityLabel] = activity.id;
if (activity.id === `-1`) return;
//create activities
const activityChannelName = `${channelName}.${activityLabel}`;
//create channel for activity
delete activity.sequences;
delete activity.controlGroup;
delete activity.fixit;
delete activity.rules;
//create states for activity
if (!hubs[hub].ioStates.hasOwnProperty(activityLabel)) {
adapter.log.info(`[PROCESS] Added new activity: ${activityLabel}`);
adapter.setObject(activityChannelName, {
type: `state`,
common: {
name: `activity:${activityLabel}`,
role: `switch`,
type: `number`,
write: true,
read: true,
min: 0,
max: 3
},
native: activity
});
}
delete hubs[hub].ioStates[activityLabel];
});
/* create devices */
adapter.log.debug(`[PROCESS] Creating devices`);
channelName = hub;
config.device.forEach(device => {
const deviceLabel = fixId(device.label).replace(`.`, `_`);
const deviceChannelName = `${channelName}.${deviceLabel}`;
const controlGroup = device.controlGroup;
hubs[hub].devices[device.id] = deviceLabel;
hubs[hub].devices_reverse[deviceLabel] = device.id;
delete device.controlGroup;
//create channel for device
if (!hubs[hub].ioChannels.hasOwnProperty(deviceLabel)) {
adapter.log.info(`[PROCESS] Added new device: ${deviceLabel}`);
adapter.setObject(deviceChannelName, {
type: `channel`,
common: {
name: deviceLabel,
role: `media.device`
},
native: device
});
controlGroup.forEach(controlGroup => {
const groupName = controlGroup.name;
controlGroup.function.forEach(command => {
command.controlGroup = groupName;
command.deviceId = device.id;
const commandName = fixId(command.name).replace(`.`, `_`);
//create command
adapter.setObject(`${deviceChannelName}.${commandName}`, {
type: `state`,
common: {
name: `${deviceLabel}:${commandName}`,
role: `button`,
type: `number`,
write: true,
read: true,
min: 0
},
native: command
});
adapter.setState(`${deviceChannelName}.${commandName}`, {val: `0`, ack: true});
});
});
}
delete hubs[hub].ioChannels[deviceLabel];
});
adapter.log.debug(`[PROCESS] Deleting activities`);
Object.keys(hubs[hub].ioStates).forEach(activityLabel => {
adapter.log.info(`[PROCESS] Removed old activity: ${activityLabel}`);
adapter.deleteState(hub, `activities`, activityLabel);
});
adapter.log.debug(`[PROCESS] Deleting devices`);
Object.keys(hubs[hub].ioChannels).forEach(deviceLabel => {
adapter.log.info(`[PROCESS] Removed old device: ${deviceLabel}`);
adapter.deleteChannel(hub, deviceLabel);
});
hubs[hub].statesExist = true;
setBlocked(hub, false);
setConnected(hub, true);
hubs[hub].isSync = true;
adapter.log.info(`[PROCESS] Synced hub config for ${hubObj.friendlyName} (${hubObj.ip})`);
}
function processDigest(hub, activityId, activityStatus) {
//set hub activity to current activity label
setCurrentActivity(hub, activityId);
//Set hub status to current activity status
setCurrentStatus(hub, activityStatus);
if (activityId !== `-1`) { //if activityId is not powerOff
//set activityId's status
setStatusFromActivityID(hub, activityId, activityStatus);
//if status is 'running' set all other activities to 'off'
if (activityStatus === 2) {
//only one activity can run at once, set all other activities to off
for (const activity in hubs[hub].activities) {
if (hubs[hub].activities.hasOwnProperty(activity) && activity !== activityId) {
setStatusFromActivityID(hub, activity, 0);
}
}
}
} else { //set all activities to 'off' since powerOff activity is active
for (const oActivity in hubs[hub].activities) {
if (hubs[hub].activities.hasOwnProperty(oActivity)) {
setStatusFromActivityID(hub, oActivity, 0);
}
}
}
}
function setCurrentActivity(hub, id) {
if (!hubs[hub].activities.hasOwnProperty(id)) {
adapter.log.debug(`[SETACTIVITY] Unknown activityId: ${id}`);
return;
}
adapter.log.debug(`current activity: ${hubs[hub].activities[id]}`);
adapter.setState(`${hub}.activities.currentActivity`, {val: hubs[hub].activities[id], ack: true});
}
function setCurrentStatus(hub, status) {
if (hubs[hub].statesExist)
adapter.setState(`${hub}.activities.currentStatus`, {val: status, ack: true});
}
function setStatusFromActivityID(hub, id, value) {
if (id === `-1`) return;
if (!hubs[hub].activities.hasOwnProperty(id)) {
adapter.log.warn(`[SETSTATE] Unknown activityId: ${id}`);
return;
}
const channelName = fixId( `${hub}.activities.${hubs[hub].activities[id]}`);
adapter.setState(channelName, {val: value, ack: true});
}
function setBlocked(hub, bool) {
if (hubs[hub] && hubs[hub].statesExist) {
bool = Boolean(bool);
adapter.setState(`${hub}.hubBlocked`, {val: bool, ack: true});
hubs[hub].blocked = bool;
}
}
function setConnected(hub, bool) {
if (hubs[hub] && hubs[hub].statesExist) {
bool = Boolean(bool);
hubs[hub].connected = bool;
adapter.setState(`${hub}.hubConnected`, {val: bool, ack: true});
}
}
// If started as allInOne/compact mode => return function to create instance
if (module && module.parent) {
module.exports = startAdapter;
} else {
// or start the instance directly
startAdapter();
}