nodejs-poolcontroller 7.6.1 → 8.0.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 (102) hide show
  1. package/.eslintrc.json +36 -45
  2. package/.github/ISSUE_TEMPLATE/1-bug-report.yml +84 -0
  3. package/.github/ISSUE_TEMPLATE/2-docs.md +12 -0
  4. package/.github/ISSUE_TEMPLATE/3-proposal.md +28 -0
  5. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  6. package/CONTRIBUTING.md +74 -74
  7. package/Changelog +242 -215
  8. package/Dockerfile +17 -17
  9. package/Gruntfile.js +40 -40
  10. package/LICENSE +661 -661
  11. package/README.md +195 -191
  12. package/anslq25/MessagesMock.ts +218 -0
  13. package/anslq25/boards/MockBoardFactory.ts +50 -0
  14. package/anslq25/boards/MockEasyTouchBoard.ts +696 -0
  15. package/anslq25/boards/MockSystemBoard.ts +217 -0
  16. package/anslq25/chemistry/MockChlorinator.ts +75 -0
  17. package/anslq25/pumps/MockPump.ts +84 -0
  18. package/app.ts +10 -14
  19. package/config/Config.ts +26 -8
  20. package/config/VersionCheck.ts +8 -4
  21. package/controller/Constants.ts +59 -25
  22. package/controller/Equipment.ts +2667 -2459
  23. package/controller/Errors.ts +181 -180
  24. package/controller/Lockouts.ts +534 -436
  25. package/controller/State.ts +596 -77
  26. package/controller/boards/AquaLinkBoard.ts +1003 -0
  27. package/controller/boards/BoardFactory.ts +53 -45
  28. package/controller/boards/EasyTouchBoard.ts +3079 -2653
  29. package/controller/boards/IntelliCenterBoard.ts +3821 -4230
  30. package/controller/boards/IntelliComBoard.ts +69 -63
  31. package/controller/boards/IntelliTouchBoard.ts +384 -241
  32. package/controller/boards/NixieBoard.ts +1871 -1675
  33. package/controller/boards/SunTouchBoard.ts +393 -0
  34. package/controller/boards/SystemBoard.ts +5244 -4697
  35. package/controller/comms/Comms.ts +905 -541
  36. package/controller/comms/ScreenLogic.ts +1663 -0
  37. package/controller/comms/messages/Messages.ts +382 -54
  38. package/controller/comms/messages/config/ChlorinatorMessage.ts +8 -4
  39. package/controller/comms/messages/config/CircuitGroupMessage.ts +5 -2
  40. package/controller/comms/messages/config/CircuitMessage.ts +82 -13
  41. package/controller/comms/messages/config/ConfigMessage.ts +3 -1
  42. package/controller/comms/messages/config/CoverMessage.ts +2 -1
  43. package/controller/comms/messages/config/CustomNameMessage.ts +31 -30
  44. package/controller/comms/messages/config/EquipmentMessage.ts +5 -1
  45. package/controller/comms/messages/config/ExternalMessage.ts +33 -3
  46. package/controller/comms/messages/config/FeatureMessage.ts +2 -1
  47. package/controller/comms/messages/config/GeneralMessage.ts +2 -1
  48. package/controller/comms/messages/config/HeaterMessage.ts +145 -11
  49. package/controller/comms/messages/config/IntellichemMessage.ts +2 -1
  50. package/controller/comms/messages/config/OptionsMessage.ts +16 -27
  51. package/controller/comms/messages/config/PumpMessage.ts +62 -47
  52. package/controller/comms/messages/config/RemoteMessage.ts +80 -13
  53. package/controller/comms/messages/config/ScheduleMessage.ts +390 -347
  54. package/controller/comms/messages/config/SecurityMessage.ts +2 -1
  55. package/controller/comms/messages/config/ValveMessage.ts +44 -27
  56. package/controller/comms/messages/status/ChlorinatorStateMessage.ts +44 -91
  57. package/controller/comms/messages/status/EquipmentStateMessage.ts +139 -30
  58. package/controller/comms/messages/status/HeaterStateMessage.ts +135 -86
  59. package/controller/comms/messages/status/IntelliChemStateMessage.ts +448 -445
  60. package/controller/comms/messages/status/IntelliValveStateMessage.ts +36 -35
  61. package/controller/comms/messages/status/PumpStateMessage.ts +92 -2
  62. package/controller/comms/messages/status/VersionMessage.ts +2 -1
  63. package/controller/nixie/Nixie.ts +173 -162
  64. package/controller/nixie/NixieEquipment.ts +104 -103
  65. package/controller/nixie/bodies/Body.ts +120 -120
  66. package/controller/nixie/bodies/Filter.ts +135 -135
  67. package/controller/nixie/chemistry/ChemController.ts +2682 -2498
  68. package/controller/nixie/chemistry/ChemDoser.ts +806 -0
  69. package/controller/nixie/chemistry/Chlorinator.ts +367 -314
  70. package/controller/nixie/circuits/Circuit.ts +402 -248
  71. package/controller/nixie/heaters/Heater.ts +815 -649
  72. package/controller/nixie/pumps/Pump.ts +934 -661
  73. package/controller/nixie/schedules/Schedule.ts +319 -257
  74. package/controller/nixie/valves/Valve.ts +170 -170
  75. package/defaultConfig.json +346 -286
  76. package/logger/DataLogger.ts +448 -448
  77. package/logger/Logger.ts +38 -9
  78. package/package.json +60 -56
  79. package/tsconfig.json +25 -25
  80. package/web/Server.ts +275 -117
  81. package/web/bindings/aqualinkD.json +560 -0
  82. package/web/bindings/homeassistant.json +437 -0
  83. package/web/bindings/influxDB.json +1066 -1021
  84. package/web/bindings/mqtt.json +721 -654
  85. package/web/bindings/mqttAlt.json +746 -684
  86. package/web/bindings/rulesManager.json +54 -54
  87. package/web/bindings/smartThings-Hubitat.json +31 -31
  88. package/web/bindings/valveRelays.json +20 -20
  89. package/web/bindings/vera.json +25 -25
  90. package/web/interfaces/baseInterface.ts +188 -136
  91. package/web/interfaces/httpInterface.ts +148 -124
  92. package/web/interfaces/influxInterface.ts +283 -245
  93. package/web/interfaces/mqttInterface.ts +695 -475
  94. package/web/interfaces/ruleInterface.ts +87 -0
  95. package/web/services/config/Config.ts +177 -49
  96. package/web/services/config/ConfigSocket.ts +2 -1
  97. package/web/services/state/State.ts +154 -3
  98. package/web/services/state/StateSocket.ts +69 -18
  99. package/web/services/utilities/Utilities.ts +232 -42
  100. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -52
  101. package/config copy.json +0 -300
  102. package/issue_template.md +0 -52
