-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmodulesManager.ts
415 lines (370 loc) · 14.1 KB
/
modulesManager.ts
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
import * as moment from 'moment';
import { timeout as withTimeout, TimeoutError } from 'promise-timeout';
import { PullBehavior } from 'pull-behavior';
import { Configuration } from '../config';
import { DeviceKind, DeviceStatus, ErrorResponse, Minion, MinionDevice, MinionStatus } from '../models/sharedInterfaces';
import { MutexMinionsAccess } from '../utilities/mutex';
import { BrandModuleBase } from './brandModuleBase';
import { SyncEvent } from 'ts-events';
///////////////////////////////////////////////////////////////////////////////
//////////////// TO EXTEND: Place here handler reference //////////////////////
///////////////////////////////////////////////////////////////////////////////
import { CommandsSet } from '../models/backendInterfaces';
import { BroadlinkHandler } from './broadlink/broadlinkHandler';
import { MiioHandler } from './miio/miioHandler';
import { MockHandler } from './mock/mockHandler';
import { MqttHandler } from './mqtt/mqttHandler';
import { OrviboHandler } from './orvibo/orviboHandler';
import { TasmotaHandler } from './tasmota/tasmotaHandler';
import { TuyaHandler } from './tuya/tuyaHandler';
import { YeelightHandler } from './yeelight/yeelightHandler';
import { logger } from '../utilities/logger';
import { DeepCopy } from '../utilities/deepCopy';
export class ModulesManager {
/**
* Get all devices kinds of all brands.
*/
public get devicesKind(): DeviceKind[] {
const modulesDevices: DeviceKind[] = [];
for (const moduleHandler of this.modulesHandlers) {
modulesDevices.push(...moduleHandler.devices);
}
return modulesDevices;
}
/**
* Let subscribe to any status minion changed. from any brand module.
*/
public minionStatusChangedEvent = new SyncEvent<{
minionId: string;
status: MinionStatus;
}>();
/**
* Let subscribe to any status minion changed. from any brand module.
*/
public deviceStatusChangedEvent = new SyncEvent<{
mac: string;
status: DeviceStatus;
}>();
/**
* Allows to retrieve minions array. (used as proxy for all modulus).
*/
public retrieveMinions: PullBehavior<Minion[]> = new PullBehavior<Minion[]>();
private readonly COMMUNICATE_DEVICE_TIMEOUT = moment.duration(15, 'seconds');
/**
* All modules handlers
*/
private modulesHandlers: BrandModuleBase[] = [];
constructor() {
/** Currently, do not coverage modules, only 'mock' for other tests. */
if (Configuration.runningMode === 'test') {
this.initHandler(new MockHandler());
return;
}
this.initHandlers();
}
/**
* Get current status of minion. (such as minion status on off etc.)
*/
@MutexMinionsAccess
public async getStatus(minion: Minion): Promise<MinionStatus | ErrorResponse> {
const minionModule = this.getMinionModule(minion.device.brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${minion.device.brand}- brand`,
};
throw errorResponse;
}
try {
logger.debug(`[ModulesManager.getStatus] getting minion "${minion.minionId}" status using "${minionModule.brandName}" module ...`);
const status = await withTimeout(minionModule.getStatus(minion), this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds());
logger.debug(`[ModulesManager.getStatus] getting minion "${minion.minionId}" status "${JSON.stringify(status)}" succeed`);
return status;
} catch (error) {
logger.warn(`[ModulesManager.getStatus] getting minion "${minion.minionId}" status failed ${error.message || JSON.stringify(error)}`);
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Set minion new status. (such as turn minion on off etc.)
* @param minion minion to set status for.
* @param setStatus the new status to set.
*/
@MutexMinionsAccess
public async setStatus(minion: Minion, setStatus: MinionStatus): Promise<void | ErrorResponse> {
const minionModule = this.getMinionModule(minion.device.brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${minion.device.brand}- brand`,
};
throw errorResponse;
}
// Clone object, to make sure no drivers changing it to all
const setStatusCopy = DeepCopy(setStatus);
try {
logger.debug(`[ModulesManager.setStatus] setting minion "${minion.minionId}" status "${JSON.stringify(setStatus)}" using "${minionModule.brandName}" module ...`);
await withTimeout(
minionModule.setStatus(minion, setStatusCopy),
this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds(),
);
logger.debug(`[ModulesManager.setStatus] setting minion "${minion.minionId}" status succeed`);
} catch (error) {
logger.error(`[ModulesManager.getStatus] setting minion "${minion.minionId}" status failed error:"${error.message || JSON.stringify(error)}"`);
logger.error(`[ModulesManager.getStatus] setting minion "${minion.minionId}" status failed set status attempt "${JSON.stringify(setStatusCopy)}}" minion full state "${JSON.stringify(minion)}"`);
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Record data for current minion status.
* Note, only few devices models support this feature.
* For example it is used when need to record IR data to math status for next use.
* @param minion minion to record for.
* @param statusToRecordFor the specific status to record for.
*/
@MutexMinionsAccess
public async enterRecordMode(minion: Minion, statusToRecordFor: MinionStatus): Promise<void | ErrorResponse> {
const minionModule = this.getMinionModule(minion.device.brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${minion.device.brand}- brand`,
};
throw errorResponse;
}
/** Make sure that minion support recording */
const modelKind = this.getModelKind(minionModule, minion.device);
if (!modelKind || !modelKind.isRecordingSupported) {
const errorResponse: ErrorResponse = {
responseCode: 6409,
message: `the minioin not support command recording or sending`,
};
throw errorResponse;
}
try {
return await withTimeout(
minionModule.enterRecordMode(minion, statusToRecordFor),
this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds(),
);
} catch (error) {
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Generate an RF or IR command for given status.
* Note, only a few devices models support this feature.
* For example, it is used to generate RF command to the RF wall switch, instead of buying remote and record the commands.
* @param minion minion to generate for.
* @param statusToGenerateFor the specific status to record for.
*/
@MutexMinionsAccess
public async generateCommand(minion: Minion, statusToGenerateFor: MinionStatus): Promise<void | ErrorResponse> {
const minionModule = this.getMinionModule(minion.device.brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${minion.device.brand}- brand`,
};
throw errorResponse;
}
/** Make sure that minion supprt recording */
const modelKind = this.getModelKind(minionModule, minion.device);
if (!modelKind || !modelKind.isRecordingSupported) {
const errorResponse: ErrorResponse = {
responseCode: 6409,
message: `the minioin not support command recording or sending`,
};
throw errorResponse;
}
try {
return await withTimeout(
minionModule.generateCommand(minion, statusToGenerateFor),
this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds(),
);
} catch (error) {
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Update the current module with fetched commands set.
* see https://github.com/casanet/rf-commands-repo project API.
* @param minion minioin to update commands by fetched commands set.
* @param commandsSet Fetched RF commands set.
*/
@MutexMinionsAccess
public async setFetchedCommands(minion: Minion, commandsSet: CommandsSet): Promise<void | ErrorResponse> {
const minionModule = this.getMinionModule(minion.device.brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${minion.device.brand}- brand`,
};
throw errorResponse;
}
/** Make sure that minion support recording */
const modelKind = this.getModelKind(minionModule, minion.device);
if (!modelKind || !modelKind.isFetchCommandsAvailable) {
const errorResponse: ErrorResponse = {
responseCode: 6409,
message: `the minion not support command recording or sending`,
};
throw errorResponse;
}
try {
return await withTimeout(
minionModule.setFetchedCommands(minion, commandsSet),
this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds(),
);
} catch (error) {
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Refresh and reset all module communications.
* Used for cleaning up communication before re-reading data, after communication auth changed or just hard reset module etc.
*/
@MutexMinionsAccess
public async refreshModules(): Promise<void> {
for (const brandHandler of this.modulesHandlers) {
try {
await withTimeout(brandHandler.refreshCommunication(), this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds());
} catch (error) { }
}
}
/**
* Reset module communication.
* @param brand Brand module to reset.
*/
@MutexMinionsAccess
public async refreshModule(brand: string): Promise<void> {
const minionModule = this.getMinionModule(brand);
if (!minionModule) {
const errorResponse: ErrorResponse = {
responseCode: 7404,
message: `there is not module for -${brand}- brand`,
};
throw errorResponse;
}
try {
return await withTimeout(minionModule.refreshCommunication(), this.COMMUNICATE_DEVICE_TIMEOUT.asMilliseconds());
} catch (error) {
if (error instanceof TimeoutError) {
throw {
responseCode: 1503,
message: 'communication with device fail, timeout',
} as ErrorResponse;
}
throw error;
}
}
/**
* Init any brand module in system.
*/
private initHandlers(): void {
////////////////////////////////////////////////////////////////////////
//////////////// TO EXTEND: Init here new handler //////////////////////
////////////////////////////////////////////////////////////////////////
this.initHandler(new MockHandler());
this.initHandler(new TuyaHandler());
this.initHandler(new TasmotaHandler());
this.initHandler(new BroadlinkHandler());
this.initHandler(new YeelightHandler());
this.initHandler(new OrviboHandler());
this.initHandler(new MiioHandler());
this.initHandler(new MqttHandler());
}
/**
* Hold the hendler instance and registar to minions status changed.
* @param brandModule the handler instance.
*/
private initHandler(brandModule: BrandModuleBase): void {
/**
* Set pull proxy method to get all last minions array.
*/
brandModule.retrieveMinions.setPullMethod(
async (): Promise<Minion[]> => {
if (!this.retrieveMinions.isPullingAvailble) {
return [];
}
return await this.retrieveMinions.pull();
},
);
brandModule.minionStatusChangedEvent.attach(changedMinionStatus => {
this.minionStatusChangedEvent.post(changedMinionStatus);
});
brandModule.deviceStatusChangedEvent.attach(changedMinionDeviceStatus => {
this.onDeviceStatusUpdate(changedMinionDeviceStatus);
});
this.modulesHandlers.push(brandModule);
}
/**
* Get minion communication module based on brand name.
* @param brandName the brand name.
* @returns The module instance or undefined if not exist.
*/
private getMinionModule(brandName: string): BrandModuleBase {
for (const brandHandler of this.modulesHandlers) {
if (brandName === brandHandler?.brandName || brandHandler?.brandName?.includes?.(brandName)) {
return brandHandler;
}
}
}
/**
* Get DeviceKind of minion device.
* @param minionsBrandModuleBase The rand module to look in.
* @param minionDevice the minion device to get kind for.
* @returns The device kind.
*/
private getModelKind(minionsBrandModuleBase: BrandModuleBase, minionDevice: MinionDevice): DeviceKind {
for (const deviceKind of minionsBrandModuleBase.devices) {
if (deviceKind.brand === minionDevice.brand && deviceKind.model === minionDevice.model) {
return deviceKind;
}
}
}
private async onDeviceStatusUpdate(deviceStatusUpdate: { deviceId: string; status: DeviceStatus }) {
if (!this.retrieveMinions.isPullingAvailble) {
return;
}
const minions = await this.retrieveMinions.pull();
const minion = minions.find(m => m?.device?.deviceId === deviceStatusUpdate.deviceId);
if (!minion) {
return;
}
this.deviceStatusChangedEvent.post({
mac: minion.device?.pysicalDevice?.mac || '',
status: { ...(minion?.device?.pysicalDevice?.deviceStatus || {}), ...deviceStatusUpdate.status }
});
}
}
export const modulesManager = new ModulesManager();