nodejs-poolcontroller 8.1.2 → 8.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/.eslintrc.json +36 -36
  2. package/.github/ISSUE_TEMPLATE/1-bug-report.yml +84 -84
  3. package/.github/ISSUE_TEMPLATE/2-docs.md +12 -12
  4. package/.github/ISSUE_TEMPLATE/3-proposal.md +28 -28
  5. package/.github/ISSUE_TEMPLATE/config.yml +8 -8
  6. package/.github/copilot-instructions.md +63 -0
  7. package/.github/workflows/ghcr-publish.yml +67 -0
  8. package/AGENTS.md +597 -0
  9. package/CONTRIBUTING.md +74 -74
  10. package/Changelog +292 -257
  11. package/Dockerfile +62 -19
  12. package/Gruntfile.js +40 -40
  13. package/LICENSE +661 -661
  14. package/README.md +318 -191
  15. package/anslq25/MessagesMock.ts +221 -221
  16. package/anslq25/boards/MockBoardFactory.ts +49 -49
  17. package/anslq25/boards/MockEasyTouchBoard.ts +696 -696
  18. package/anslq25/boards/MockSystemBoard.ts +216 -216
  19. package/anslq25/chemistry/MockChlorinator.ts +98 -98
  20. package/anslq25/pumps/MockPump.ts +83 -83
  21. package/app.ts +115 -115
  22. package/config/Config.ts +57 -7
  23. package/config/VersionCheck.ts +63 -35
  24. package/controller/Constants.ts +809 -805
  25. package/controller/Equipment.ts +2688 -2664
  26. package/controller/Errors.ts +181 -181
  27. package/controller/Lockouts.ts +549 -549
  28. package/controller/State.ts +3738 -3690
  29. package/controller/boards/AquaLinkBoard.ts +1003 -1003
  30. package/controller/boards/BoardFactory.ts +53 -53
  31. package/controller/boards/EasyTouchBoard.ts +3202 -3202
  32. package/controller/boards/IntelliCenterBoard.ts +4393 -3899
  33. package/controller/boards/IntelliComBoard.ts +69 -69
  34. package/controller/boards/IntelliTouchBoard.ts +382 -382
  35. package/controller/boards/NixieBoard.ts +1944 -1929
  36. package/controller/boards/SunTouchBoard.ts +400 -400
  37. package/controller/boards/SystemBoard.ts +5268 -5268
  38. package/controller/comms/Comms.ts +1272 -1214
  39. package/controller/comms/ScreenLogic.ts +1665 -1665
  40. package/controller/comms/messages/Messages.ts +1433 -1243
  41. package/controller/comms/messages/config/ChlorinatorMessage.ts +5 -0
  42. package/controller/comms/messages/config/CircuitGroupMessage.ts +0 -0
  43. package/controller/comms/messages/config/CircuitMessage.ts +0 -0
  44. package/controller/comms/messages/config/ConfigMessage.ts +6 -0
  45. package/controller/comms/messages/config/CoverMessage.ts +0 -0
  46. package/controller/comms/messages/config/CustomNameMessage.ts +31 -31
  47. package/controller/comms/messages/config/EquipmentMessage.ts +216 -210
  48. package/controller/comms/messages/config/ExternalMessage.ts +96 -10
  49. package/controller/comms/messages/config/FeatureMessage.ts +0 -0
  50. package/controller/comms/messages/config/GeneralMessage.ts +0 -0
  51. package/controller/comms/messages/config/HeaterMessage.ts +0 -0
  52. package/controller/comms/messages/config/IntellichemMessage.ts +0 -0
  53. package/controller/comms/messages/config/OptionsMessage.ts +194 -174
  54. package/controller/comms/messages/config/PumpMessage.ts +0 -0
  55. package/controller/comms/messages/config/RemoteMessage.ts +0 -0
  56. package/controller/comms/messages/config/ScheduleMessage.ts +401 -390
  57. package/controller/comms/messages/config/SecurityMessage.ts +0 -0
  58. package/controller/comms/messages/config/ValveMessage.ts +0 -0
  59. package/controller/comms/messages/status/ChlorinatorStateMessage.ts +0 -0
  60. package/controller/comms/messages/status/EquipmentStateMessage.ts +1158 -822
  61. package/controller/comms/messages/status/HeaterStateMessage.ts +135 -135
  62. package/controller/comms/messages/status/IntelliChemStateMessage.ts +448 -448
  63. package/controller/comms/messages/status/IntelliValveStateMessage.ts +36 -36
  64. package/controller/comms/messages/status/PumpStateMessage.ts +0 -0
  65. package/controller/comms/messages/status/RegalModbusStateMessage.ts +411 -0
  66. package/controller/comms/messages/status/VersionMessage.ts +103 -41
  67. package/controller/nixie/Nixie.ts +173 -173
  68. package/controller/nixie/NixieEquipment.ts +104 -104
  69. package/controller/nixie/bodies/Body.ts +120 -120
  70. package/controller/nixie/bodies/Filter.ts +135 -135
  71. package/controller/nixie/chemistry/ChemController.ts +2724 -2724
  72. package/controller/nixie/chemistry/ChemDoser.ts +806 -806
  73. package/controller/nixie/chemistry/Chlorinator.ts +367 -367
  74. package/controller/nixie/circuits/Circuit.ts +478 -478
  75. package/controller/nixie/heaters/Heater.ts +834 -834
  76. package/controller/nixie/pumps/Pump.ts +1194 -996
  77. package/controller/nixie/schedules/Schedule.ts +401 -401
  78. package/controller/nixie/valves/Valve.ts +170 -170
  79. package/defaultConfig.json +352 -347
  80. package/docker-compose.yml +32 -0
  81. package/logger/DataLogger.ts +448 -448
  82. package/logger/Logger.ts +448 -436
  83. package/package.json +58 -60
  84. package/sendSocket.js +32 -32
  85. package/tsconfig.json +25 -25
  86. package/types/express-multer.d.ts +32 -0
  87. package/web/Server.ts +1937 -1927
  88. package/web/bindings/aqualinkD.json +559 -559
  89. package/web/bindings/influxDB.json +1066 -1066
  90. package/web/bindings/mqtt.json +721 -721
  91. package/web/bindings/mqttAlt.json +746 -746
  92. package/web/bindings/rulesManager.json +54 -54
  93. package/web/bindings/smartThings-Hubitat.json +31 -31
  94. package/web/bindings/valveRelays.json +20 -20
  95. package/web/bindings/vera.json +25 -25
  96. package/web/interfaces/baseInterface.ts +188 -188
  97. package/web/interfaces/httpInterface.ts +148 -148
  98. package/web/interfaces/influxInterface.ts +283 -283
  99. package/web/interfaces/mqttInterface.ts +695 -695
  100. package/web/interfaces/ruleInterface.ts +101 -87
  101. package/web/services/config/Config.ts +1063 -1053
  102. package/web/services/config/ConfigSocket.ts +0 -0
  103. package/web/services/state/State.ts +0 -0
  104. package/web/services/state/StateSocket.ts +0 -0
  105. package/web/services/utilities/Utilities.ts +233 -233
  106. package/.github/workflows/docker-publish-njsPC-linux.yml +0 -50
