-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbrandModuleBase.ts
99 lines (86 loc) · 3.73 KB
/
brandModuleBase.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
import * as path from 'path';
import { PullBehavior } from 'pull-behavior';
import { SyncEvent } from 'ts-events';
import { Configuration } from '../config';
import { AcCommands, CommandsSet, RollerCommands, ToggleCommands } from '../models/backendInterfaces';
import { DeviceKind, DeviceStatus, ErrorResponse, Minion, MinionStatus } from '../models/sharedInterfaces';
import { logger } from '../utilities/logger';
export const CACHE_DIRECTORY = path.join('./data/', Configuration.runningMode, '/cache/');
/**
* Any smart devices brand communication module needs to inherit..
*/
export abstract class BrandModuleBase {
/**
* Cache file pull path.
*/
protected get cacheFilePath(): string {
return `${path.join(CACHE_DIRECTORY, typeof this.brandName === 'string' ? this.brandName : this.brandName?.join?.('-') )}.json`;
}
/**
* Brand name, should be unique in system.
*/
public abstract readonly brandName: string | string[];
/**
* All supported devices via current module metadata.
*/
public abstract readonly devices: DeviceKind[];
/**
* Let minions manager to know if any minion status changed by physical interface of device.
*/
public minionStatusChangedEvent = new SyncEvent<{
minionId: string;
status: MinionStatus;
}>();
/**
* Let minions manager to know if any minion physical devices status has been changed.
*/
public deviceStatusChangedEvent = new SyncEvent<{
deviceId: string;
status: DeviceStatus;
}>();
/**
* This PullBehavior Allows to retrieve minions array.
* Used when new status arrived and need all minions array to know for witch minion update belong.
* some of is by mac some by other data.
*/
public retrieveMinions: PullBehavior<Minion[]> = new PullBehavior<Minion[]>();
/**
* Get current status of minion. (such as minion status on off etc.)
* @param minion minion to get status for.
*/
public abstract getStatus(minion: Minion): Promise<MinionStatus | ErrorResponse>;
/**
* 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.
*/
public abstract setStatus(minion: Minion, setStatus: MinionStatus): Promise<void | ErrorResponse>;
/**
* Record data for currrent minion status.
* Note, only a 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.
*/
public abstract enterRecordMode(minion: Minion, statusToRecordFor: MinionStatus): Promise<void | ErrorResponse>;
/**
* 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.
*/
public abstract generateCommand(minion: Minion, statusToGenerateFor: MinionStatus): Promise<void | ErrorResponse>;
/**
* Update module with commands set, instead of recording on by one by the end user.
* 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.
*/
public abstract setFetchedCommands(minion: Minion, commandsSet: CommandsSet): Promise<void | ErrorResponse>;
/**
* 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.
*/
public abstract refreshCommunication(): Promise<void>;
}