@@ -1,245 +1,283 @@
1
- /* nodejs-poolController. An application to control pool equipment.
2
- Copyright (C) 2016, 2017, 2018, 2019, 2020. Russell Goldin, tagyoureit. russ.goldin@gmail.com
3
-
4
- This program is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU Affero General Public License as
6
- published by the Free Software Foundation, either version 3 of the
7
- License, or (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU Affero General Public License for more details.
13
-
14
- You should have received a copy of the GNU Affero General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
- */
17
-
18
- import extend = require("extend");
19
- import { ClientOptions, InfluxDB, Point, WriteApi, WritePrecisionType } from '@influxdata/influxdb-client';
20
- import { utils, Timestamp } from '../../controller/Constants';
21
- import { logger } from "../../logger/Logger";
22
- import { BaseInterfaceBindings, InterfaceContext, InterfaceEvent } from "./baseInterface";
23
- export class InfluxInterfaceBindings extends BaseInterfaceBindings {
24
- constructor(cfg) {
25
- super(cfg);
26
- }
27
- private writeApi: WriteApi;
28
- declare context: InterfaceContext;
29
- declare cfg;
30
- declare events: InfluxInterfaceEvent[];
31
- private init = () => {
32
- let baseOpts = extend(true, this.cfg.options, this.context.options);
33
- let url = 'http://';
34
- if (typeof baseOpts.protocol !== 'undefined' && baseOpts.protocol) url = baseOpts.protocol;
35
- if (!url.endsWith('://')) url += '://';
36
- url = `${url}${baseOpts.host}:${baseOpts.port}`;
37
- let influxDB: InfluxDB;
38
- let bucket;
39
- let org;
40
- if (typeof baseOpts.host === 'undefined' || !baseOpts.host) {
41
- logger.warn(`Interface: ${this.cfg.name} has not resolved to a valid host.`);
42
- return;
43
- }
44
- if (baseOpts.version === 1) {
45
- if (typeof baseOpts.database === 'undefined' || !baseOpts.database) {
46
- logger.warn(`Interface: ${this.cfg.name} has not resolved to a valid database.`);
47
- return;
48
- }
49
- bucket = `${baseOpts.database}/${baseOpts.retentionPolicy}`;
50
- const clientOptions: ClientOptions = {
51
- url,
52
- token: `${baseOpts.username}:${baseOpts.password}`,
53
- }
54
- influxDB = new InfluxDB(clientOptions);
55
- }
56
- else if (baseOpts.version === 2) {
57
- org = baseOpts.org;
58
- bucket = baseOpts.bucket;
59
- const clientOptions: ClientOptions = {
60
- url,
61
- token: baseOpts.token,
62
- }
63
- influxDB = new InfluxDB(clientOptions);
64
- }
65
- this.writeApi = influxDB.getWriteApi(org, bucket, 'ms');
66
-
67
-
68
- // set global tags from context
69
- let baseTags = {}
70
- baseOpts.tags.forEach(tag => {
71
- let toks = {};
72
- let sname = this.tokensReplacer(tag.name, undefined, toks, undefined, {})
73
- let svalue = this.tokensReplacer(tag.value, undefined, toks, { vars: {} } as any, {});
74
- if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind'))
75
- baseTags[sname] = svalue;
76
- })
77
- this.writeApi.useDefaultTags(baseTags);
78
- }
79
- public bindEvent(evt: string, ...data: any) {
80
-
81
- // if (state.status.value !== sys.board.valueMaps.controllerStatus.getValue('ready')) return; // miss values? or show errors? or?
82
- if (typeof this.events !== 'undefined') {
83
- if (typeof this.writeApi === 'undefined') this.init();
84
- let evts = this.events.filter(elem => elem.name === evt);
85
- if (evts.length > 0) {
86
- let toks = {};
87
- for (let i = 0; i < evts.length; i++) {
88
- let e = evts[i];
89
- if (typeof e.enabled !== 'undefined' && !e.enabled) continue;
90
- // Figure out whether we need to check the filter.
91
- if (typeof e.filter !== 'undefined') {
92
- this.buildTokens(e.filter, evt, toks, e, data[0]);
93
- if (eval(this.replaceTokens(e.filter, toks)) === false) continue;
94
- }
95
- for (let j = 0; j < e.points.length; j++) {
96
- let _point = e.points[j];
97
- // Figure out whether we need to check the filter for each point.
98
- if (typeof _point.filter !== 'undefined') {
99
- this.buildTokens(_point.filter, evt, toks, e, data[0]);
100
- if (eval(this.replaceTokens(_point.filter, toks)) === false) continue;
101
- }
102
- // iterate through points array
103
- let point = new Point(_point.measurement)
104
- let point2 = new Point(_point.measurement);
105
- _point.tags.forEach(_tag => {
106
- let sname = _tag.name;
107
- this.buildTokens(sname, evt, toks, e, data[0]);
108
- sname = this.replaceTokens(sname, toks);
109
- let svalue = _tag.value;
110
- this.buildTokens(svalue, evt, toks, e, data[0]);
111
- svalue = this.replaceTokens(svalue, toks);
112
- if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind') && svalue !== null) {
113
- point.tag(sname, svalue);
114
- if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.tag(sname, svalue);
115
- }
116
- else {
117
- logger.error(`InfluxDB tag binding failure on ${evt}:${_tag.name}/${_tag.value} --> ${svalue || 'undefined'} ${JSON.stringify(data[0])}`);
118
- if (typeof sname === 'undefined') logger.error(`InfluxDB tag name is undefined`);
119
- if (typeof svalue === 'undefined') logger.error(`InfluxDB value is undefined`);
120
- if (svalue.includes('@bind')) logger.error(`InfluxDB value not bound`);
121
- if (svalue === null) logger.error(`InfluxDB value is null`);
122
- }
123
- })
124
- _point.fields.forEach(_field => {
125
- try {
126
- let sname = _field.name;
127
- this.buildTokens(sname, evt, toks, e, data[0]);
128
- //console.log(toks);
129
- sname = this.replaceTokens(sname, toks);
130
- let svalue = _field.value;
131
- this.buildTokens(svalue, evt, toks, e, data[0]);
132
- svalue = this.replaceTokens(svalue, toks);
133
- if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind') && svalue !== null)
134
- switch (_field.type) {
135
- case 'int':
136
- case 'integer':
137
- let int = parseInt(svalue, 10);
138
- if (!isNaN(int)) point.intField(sname, int);
139
- // if (!isNaN(int) && typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.intField(sname, int);
140
- break;
141
- case 'string':
142
- point.stringField(sname, svalue);
143
- // if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.stringField(sname, svalue);
144
- break;
145
- case 'boolean':
146
- point.booleanField(sname, utils.makeBool(svalue));
147
- if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.booleanField(sname, !utils.makeBool(svalue));
148
- break;
149
- case 'float':
150
- let float = parseFloat(svalue);
151
- if (!isNaN(float)) point.floatField(sname, float);
152
- // if (!isNaN(float) && typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.intField(sname, int);
153
- break;
154
- case 'timestamp':
155
- case 'datetime':
156
- case 'date':
157
- //let dt = Date.parse(svalue.replace(/^["'](.+(?=["']$))["']$/, '$1'));
158
- // RKS: 07-06-21 - I think this is missing the eval function around all of this. The strings still have the quotes around them. I think
159
- // maybe we need to create a closure and execute it as a code segment for variable data.
160
- let sdt = eval(svalue);
161
- if (sdt !== null && typeof sdt !== 'undefined') {
162
- let dt = Date.parse(sdt);
163
- if (!isNaN(dt)) point.intField(sname, dt);
164
- else if (svalue !== '') logger.warn(`Influx error parsing date from ${sname}: ${svalue}`);
165
- }
166
- break;
167
- }
168
- else {
169
- logger.error(`InfluxDB point binding failure on ${evt}:${_field.name}/${_field.value} --> ${svalue || 'undefined'}`);
170
- }
171
- } catch (err) { logger.error(`Error binding InfluxDB point fields ${err.message}`); }
172
- });
173
- if (typeof _point.series !== 'undefined') {
174
- try {
175
- this.buildTokens(_point.series.value, evt, toks, e, data[0]);
176
- let ser = eval(this.replaceTokens(_point.series.value, toks));
177
- let ts = Date.parse(ser);
178
- if (isNaN(ts)) {
179
- logger.error(`Influx series timestamp is invalid ${ser}`);
180
- }
181
- else
182
- point.timestamp(new Date(ts));
183
- } catch (err) { logger.error(`Error parsing Influx point series for ${evt} - ${_point.series.value}`); }
184
- }
185
- else
186
- point.timestamp(new Date());
187
- try {
188
-
189
- if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) {
190
- // copy the point and subtract a second and keep inverse value
191
- let ts = new Date();
192
- let sec = ts.getSeconds() - 1;
193
- ts.setSeconds(sec);
194
- point2.timestamp(ts);
195
- logger.silly(`Writing influx ${e.name} inverse data point ${point2.toString()})`)
196
- this.writeApi.writePoint(point2);
197
- }
198
- if (typeof point.toLineProtocol() !== 'undefined') {
199
- logger.silly(`Writing influx ${e.name} data point ${point.toString()}`)
200
- this.writeApi.writePoint(point);
201
- this.writeApi.flush()
202
- .catch(error => { logger.error(`Error flushing Influx data point ${point.toString()} ${error}`); });
203
- //logger.info(`INFLUX: ${point.toLineProtocol()}`)
204
- }
205
- else {
206
- logger.silly(`Skipping INFLUX write because some data is missing with ${e.name} event on measurement ${_point.measurement}.`)
207
- }
208
- }
209
- catch (err) {
210
- logger.error(`Error writing to Influx: ${err.message}`)
211
- }
212
- }
213
- }
214
- }
215
- }
216
- }
217
- public close = () => {
218
-
219
- }
220
- }
221
-
222
- class InfluxInterfaceEvent extends InterfaceEvent {
223
- public points: IPoint[];
224
- }
225
-
226
- export interface IPoint {
227
- measurement: string;
228
- series?: ISeries;
229
- tags: ITag[];
230
- fields: IFields[];
231
- storePrevState?: boolean;
232
- filter?: any;
233
- }
234
- export interface ITag {
235
- name: string;
236
- value: string;
237
- }
238
- export interface IFields {
239
- name: string;
240
- value: string;
241
- type: string;
242
- }
243
- export interface ISeries {
244
- value: string;
245
- }
1
+ /* nodejs-poolController. An application to control pool equipment.
2
+ Copyright (C) 2016, 2017, 2018, 2019, 2020, 2021, 2022.
3
+ Russell Goldin, tagyoureit. russ.goldin@gmail.com
4
+
5
+ This program is free software: you can redistribute it and/or modify
6
+ it under the terms of the GNU Affero General Public License as
7
+ published by the Free Software Foundation, either version 3 of the
8
+ License, or (at your option) any later version.
9
+
10
+ This program is distributed in the hope that it will be useful,
11
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ GNU Affero General Public License for more details.
14
+
15
+ You should have received a copy of the GNU Affero General Public License
16
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ */
18
+
19
+ import extend = require("extend");
20
+ import { ClientOptions, DEFAULT_WriteOptions, InfluxDB, Point, WriteApi, WriteOptions, WritePrecisionType } from '@influxdata/influxdb-client';
21
+ import { utils, Timestamp } from '../../controller/Constants';
22
+ import { logger } from "../../logger/Logger";
23
+ import { BaseInterfaceBindings, InterfaceContext, InterfaceEvent } from "./baseInterface";
24
+ export class InfluxInterfaceBindings extends BaseInterfaceBindings {
25
+ constructor(cfg) {
26
+ super(cfg);
27
+ }
28
+ private writeApi: WriteApi;
29
+ declare context: InterfaceContext;
30
+ declare cfg;
31
+ declare events: InfluxInterfaceEvent[];
32
+ private init = () => {
33
+ let baseOpts = extend(true, this.cfg.options, this.context.options);
34
+ let url = 'http://';
35
+ if (typeof baseOpts.protocol !== 'undefined' && baseOpts.protocol) url = baseOpts.protocol;
36
+ if (!url.endsWith('://')) url += '://';
37
+ url = `${url}${baseOpts.host}`;
38
+ if(typeof baseOpts.port !== 'undefined' && baseOpts.port !== null && !isNaN(baseOpts.port)) url = `${url}:${baseOpts.port}`;
39
+ let influxDB: InfluxDB;
40
+ let bucket;
41
+ let org;
42
+ if (typeof baseOpts.host === 'undefined' || !baseOpts.host) {
43
+ logger.warn(`Interface: ${this.cfg.name} has not resolved to a valid host.`);
44
+ return;
45
+ }
46
+ if (baseOpts.version === 1) {
47
+ if (typeof baseOpts.database === 'undefined' || !baseOpts.database) {
48
+ logger.warn(`Interface: ${this.cfg.name} has not resolved to a valid database.`);
49
+ return;
50
+ }
51
+ bucket = `${baseOpts.database}/${baseOpts.retentionPolicy}`;
52
+ const clientOptions: ClientOptions = {
53
+ url,
54
+ token: `${baseOpts.username}:${baseOpts.password}`,
55
+ }
56
+ influxDB = new InfluxDB(clientOptions);
57
+ }
58
+ else if (baseOpts.version === 2) {
59
+ org = baseOpts.org;
60
+ bucket = baseOpts.bucket;
61
+ const clientOptions: ClientOptions = {
62
+ url,
63
+ token: baseOpts.token,
64
+ }
65
+ influxDB = new InfluxDB(clientOptions);
66
+ }
67
+ // set global tags from context
68
+ let baseTags = {}
69
+ baseOpts.tags.forEach(tag => {
70
+ let toks = {};
71
+ let sname = this.tokensReplacer(tag.name, undefined, toks, undefined, {})
72
+ let svalue = this.tokensReplacer(tag.value, undefined, toks, { vars: {} } as any, {});
73
+ if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind'))
74
+ baseTags[sname] = svalue;
75
+ })
76
+ //this.writeApi.useDefaultTags(baseTags);
77
+ const writeOptions:WriteOptions = {
78
+ /* the maximum points/line to send in a single batch to InfluxDB server */
79
+ batchSize: baseOpts.batchSize || 100,
80
+ /* default tags to add to every point */
81
+ defaultTags: baseTags,
82
+ /* maximum time in millis to keep points in an unflushed batch, 0 means don't periodically flush */
83
+ flushInterval: DEFAULT_WriteOptions.flushInterval,
84
+ /* maximum size of the retry buffer - it contains items that could not be sent for the first time */
85
+ maxBufferLines: DEFAULT_WriteOptions.maxBufferLines,
86
+ /* the count of retries, the delays between retries follow an exponential backoff strategy if there is no Retry-After HTTP header */
87
+ maxRetries: DEFAULT_WriteOptions.maxRetries,
88
+ /* maximum delay between retries in milliseconds */
89
+ maxRetryDelay: DEFAULT_WriteOptions.maxRetryDelay,
90
+ /* minimum delay between retries in milliseconds */
91
+ minRetryDelay: DEFAULT_WriteOptions.minRetryDelay, // minimum delay between retries
92
+ /* a random value of up to retryJitter is added when scheduling next retry */
93
+ retryJitter: DEFAULT_WriteOptions.retryJitter,
94
+ // ... or you can customize what to do on write failures when using a writeFailed fn, see the API docs for details
95
+ writeFailed: function(error, lines, failedAttempts){
96
+ /** return promise or void */
97
+ logger.error(`InfluxDB batch write failed writing ${lines.length} lines with ${failedAttempts} failed attempts. ${error.message}`);
98
+ //console.log(lines);
99
+ },
100
+ writeSuccess: function(lines){
101
+ logger.silly(`InfluxDB successfully wrote ${lines.length} lines.`)
102
+ },
103
+ writeRetrySkipped: function(entry){
104
+ logger.silly(`Influx write retry skipped ${JSON.stringify(entry)}`);
105
+ },
106
+ maxRetryTime: DEFAULT_WriteOptions.maxRetryTime,
107
+ exponentialBase: DEFAULT_WriteOptions.exponentialBase,
108
+ randomRetry: DEFAULT_WriteOptions.randomRetry,
109
+ maxBatchBytes: 4096
110
+
111
+ }
112
+ this.writeApi = influxDB.getWriteApi(org, bucket, 'ms', writeOptions);
113
+
114
+
115
+
116
+ }
117
+ public bindEvent(evt: string, ...data: any) {
118
+
119
+ // if (state.status.value !== sys.board.valueMaps.controllerStatus.getValue('ready')) return; // miss values? or show errors? or?
120
+ if (typeof this.events !== 'undefined') {
121
+ if (typeof this.writeApi === 'undefined') this.init();
122
+ let evts = this.events.filter(elem => elem.name === evt);
123
+ if (evts.length > 0) {
124
+ let toks = {};
125
+ for (let i = 0; i < evts.length; i++) {
126
+ let e = evts[i];
127
+ if (typeof e.enabled !== 'undefined' && !e.enabled) continue;
128
+ // Figure out whether we need to check the filter.
129
+ if (typeof e.filter !== 'undefined') {
130
+ this.buildTokens(e.filter, evt, toks, e, data[0]);
131
+ if (eval(this.replaceTokens(e.filter, toks)) === false) continue;
132
+ }
133
+ for (let j = 0; j < e.points.length; j++) {
134
+ let _point = e.points[j];
135
+ // Figure out whether we need to check the filter for each point.
136
+ if (typeof _point.filter !== 'undefined') {
137
+ this.buildTokens(_point.filter, evt, toks, e, data[0]);
138
+ if (eval(this.replaceTokens(_point.filter, toks)) === false) continue;
139
+ }
140
+ // iterate through points array
141
+ let point = new Point(_point.measurement)
142
+ let point2 = new Point(_point.measurement);
143
+ _point.tags.forEach(_tag => {
144
+ let sname = _tag.name;
145
+ this.buildTokens(sname, evt, toks, e, data[0]);
146
+ sname = this.replaceTokens(sname, toks);
147
+ let svalue = _tag.value;
148
+ this.buildTokens(svalue, evt, toks, e, data[0]);
149
+ svalue = this.replaceTokens(svalue, toks);
150
+ if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind') && svalue !== null) {
151
+ point.tag(sname, svalue);
152
+ if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.tag(sname, svalue);
153
+ }
154
+ else {
155
+ logger.error(`InfluxDB tag binding failure on ${evt}:${_tag.name}/${_tag.value} --> ${svalue || 'undefined'} ${JSON.stringify(data[0])}`);
156
+ if (typeof sname === 'undefined') logger.error(`InfluxDB tag name is undefined`);
157
+ if (typeof svalue === 'undefined') logger.error(`InfluxDB value is undefined`);
158
+ if (svalue.includes('@bind')) logger.error(`InfluxDB value not bound`);
159
+ if (svalue === null) logger.error(`InfluxDB value is null`);
160
+ }
161
+ })
162
+ _point.fields.forEach(_field => {
163
+ try {
164
+ let sname = _field.name;
165
+ this.buildTokens(sname, evt, toks, e, data[0]);
166
+ //console.log(toks);
167
+ sname = this.replaceTokens(sname, toks);
168
+ let svalue = _field.value;
169
+ this.buildTokens(svalue, evt, toks, e, data[0]);
170
+ svalue = this.replaceTokens(svalue, toks);
171
+ if (typeof sname !== 'undefined' && typeof svalue !== 'undefined' && !sname.includes('@bind') && !svalue.includes('@bind') && svalue !== null)
172
+ switch (_field.type) {
173
+ case 'int':
174
+ case 'integer':
175
+ let int = parseInt(svalue, 10);
176
+ if (!isNaN(int)) point.intField(sname, int);
177
+ // if (!isNaN(int) && typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.intField(sname, int);
178
+ break;
179
+ case 'string':
180
+ point.stringField(sname, svalue);
181
+ // if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.stringField(sname, svalue);
182
+ break;
183
+ case 'boolean':
184
+ point.booleanField(sname, utils.makeBool(svalue));
185
+ if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.booleanField(sname, !utils.makeBool(svalue));
186
+ break;
187
+ case 'float':
188
+ let float = parseFloat(svalue);
189
+ if (!isNaN(float)) point.floatField(sname, float);
190
+ // if (!isNaN(float) && typeof _point.storePrevState !== 'undefined' && _point.storePrevState) point2.intField(sname, int);
191
+ break;
192
+ case 'timestamp':
193
+ case 'datetime':
194
+ case 'date':
195
+ //let dt = Date.parse(svalue.replace(/^["'](.+(?=["']$))["']$/, '$1'));
196
+ // RKS: 07-06-21 - I think this is missing the eval function around all of this. The strings still have the quotes around them. I think
197
+ // maybe we need to create a closure and execute it as a code segment for variable data.
198
+ let sdt = eval(svalue);
199
+ if (sdt !== null && typeof sdt !== 'undefined') {
200
+ let dt = Date.parse(sdt);
201
+ if (!isNaN(dt)) point.intField(sname, dt);
202
+ else if (svalue !== '') logger.warn(`Influx error parsing date from ${sname}: ${svalue}`);
203
+ }
204
+ break;
205
+ }
206
+ else {
207
+ logger.error(`InfluxDB point binding failure on ${evt}:${_field.name}/${_field.value} --> ${svalue || 'undefined'}`);
208
+ }
209
+ } catch (err) { logger.error(`Error binding InfluxDB point fields ${err.message}`); }
210
+ });
211
+ if (typeof _point.series !== 'undefined') {
212
+ try {
213
+ this.buildTokens(_point.series.value, evt, toks, e, data[0]);
214
+ let ser = eval(this.replaceTokens(_point.series.value, toks));
215
+ let ts = Date.parse(ser);
216
+ if (isNaN(ts)) {
217
+ logger.error(`Influx series timestamp is invalid ${ser}`);
218
+ }
219
+ else
220
+ point.timestamp(new Date(ts));
221
+ } catch (err) { logger.error(`Error parsing Influx point series for ${evt} - ${_point.series.value}`); }
222
+ }
223
+ else
224
+ point.timestamp(new Date());
225
+ try {
226
+
227
+ if (typeof _point.storePrevState !== 'undefined' && _point.storePrevState) {
228
+ // copy the point and subtract a second and keep inverse value
229
+ let ts = new Date();
230
+ let sec = ts.getSeconds() - 1;
231
+ ts.setSeconds(sec);
232
+ point2.timestamp(ts);
233
+ logger.silly(`Batching influx ${e.name} inverse data point ${point2.toString()})`)
234
+ this.writeApi.writePoint(point2);
235
+ }
236
+ if (typeof point.toLineProtocol() !== 'undefined') {
237
+ logger.silly(`Batching influx ${e.name} data point ${point.toString()}`)
238
+ this.writeApi.writePoint(point);
239
+ // this.writeApi.flush()
240
+ // .catch(error => { logger.error(`Error flushing Influx data point ${point.toString()} ${error}`); });
241
+ //logger.info(`INFLUX: ${point.toLineProtocol()}`)
242
+ }
243
+ else {
244
+ logger.silly(`Skipping INFLUX write because some data is missing with ${e.name} event on measurement ${_point.measurement}.`)
245
+ }
246
+ }
247
+ catch (err) {
248
+ logger.error(`Error writing to Influx: ${err.message}`)
249
+ }
250
+ }
251
+ }
252
+ }
253
+ }
254
+ }
255
+ public close = () => {
256
+
257
+ }
258
+ }
259
+
260
+ class InfluxInterfaceEvent extends InterfaceEvent {
261
+ public points: IPoint[];
262
+ }
263
+
264
+ export interface IPoint {
265
+ measurement: string;
266
+ series?: ISeries;
267
+ tags: ITag[];
268
+ fields: IFields[];
269
+ storePrevState?: boolean;
270
+ filter?: any;
271
+ }
272
+ export interface ITag {
273
+ name: string;
274
+ value: string;
275
+ }
276
+ export interface IFields {
277
+ name: string;
278
+ value: string;
279
+ type: string;
280
+ }
281
+ export interface ISeries {
282
+ value: string;
283
+ }