@@ -1,174 +1,174 @@
1
- import * as path from 'path';
2
- import * as fs from 'fs';
3
- import * as os from 'os';
4
- import { webApp } from "../../web/Server";
5
- import { logger } from "../../logger/Logger";
6
- import { INixieControlPanel } from "./NixieEquipment";
7
- import { NixieChemControllerCollection } from "./chemistry/ChemController";
8
- import { NixieChemDoserCollection } from "./chemistry/ChemDoser";
9
-
10
- import { sys, PoolSystem } from "../../controller/Equipment";
11
- import { NixieCircuitCollection } from './circuits/Circuit';
12
- import { NixieBodyCollection } from './bodies/Body';
13
- import { NixieValveCollection } from './valves/Valve';
14
- import { NixieHeaterCollection } from './heaters/Heater';
15
- import { config } from '../../config/Config';
16
- import { NixieFilterCollection } from './bodies/Filter';
17
- import { NixieChlorinatorCollection } from './chemistry/Chlorinator';
18
- import { NixiePump, NixiePumpCollection } from './pumps/Pump';
19
- import { NixieScheduleCollection } from './schedules/Schedule';
20
-
21
- /************************************************************************
22
- * Nixie: Nixie is a control panel that controls devices as a master. It
23
- * can extend an existing *Touch or Center control panel. Or it can run
24
- * standalone as a master controller. The NixieControlPanel will always
25
- * be instantiated to control equipment when that equipment is not
26
- * supported or controlled by a traditional OCP. However, if a traditional
27
- * OCP exists, it will be subordinate to that OCP in regard to controlling
28
- * pool bodies.
29
- *
30
- * Equipment: Equipment identified as ncp (Nixie Control Panel) will be
31
- * managed by the Nixie controller. It works hand-in-glove with the REM
32
- * (Relay Equipment Manager) to provide low level hardware support.
33
- *
34
- * RS485: RS485 occurs directly within nixie through the standard RS485
35
- * bus identified for njspc and does not route through REM. This is an
36
- * important distinction to provide robust hardware level communication.
37
- * Items Controlled on this channel include: Pumps, Chlorinators, and
38
- * IntelliChem controllers. When and if IntelliValve functions become
39
- * available these too will be performed through the njspc RS485 bus.
40
- *
41
- * Configuration and State Management:
42
- * Nixie uses the underlying njspc configuration structures. The intent
43
- * is not to replace these rather the intention is to extend them with
44
- * low level control. For this reason, only when a Nixie is the only
45
- * master controller on the pool do commands get routed through NixieBoard.
46
- * this mode is identified at startup. When a particular piece of equipment
47
- * is identified to be controlled by Nixie as a master then the command
48
- * will eventually be marshalled to the NixieControlPanel. Any connected
49
- * OCP will get first crack at it.
50
- *
51
- * LifeCycle: The Nixie controller does not persist data outside of
52
- * the PoolConfig.json and PoolState.json files. It is initialized
53
- * at startup and torn down when the application is stopped.
54
- * */
55
- export class NixieControlPanel implements INixieControlPanel {
56
- // Only equipment controlled by Nixie is represented on the controller. If interaction with
57
- // other equipment is required this should be sent back through the original controller.
58
- // Command sequence is <OCP>Board -> SystemBoard -> NixieController whenever the master is not identified as Nixie.
59
- chemDosers: NixieChemDoserCollection = new NixieChemDoserCollection(this);
60
- chemControllers: NixieChemControllerCollection = new NixieChemControllerCollection(this);
61
- chlorinators: NixieChlorinatorCollection = new NixieChlorinatorCollection(this);
62
- circuits: NixieCircuitCollection = new NixieCircuitCollection(this);
63
- bodies: NixieBodyCollection = new NixieBodyCollection(this);
64
- filters: NixieFilterCollection = new NixieFilterCollection(this);
65
- valves: NixieValveCollection = new NixieValveCollection(this);
66
- heaters: NixieHeaterCollection = new NixieHeaterCollection(this);
67
- pumps: NixiePumpCollection = new NixiePumpCollection(this);
68
- schedules: NixieScheduleCollection = new NixieScheduleCollection(this);
69
- public async setServiceModeAsync() {
70
- await this.circuits.setServiceModeAsync();
71
- await this.heaters.setServiceModeAsync();
72
- await this.chlorinators.setServiceModeAsync();
73
- await this.chemControllers.setServiceModeAsync();
74
- await this.chemDosers.setServiceModeAsync();
75
- await this.pumps.setServiceModeAsync();
76
- }
77
- public async initAsync(equipment: PoolSystem) {
78
- try {
79
-
80
- // We need to tell Nixie what her place is. If there is an existing OCP she needs to be a partner. However, if
81
- // she is the only master then she needs to step up and take command. The way we will signify this is
82
- // by using settings in config.json.
83
- // The controller types define the number of bodies and whether they are shared.
84
- logger.info(`Initializing Nixie Controller`);
85
- await this.bodies.initAsync(equipment.bodies);
86
- await this.filters.initAsync(equipment.filters);
87
- await this.circuits.initAsync(equipment.circuits);
88
- await this.valves.initAsync(equipment.valves);
89
- await this.heaters.initAsync(equipment.heaters);
90
- await this.chlorinators.initAsync(equipment.chlorinators);
91
- await this.chemControllers.initAsync(equipment.chemControllers);
92
- await this.chemDosers.initAsync(equipment.chemDosers);
93
- await this.pumps.initAsync(equipment.pumps);
94
- await this.schedules.initAsync(equipment.schedules);
95
- logger.info(`Nixie Controller Initialized`)
96
- }
97
- catch (err) { return Promise.reject(err); }
98
- }
99
- public async readLogFile(logFile: string): Promise<string[]> {
100
- try {
101
- let logPath = path.join(process.cwd(), '/logs');
102
- if (!fs.existsSync(logPath)) fs.mkdirSync(logPath);
103
- logPath += (`/${logFile}`);
104
- let lines = [];
105
- if (fs.existsSync(logPath)) {
106
- let buff = fs.readFileSync(logPath);
107
- lines = buff.toString().split('\n');
108
- }
109
- return lines;
110
- } catch (err) { logger.error(`Error reading log file ${logFile}: ${err.message}`); }
111
- }
112
- public async logData(logFile: string, data: any) {
113
- try {
114
- let logPath = path.join(process.cwd(), '/logs');
115
- if (!fs.existsSync(logPath)) fs.mkdirSync(logPath);
116
- logPath += (`/${logFile}`);
117
- let lines = [];
118
- if (fs.existsSync(logPath)) {
119
- let buff = fs.readFileSync(logPath);
120
- lines = buff.toString().split('\n');
121
- }
122
- if (typeof data === 'object')
123
- lines.unshift(JSON.stringify(data));
124
- else
125
- lines.unshift(data.toString());
126
- fs.writeFileSync(logPath, lines.join('\n'));
127
- } catch (err) { logger.error(`Error logging to ${logFile}: ${err.message}`); }
128
- }
129
- public async closeAsync() {
130
- // Close all the associated equipment.
131
- await this.chemDosers.closeAsync();
132
- await this.chemControllers.closeAsync();
133
- await this.chlorinators.closeAsync();
134
- await this.heaters.closeAsync();
135
- await this.circuits.closeAsync();
136
- await this.pumps.closeAsync();
137
- await this.filters.closeAsync();
138
- await this.bodies.closeAsync();
139
- await this.valves.closeAsync();
140
- }
141
- /*
142
- * This method is used to obtain a list of existing REM servers for configuration. This returns all servers and
143
- * their potential devices and is not designed to be used at run-time or to detect failure.
144
- *
145
- */
146
- public async getREMServers() {
147
- try {
148
- let srv = [];
149
- let servers = webApp.findServersByType('rem');
150
- if (typeof servers !== 'undefined') {
151
- for (let i = 0; i < servers.length; i++) {
152
- let server = servers[i];
153
- // Sometimes I hate type safety.
154
- let devices = typeof server['getDevices'] === 'function' ? await server['getDevices']() : [];
155
- let int = config.getInterfaceByUuid(servers[i].uuid);
156
- srv.push({
157
- uuid: servers[i].uuid,
158
- name: servers[i].name,
159
- type: servers[i].type,
160
- isRunning: servers[i].isRunning,
161
- isConnected: servers[i].isConnected,
162
- devices: devices,
163
- remoteConnectionId: servers[i].remoteConnectionId,
164
- interface: int
165
- });
166
- }
167
- await ncp.chemControllers.syncRemoteREMFeeds(srv);
168
- }
169
- return srv;
170
- } catch (err) { logger.error(`Error gettting REM Servers: ${err.message}`); }
171
- }
172
- }
173
-
1
+ import * as path from 'path';
2
+ import * as fs from 'fs';
3
+ import * as os from 'os';
4
+ import { webApp } from "../../web/Server";
5
+ import { logger } from "../../logger/Logger";
6
+ import { INixieControlPanel } from "./NixieEquipment";
7
+ import { NixieChemControllerCollection } from "./chemistry/ChemController";
8
+ import { NixieChemDoserCollection } from "./chemistry/ChemDoser";
9
+
10
+ import { sys, PoolSystem } from "../../controller/Equipment";
11
+ import { NixieCircuitCollection } from './circuits/Circuit';
12
+ import { NixieBodyCollection } from './bodies/Body';
13
+ import { NixieValveCollection } from './valves/Valve';
14
+ import { NixieHeaterCollection } from './heaters/Heater';
15
+ import { config } from '../../config/Config';
16
+ import { NixieFilterCollection } from './bodies/Filter';
17
+ import { NixieChlorinatorCollection } from './chemistry/Chlorinator';
18
+ import { NixiePump, NixiePumpCollection } from './pumps/Pump';
19
+ import { NixieScheduleCollection } from './schedules/Schedule';
20
+
21
+ /************************************************************************
22
+ * Nixie: Nixie is a control panel that controls devices as a master. It
23
+ * can extend an existing *Touch or Center control panel. Or it can run
24
+ * standalone as a master controller. The NixieControlPanel will always
25
+ * be instantiated to control equipment when that equipment is not
26
+ * supported or controlled by a traditional OCP. However, if a traditional
27
+ * OCP exists, it will be subordinate to that OCP in regard to controlling
28
+ * pool bodies.
29
+ *
30
+ * Equipment: Equipment identified as ncp (Nixie Control Panel) will be
31
+ * managed by the Nixie controller. It works hand-in-glove with the REM
32
+ * (Relay Equipment Manager) to provide low level hardware support.
33
+ *
34
+ * RS485: RS485 occurs directly within nixie through the standard RS485
35
+ * bus identified for njspc and does not route through REM. This is an
36
+ * important distinction to provide robust hardware level communication.
37
+ * Items Controlled on this channel include: Pumps, Chlorinators, and
38
+ * IntelliChem controllers. When and if IntelliValve functions become
39
+ * available these too will be performed through the njspc RS485 bus.
40
+ *
41
+ * Configuration and State Management:
42
+ * Nixie uses the underlying njspc configuration structures. The intent
43
+ * is not to replace these rather the intention is to extend them with
44
+ * low level control. For this reason, only when a Nixie is the only
45
+ * master controller on the pool do commands get routed through NixieBoard.
46
+ * this mode is identified at startup. When a particular piece of equipment
47
+ * is identified to be controlled by Nixie as a master then the command
48
+ * will eventually be marshalled to the NixieControlPanel. Any connected
49
+ * OCP will get first crack at it.
50
+ *
51
+ * LifeCycle: The Nixie controller does not persist data outside of
52
+ * the PoolConfig.json and PoolState.json files. It is initialized
53
+ * at startup and torn down when the application is stopped.
54
+ * */
55
+ export class NixieControlPanel implements INixieControlPanel {
56
+ // Only equipment controlled by Nixie is represented on the controller. If interaction with
57
+ // other equipment is required this should be sent back through the original controller.
58
+ // Command sequence is <OCP>Board -> SystemBoard -> NixieController whenever the master is not identified as Nixie.
59
+ chemDosers: NixieChemDoserCollection = new NixieChemDoserCollection(this);
60
+ chemControllers: NixieChemControllerCollection = new NixieChemControllerCollection(this);
61
+ chlorinators: NixieChlorinatorCollection = new NixieChlorinatorCollection(this);
62
+ circuits: NixieCircuitCollection = new NixieCircuitCollection(this);
63
+ bodies: NixieBodyCollection = new NixieBodyCollection(this);
64
+ filters: NixieFilterCollection = new NixieFilterCollection(this);
65
+ valves: NixieValveCollection = new NixieValveCollection(this);
66
+ heaters: NixieHeaterCollection = new NixieHeaterCollection(this);
67
+ pumps: NixiePumpCollection = new NixiePumpCollection(this);
68
+ schedules: NixieScheduleCollection = new NixieScheduleCollection(this);
69
+ public async setServiceModeAsync() {
70
+ await this.circuits.setServiceModeAsync();
71
+ await this.heaters.setServiceModeAsync();
72
+ await this.chlorinators.setServiceModeAsync();
73
+ await this.chemControllers.setServiceModeAsync();
74
+ await this.chemDosers.setServiceModeAsync();
75
+ await this.pumps.setServiceModeAsync();
76
+ }
77
+ public async initAsync(equipment: PoolSystem) {
78
+ try {
79
+
80
+ // We need to tell Nixie what her place is. If there is an existing OCP she needs to be a partner. However, if
81
+ // she is the only master then she needs to step up and take command. The way we will signify this is
82
+ // by using settings in config.json.
83
+ // The controller types define the number of bodies and whether they are shared.
84
+ logger.info(`Initializing Nixie Controller`);
85
+ await this.bodies.initAsync(equipment.bodies);
86
+ await this.filters.initAsync(equipment.filters);
87
+ await this.circuits.initAsync(equipment.circuits);
88
+ await this.valves.initAsync(equipment.valves);
89
+ await this.heaters.initAsync(equipment.heaters);
90
+ await this.chlorinators.initAsync(equipment.chlorinators);
91
+ await this.chemControllers.initAsync(equipment.chemControllers);
92
+ await this.chemDosers.initAsync(equipment.chemDosers);
93
+ await this.pumps.initAsync(equipment.pumps);
94
+ await this.schedules.initAsync(equipment.schedules);
95
+ logger.info(`Nixie Controller Initialized`)
96
+ }
97
+ catch (err) { return Promise.reject(err); }
98
+ }
99
+ public async readLogFile(logFile: string): Promise<string[]> {
100
+ try {
101
+ let logPath = path.join(process.cwd(), '/logs');
102
+ if (!fs.existsSync(logPath)) fs.mkdirSync(logPath);
103
+ logPath += (`/${logFile}`);
104
+ let lines = [];
105
+ if (fs.existsSync(logPath)) {
106
+ let buff = fs.readFileSync(logPath);
107
+ lines = buff.toString().split('\n');
108
+ }
109
+ return lines;
110
+ } catch (err) { logger.error(`Error reading log file ${logFile}: ${err.message}`); }
111
+ }
112
+ public async logData(logFile: string, data: any) {
113
+ try {
114
+ let logPath = path.join(process.cwd(), '/logs');
115
+ if (!fs.existsSync(logPath)) fs.mkdirSync(logPath);
116
+ logPath += (`/${logFile}`);
117
+ let lines = [];
118
+ if (fs.existsSync(logPath)) {
119
+ let buff = fs.readFileSync(logPath);
120
+ lines = buff.toString().split('\n');
121
+ }
122
+ if (typeof data === 'object')
123
+ lines.unshift(JSON.stringify(data));
124
+ else
125
+ lines.unshift(data.toString());
126
+ fs.writeFileSync(logPath, lines.join('\n'));
127
+ } catch (err) { logger.error(`Error logging to ${logFile}: ${err.message}`); }
128
+ }
129
+ public async closeAsync() {
130
+ // Close all the associated equipment.
131
+ await this.chemDosers.closeAsync();
132
+ await this.chemControllers.closeAsync();
133
+ await this.chlorinators.closeAsync();
134
+ await this.heaters.closeAsync();
135
+ await this.circuits.closeAsync();
136
+ await this.pumps.closeAsync();
137
+ await this.filters.closeAsync();
138
+ await this.bodies.closeAsync();
139
+ await this.valves.closeAsync();
140
+ }
141
+ /*
142
+ * This method is used to obtain a list of existing REM servers for configuration. This returns all servers and
143
+ * their potential devices and is not designed to be used at run-time or to detect failure.
144
+ *
145
+ */
146
+ public async getREMServers() {
147
+ try {
148
+ let srv = [];
149
+ let servers = webApp.findServersByType('rem');
150
+ if (typeof servers !== 'undefined') {
151
+ for (let i = 0; i < servers.length; i++) {
152
+ let server = servers[i];
153
+ // Sometimes I hate type safety.
154
+ let devices = typeof server['getDevices'] === 'function' ? await server['getDevices']() : [];
155
+ let int = config.getInterfaceByUuid(servers[i].uuid);
156
+ srv.push({
157
+ uuid: servers[i].uuid,
158
+ name: servers[i].name,
159
+ type: servers[i].type,
160
+ isRunning: servers[i].isRunning,
161
+ isConnected: servers[i].isConnected,
162
+ devices: devices,
163
+ remoteConnectionId: servers[i].remoteConnectionId,
164
+ interface: int
165
+ });
166
+ }
167
+ await ncp.chemControllers.syncRemoteREMFeeds(srv);
168
+ }
169
+ return srv;
170
+ } catch (err) { logger.error(`Error gettting REM Servers: ${err.message}`); }
171
+ }
172
+ }
173
+
174
174
  export let ncp = new NixieControlPanel();
