forked from harriedegroot/nl.hdg.mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
464 lines (399 loc) · 14.9 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
'use strict';
const DEBUG = process.env.DEBUG === '1';
if (DEBUG) {
require('inspector').open(9229, '0.0.0.0', false);
}
const Homey = require('homey');
const { HomeyAPI } = require('athom-api');
const MQTTClient = require('./mqtt/MQTTClient');
const MessageQueue = require('./mqtt/MessageQueue');
const Message = require('./mqtt/Message');
const TopicsRegistry = require('./mqtt/TopicsRegistry');
const normalize = require('./normalize');
// Services
const Log = require("./Log.js");
const DeviceManager = require("./DeviceManager.js");
// Dispatchers
const SystemStateDispatcher = require("./dispatchers/SystemStateDispatcher.js");
const HomieDispatcher = require("./dispatchers/HomieDispatcher.js");
const HomeAssistantDispatcher = require("./dispatchers/HomeAssistantDispatcher.js");
// Commands
const CommandHandler = require("./commands/CommandHandler.js");
// Birth & Last will
const BIRTH_TOPIC = '{deviceId}/hub/status';
const BIRTH_MESSAGE = 'online';
const WILL_TOPIC = '{deviceId}/hub/status';
const WILL_MESSAGE = 'offline';
const DEFAULT_LOG_LEVEL = 'info';
class MQTTHub extends Homey.App {
async onInit() {
try {
Log.info('MQTT Hub is running...');
Homey.on('unload', () => this.uninstall());
this.settings = Homey.ManagerSettings.get('settings') || {};
this.birthWill = this.settings.birthWill !== false;
Log.setLevel(DEBUG ? 'debug' : this.settings.loglevel || DEFAULT_LOG_LEVEL);
Log.debug(this.settings, false, false);
this.api = await HomeyAPI.forCurrentHomey();
try {
this.system = await this._getSystemInfo();
} catch (e) {
Log.error('[boot] Failed to fetch system info');
Log.error(e);
this.system = {};
}
Log.debug("Update settings");
this.initSettings();
Log.debug("Initialize MQTT Client & Message queue");
this.mqttClient = new MQTTClient();
this.messageQueue = new MessageQueue(this.mqttClient);
this.topicsRegistry = new TopicsRegistry(this.messageQueue);
// Suppress memory leak warning
Log.debug("Suppress memory leak warning");
this.api.devices.setMaxListeners(9999); // HACK
// devices
Log.debug("Initialize DeviceManager");
this.deviceManager = new DeviceManager(this);
Log.debug("Register DeviceManager");
await this.deviceManager.register();
// run
Log.debug("Launch!");
await this.start();
this._initialized = true;
}
catch (e) {
Log.error('[boot] Failed to initialize app');
Log.error(e);
}
}
initSettings() {
const systemName = this.system.name || 'Homey';
if (this.settings.deviceId === undefined || this.settings.systemName !== systemName || this.settings.topicRoot) {
// Backwards compatibility
if (this.settings.topicRoot && !this.settings.homieTopic) {
this.settings.homieTopic = this.settings.topicRoot + '/' + (this.settings.deviceId || systemName);
delete this.settings.topicRoot;
}
this.settings.systemName = systemName;
this.settings.deviceId = this.settings.deviceId || this.settings.systemName;
Log.debug("Settings initial deviceId: " + this.settings.deviceId);
Homey.ManagerSettings.set('settings', this.settings);
Log.debug("Settings updated");
}
}
/**
* Start Hub
* */
async start() {
try {
if (!this.mqttClient.isRegistered()) {
Log.debug("Connect MQTT Client");
await this.mqttClient.connect();
}
if (this.mqttClient.isRegistered()) {
Log.info('start Hub');
await this._sendBirthMessage();
await this.run();
Log.info('app running: true');
} else {
Log.debug("Waiting for MQTT Client...");
this.mqttClient.onRegistered.subscribe(() => this.start(), true); // NOTE: Recursive
}
} catch (e) {
Log.error('Failed to start Hub');
Log.error(e);
}
}
/**
* Stop Hub
* */
async stop() {
if (!this._running) return;
this._running = false;
Log.info('stop Hub');
try {
await this._sendLastWillMessage();
} catch (e) {
Log.error("Failed to send last will message on stop");
Log.error(e);
}
try {
Log.info("Disconnect MQTT Client");
await this.mqttClient.disconnect();
} catch (e) {
Log.error("Failed to disconnect MQTTClient");
Log.error(e);
}
this._stopCommunicationProtocol();
await this._stopBroadcasters();
this._stopCommands();
delete this.protocol;
this.messageQueue.stop();
this.messageQueue.clear();
Log.info('app running: false');
}
/**
* Load configuration & run
* Note: Called from start & settings changed
* */
async run(force) {
if (force !== true && this._running) return;
this._running = true;
this._initProtocol();
await this._startCommands();
await this._startBroadcasters();
await this._startHomeAssistantDiscovery();
await this._startCommunicationProtocol();
}
_initProtocol() {
this.protocol = this.settings.protocol || 'homie3';
Log.info('Initialize communication protocol: ' + this.protocol);
switch (this.protocol) {
case "custom":
this.settings.homieTopic = this.settings.customTopic;
break;
case "homie3":
default:
this.settings.homieTopic = normalize(this.settings.homieTopic);
this.settings.topicIncludeClass = false;
this.settings.topicIncludeZone = false;
this.settings.normalize = true;
this.settings.percentageScale = "int";
this.settings.colorFormat = "hsv";
this.settings.broadcastDevices = true;
break;
}
// NOTE: All communication is based on the (configurable) Homie Convention...
Log.info("Initialize HomieDispatcher");
this.homieDispatcher = this.homieDispatcher || new HomieDispatcher(this);
this.homieDispatcher.applySettings(this.settings);
}
async _startCommands() {
if (this.settings.commands) {
Log.info("start commands");
// TODO: Refactor command handler with the abillity to register commands
this.commandHandler = this.commandHandler || new CommandHandler(this);
await this.commandHandler.init(this.settings);
} else {
this._stopCommands();
}
}
_stopCommands() {
if (this.commandHandler) {
Log.info("stop command handler");
this.commandHandler.destroy();
delete this.commandHandler;
}
}
async _startBroadcasters() {
if (this.settings.broadcastSystemState) {
Log.info("start system state broadcaster");
this.systemStateDispatcher = this.systemStateDispatcher || new SystemStateDispatcher(this);
await this.systemStateDispatcher.init(this.settings);
} else {
this._stopBroadcasters();
}
}
async _stopBroadcasters() {
if (this.systemStateDispatcher) {
Log.info("stop system state broadcaster");
try {
await this.systemStateDispatcher.destroy();
} catch (e) {
Log.error("Failed to destroy SystemState Dispatcher");
Log.error(e);
}
delete this.systemStateDispatcher;
}
}
async _startHomeAssistantDiscovery() {
if (this.settings.hass) {
Log.info("start Home Assistant Discovery");
this.homeAssistantDispatcher = this.homeAssistantDispatcher || new HomeAssistantDispatcher(this);
await this.homeAssistantDispatcher.init(this.settings, this.deviceChanges);
} else {
Log.info("stop Home Assistant Discovery");
this._stopHomeAssistantDiscovery();
}
}
_stopHomeAssistantDiscovery() {
if (this.homeAssistantDispatcher) {
Log.info("stop Home Assistant Discovery");
this.homeAssistantDispatcher.destroy();
delete this.homeAssistantDispatcher;
}
}
async _startCommunicationProtocol() {
// Register all devices & dispatch current state
Log.info('Start communication protocol: ' + this.protocol);
await this.homieDispatcher.init(this.settings, this.deviceChanges);
}
_stopCommunicationProtocol() {
// NOTE: All communication is based on the (configurable) Homie Convention...
if (this.homieDispatcher) {
Log.info('stop communication protocol: ' + this.protocol);
this.homieDispatcher.destroy();
delete this.homieDispatcher;
}
}
async _getSystemInfo() {
Log.debug("get system info");
const info = await this.api.system.getInfo();
return {
name: info.hostname,
version: info.homey_version
};
}
async getDevices() {
if (this.deviceManager) {
try {
Log.debug("get devices");
if (this.deviceManager && this.deviceManager.devices)
return this.deviceManager.devices;
const api = await HomeyAPI.forCurrentHomey();
return await api.devices.getDevices();
} catch (e) {
Log.info("Failed to get Homey's devices");
Log.error(e);
}
} else {
return [];
}
}
async getZones() {
if (this.deviceManager) {
try {
Log.debug("get zones");
if (this.deviceManager && this.deviceManager.zones)
return this.deviceManager.zones;
const api = await HomeyAPI.forCurrentHomey();
return await api.zones.getZones();
} catch (e) {
Log.info("Failed to get Homey's zones");
Log.error(e);
}
} else {
return [];
}
}
isRunning() {
return this._running;
}
setRunning(running) {
Log.info(running ? 'switch on' : 'switch off');
if (this.mqttClient) {
if (running) {
this.start()
.then(() => Log.info("App running"))
.catch(error => Log.error(error));
}
else {
this.stop()
.then(() => Log.info("App stopped"))
.catch(error => Log.error(error));
}
}
}
getState() {
if (this.messageQueue) {
const state = this.messageQueue.getState();
//Log.debug(state);
return state;
}
return {};
}
/**
* Publish all device states
* */
async refresh() {
Log.info('refresh');
if (!this._initialized) return;
if (this.mqttClient) {
await this.mqttClient.retryFailedSubscriptions();
}
if (this.homeAssistantDispatcher) {
this.homeAssistantDispatcher.dispatchState();
}
if (this.homieDispatcher) {
this.homieDispatcher.dispatchState();
}
}
async settingsChanged() {
try {
Log.info("Settings changed");
this.settings = Homey.ManagerSettings.get('settings') || {};
Log.debug(this.settings);
// birth & last will
if (this.settings.birthWill) {
if (this.birthWill !== this.settings.birthWill) {
await this._sendBirthMessage();
}
} else {
if (this.birthWill) {
await this._clearBirthWill();
}
}
this.birthWill = this.settings.birthWill;
// devices
if (this.deviceManager) {
this.deviceChanges = this.deviceManager.computeChanges(this.settings.devices);
this.deviceManager.setEnabledDevices(this.settings.devices);
}
if (this._initialized) {
await this.run(true);
}
// clean-up all messages for disabled devices
for (let deviceId of this.deviceChanges.disabled) {
if (typeof deviceId === 'string') {
this.topicsRegistry.remove(deviceId, true);
}
}
// clean-up
delete this.deviceChanges;
} catch (e) {
Log.error("Failed to update settings");
Log.error(e);
}
}
get _birthTopic() {
const deviceId = this.settings.normalize !== false ? normalize(this.settings.deviceId) : this.settings.deviceId;
return (this.settings.birthTopic || BIRTH_TOPIC).replace('{deviceId}', deviceId);
}
get _willTopic() {
const deviceId = this.settings.normalize !== false ? normalize(this.settings.deviceId) : this.settings.deviceId;
return (this.settings.willTopic || WILL_TOPIC).replace('{deviceId}', deviceId);
}
async _sendBirthMessage() {
Log.debug("Send birth message");
if (this.mqttClient && this.settings.birthWill !== false) {
const msg = this.settings.birthMessage || BIRTH_MESSAGE;
return await this.mqttClient.publish(new Message(this._birthTopic, msg, 1, true));
}
}
async _sendLastWillMessage() {
Log.debug("Send last will message");
if (this.mqttClient && this.settings.birthWill !== false) {
const msg = this.settings.willMessage || WILL_MESSAGE;
return await this.mqttClient.publish(new Message(this._willTopic, msg, 1, true));
}
}
async _clearBirthWill() {
await this.mqttClient.publish(new Message(this._birthTopic, null, 1, true));
await this.mqttClient.publish(new Message(this._willTopic, null, 1, true));
}
uninstall() {
try {
this._sendLastWillMessage()
.then(() => this.mqttClient.disconnect().catch(e => Log.error(e)))
.catch(error => {
Log.error("Failed to send last will message at uninstall");
Log.error(error);
this.mqttClient.disconnect().catch(e => Log.error(e));
});
// TODO: unregister topics from MQTTClient?
} catch(e) {
// nothing...
}
}
}
module.exports = MQTTHub;