@@ -1,105 +1,105 @@
1
- import { webApp, REMInterfaceServer, InterfaceServerResponse } from "../../web/Server";
2
- import { logger } from "../../logger/Logger";
3
- import e = require("express");
4
- export interface INixieControlPanel {
5
- getREMServers();
6
- logData(file: string, data: any);
7
- readLogFile(file: string);
8
- }
9
- export class NixieEquipment {
10
- protected _pmap = new WeakSet();
11
- //private _dataKey = { id: 'parent' };
12
- constructor(ncp: INixieControlPanel) { this._pmap['ncp'] = ncp; }
13
- public get controlPanel(): INixieControlPanel { return this._pmap['ncp']; }
14
- public get id(): number { return -1; }
15
- public static get isConnected(): boolean {
16
- let servers = webApp.findServersByType("rem");
17
- for (let i = 0; i < servers.length; i++) {
18
- if (!servers[0].isConnected) return false;
19
- }
20
- return true;
21
- }
22
- public static async putDeviceService(uuid: string, url: string, data?: any, timeout: number = 3600): Promise<InterfaceServerResponse> {
23
- try {
24
- let result: InterfaceServerResponse;
25
- let server = webApp.findServerByGuid(uuid);
26
- if (typeof server === 'undefined')
27
- return InterfaceServerResponse.createError(new Error(`Error sending device command: Server [${uuid}] not found.`));
28
- if (!server.isConnected) {
29
- logger.warn(`Cannot send PUT ${url} to ${server.name} server is not connected.`);
30
- return InterfaceServerResponse.createError(new Error(`Error sending device command: [${server.name}] not connected.`));
31
- }
32
- if (server.type === 'rem') {
33
- let rem = server as REMInterfaceServer;
34
- result = await rem.putApiService(url, data, timeout);
35
- // If the result code is > 200 we have an issue.
36
- //if (result.status.code > 200 || result.status.code === -1)
37
- // return Promise.reject(new Error(`putDeviceService: ${result.error.message}`));
38
- }
39
- return result;
40
- }
41
- catch (err) { return Promise.reject(err); }
42
- }
43
- public static async getDeviceService(uuid: string, url: string, data?: any, timeout:number = 3600): Promise<any> {
44
- try {
45
- let result: InterfaceServerResponse;
46
- let server = webApp.findServerByGuid(uuid);
47
- if (typeof server === 'undefined') return Promise.reject(new Error(`Error sending device command: Server [${uuid}] not found.`));
48
- if (!server.isConnected) return Promise.reject(new Error(`Error sending device command: [${server.name}] not connected.`));
49
- if (server.type === 'rem') {
50
- let rem = server as REMInterfaceServer;
51
- //console.log(`CALLING GET FROM GETDEVSER`);
52
-
53
- result = await rem.getApiService(url, data, timeout);
54
- //console.log(`RETURNING GET FROM GETDEVSER`);
55
- // If the result code is > 200 we have an issue.
56
- if (result.status.code > 200) return Promise.reject(new Error(`putDeviceService: ${result.error.message}`));
57
- }
58
- return result;
59
- }
60
- catch (err) { return Promise.reject(err); }
61
- }
62
- public async closeAsync() {
63
- try {
64
- }
65
- catch (err) { logger.error(`Error closing Nixie Equipment: ${err.message}`); }
66
- }
67
- }
68
- export class NixieChildEquipment extends NixieEquipment {
69
- constructor(parent: NixieEquipment) {
70
- super(parent.controlPanel);
71
- this._pmap['parent'] = parent;
72
- }
73
- public getParent(): NixieEquipment { return this._pmap['parent']; }
74
- }
75
- export class NixieEquipmentCollection<T> extends Array<NixieEquipment> {
76
- private _pmap = new WeakSet();
77
- public get controlPanel(): INixieControlPanel { return this._pmap['ncp']; }
78
- constructor(ncp: INixieControlPanel) {
79
- super();
80
- this._pmap['ncp'] = ncp;
81
- }
82
- public async removeById(id: number) {
83
- try {
84
- let ndx = this.findIndex(elem => elem.id === id);
85
- if (ndx >= 0) {
86
- let eq = this[ndx];
87
- await eq.closeAsync();
88
- this.splice(ndx, 1);
89
- logger.info(`Removing chem doser id# ${id} at index ndx`);
90
- }
91
- else
92
- logger.warn(`A Nixie equipment item was not found with id ${id}. Equipment not removed.`);
93
- }
94
- catch (err) { return Promise.reject(err); }
95
- }
96
- }
97
- //export class NixieRelay extends NixieEquipment {
98
-
99
- //}
100
- //export class NixieCircuit extends NixieRelay {
101
-
102
- //}
103
- //export class NixieValve extends NixieRelay {
104
-
1
+ import { webApp, REMInterfaceServer, InterfaceServerResponse } from "../../web/Server";
2
+ import { logger } from "../../logger/Logger";
3
+ import e = require("express");
4
+ export interface INixieControlPanel {
5
+ getREMServers();
6
+ logData(file: string, data: any);
7
+ readLogFile(file: string);
8
+ }
9
+ export class NixieEquipment {
10
+ protected _pmap = new WeakSet();
11
+ //private _dataKey = { id: 'parent' };
12
+ constructor(ncp: INixieControlPanel) { this._pmap['ncp'] = ncp; }
13
+ public get controlPanel(): INixieControlPanel { return this._pmap['ncp']; }
14
+ public get id(): number { return -1; }
15
+ public static get isConnected(): boolean {
16
+ let servers = webApp.findServersByType("rem");
17
+ for (let i = 0; i < servers.length; i++) {
18
+ if (!servers[0].isConnected) return false;
19
+ }
20
+ return true;
21
+ }
22
+ public static async putDeviceService(uuid: string, url: string, data?: any, timeout: number = 3600): Promise<InterfaceServerResponse> {
23
+ try {
24
+ let result: InterfaceServerResponse;
25
+ let server = webApp.findServerByGuid(uuid);
26
+ if (typeof server === 'undefined')
27
+ return InterfaceServerResponse.createError(new Error(`Error sending device command: Server [${uuid}] not found.`));
28
+ if (!server.isConnected) {
29
+ logger.warn(`Cannot send PUT ${url} to ${server.name} server is not connected.`);
30
+ return InterfaceServerResponse.createError(new Error(`Error sending device command: [${server.name}] not connected.`));
31
+ }
32
+ if (server.type === 'rem') {
33
+ let rem = server as REMInterfaceServer;
34
+ result = await rem.putApiService(url, data, timeout);
35
+ // If the result code is > 200 we have an issue.
36
+ //if (result.status.code > 200 || result.status.code === -1)
37
+ // return Promise.reject(new Error(`putDeviceService: ${result.error.message}`));
38
+ }
39
+ return result;
40
+ }
41
+ catch (err) { return Promise.reject(err); }
42
+ }
43
+ public static async getDeviceService(uuid: string, url: string, data?: any, timeout:number = 3600): Promise<any> {
44
+ try {
45
+ let result: InterfaceServerResponse;
46
+ let server = webApp.findServerByGuid(uuid);
47
+ if (typeof server === 'undefined') return Promise.reject(new Error(`Error sending device command: Server [${uuid}] not found.`));
48
+ if (!server.isConnected) return Promise.reject(new Error(`Error sending device command: [${server.name}] not connected.`));
49
+ if (server.type === 'rem') {
50
+ let rem = server as REMInterfaceServer;
51
+ //console.log(`CALLING GET FROM GETDEVSER`);
52
+
53
+ result = await rem.getApiService(url, data, timeout);
54
+ //console.log(`RETURNING GET FROM GETDEVSER`);
55
+ // If the result code is > 200 we have an issue.
56
+ if (result.status.code > 200) return Promise.reject(new Error(`putDeviceService: ${result.error.message}`));
57
+ }
58
+ return result;
59
+ }
60
+ catch (err) { return Promise.reject(err); }
61
+ }
62
+ public async closeAsync() {
63
+ try {
64
+ }
65
+ catch (err) { logger.error(`Error closing Nixie Equipment: ${err.message}`); }
66
+ }
67
+ }
68
+ export class NixieChildEquipment extends NixieEquipment {
69
+ constructor(parent: NixieEquipment) {
70
+ super(parent.controlPanel);
71
+ this._pmap['parent'] = parent;
72
+ }
73
+ public getParent(): NixieEquipment { return this._pmap['parent']; }
74
+ }
75
+ export class NixieEquipmentCollection<T> extends Array<NixieEquipment> {
76
+ private _pmap = new WeakSet();
77
+ public get controlPanel(): INixieControlPanel { return this._pmap['ncp']; }
78
+ constructor(ncp: INixieControlPanel) {
79
+ super();
80
+ this._pmap['ncp'] = ncp;
81
+ }
82
+ public async removeById(id: number) {
83
+ try {
84
+ let ndx = this.findIndex(elem => elem.id === id);
85
+ if (ndx >= 0) {
86
+ let eq = this[ndx];
87
+ await eq.closeAsync();
88
+ this.splice(ndx, 1);
89
+ logger.info(`Removing chem doser id# ${id} at index ndx`);
90
+ }
91
+ else
92
+ logger.warn(`A Nixie equipment item was not found with id ${id}. Equipment not removed.`);
93
+ }
94
+ catch (err) { return Promise.reject(err); }
95
+ }
96
+ }
97
+ //export class NixieRelay extends NixieEquipment {
98
+
99
+ //}
100
+ //export class NixieCircuit extends NixieRelay {
101
+
102
+ //}
103
+ //export class NixieValve extends NixieRelay {
104
+
105
105
  //}