forked from ioBroker/ioBroker.javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
2520 lines (2260 loc) · 105 KB
/
main.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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Javascript adapter
*
* The MIT License (MIT)
*
* Copyright (c) 2014-2022 bluefox <[email protected]>,
*
* Copyright (c) 2014 hobbyquaker
*/
/* jshint -W097 */
/* jshint -W083 */
/* jshint strict: false */
/* jslint node: true */
/* jshint shadow: true */
'use strict';
const vm = require('node:vm');
const nodeFS = require('node:fs');
const nodePath = require('node:path');
const CoffeeScript = require('coffeescript');
const tsc = require('virtual-tsc');
const Mirror = require('./lib/mirror');
const fork = require('child_process').fork;
const mods = {
fs: {},
dgram: require('node:dgram'),
crypto: require('node:crypto'),
dns: require('node:dns'),
events: require('node:events'),
http: require('node:http'),
https: require('node:https'),
http2: require('node:http2'),
net: require('node:net'),
os: require('node:os'),
path: require('node:path'),
util: require('node:util'),
child_process: require('node:child_process'),
stream: require('node:stream'),
url: require('node:url'),
zlib: require('node:zlib'),
suncalc: require('suncalc2'),
request: require('./lib/request'),
wake_on_lan: require('wake_on_lan'),
nodeSchedule: require('node-schedule')
};
/**
* List of forbidden Locations for a mirror directory
* relative to the default data directory
* ATTENTION: the same list is also located in index_m.html!!
* @type {*[]}
*/
const forbiddenMirrorLocations = [
'backup-objects',
'files',
'backitup',
'../backups',
'../node_modules',
'../log'
];
const utils = require('@iobroker/adapter-core'); // Get common adapter utils
const words = require('./lib/words');
const sandBox = require('./lib/sandbox');
const eventObj = require('./lib/eventObj');
const Scheduler = require('./lib/scheduler');
const { targetTsLib, tsCompilerOptions, jsDeclarationCompilerOptions } = require('./lib/typescriptSettings');
const { hashSource, isObject } = require('./lib/tools');
const { isDeepStrictEqual } = require('node:util');
const {
resolveTypescriptLibs,
resolveTypings,
scriptIdToTSFilename,
transformScriptBeforeCompilation,
transformGlobalDeclarations
} = require('./lib/typescriptTools');
const packageJson = require('./package.json');
const SCRIPT_CODE_MARKER = 'script.js.';
const stopCounters = {};
let setStateCountCheckInterval = null;
let webstormDebug;
let debugMode;
if (process.argv) {
for (let a = 1; a < process.argv.length; a++) {
if (process.argv[a].startsWith('--webstorm')) {
webstormDebug = process.argv[a].replace(/^(.*?=\s*)/, '');
}
if (process.argv[a] === '--debugScript') {
if (!process.argv[a + 1]) {
console.log('No script name provided');
process.exit(300);
} else {
debugMode = process.argv[a + 1];
}
}
}
}
const isCI = !!process.env.CI;
// ambient declarations for typescript
/** @type {Record<string, string>} */
let tsAmbient;
// TypeScript's scripts are only recompiled if their source hash changes. If an adapter update fixes compilation bugs,
// a user won't notice until he changes and re-saves the script. To avoid that, we also include the
// adapter version and TypeScript version in the hash
const tsSourceHashBase = `versions:adapter=${packageJson.version},typescript=${packageJson.dependencies.typescript}`;
let mirror;
/** @type {boolean} if logs are subscribed or not */
let logSubscribed;
/**
* @param {string} scriptID - The current script the declarations were generated from
* @param {string} declarations
*/
function provideDeclarationsForGlobalScript(scriptID, declarations) {
// Remember which declarations this global script had access to,
// we need this so the editor doesn't show a duplicate identifier error
if (globalDeclarations != null && globalDeclarations !== '') {
knownGlobalDeclarationsByScript[scriptID] = globalDeclarations;
}
// and concatenate the global declarations for the next scripts
globalDeclarations += declarations + '\n';
// remember all previously generated global declarations,
// so global scripts can reference each other
const globalDeclarationPath = 'global.d.ts';
tsAmbient[globalDeclarationPath] = globalDeclarations;
// make sure the next script compilation has access to the updated declarations
tsServer.provideAmbientDeclarations({
[globalDeclarationPath]: globalDeclarations
});
jsDeclarationServer.provideAmbientDeclarations({
[globalDeclarationPath]: globalDeclarations
});
}
// taken from here: https://stackoverflow.com/questions/11887934/how-to-check-if-dst-daylight-saving-time-is-in-effect-and-if-so-the-offset
function dstOffsetAtDate(dateInput) {
const fullYear = dateInput.getFullYear() | 0;
// "Leap Years are any year that can be exactly divided by 4 (2012, 2016, etc)
// except if it can be exactly divided by 100, then it isn't (2100, 2200, etc)
// except if it can be exactly divided by 400, then it is (2000, 2400)"
// (https://www.mathsisfun.com/leap-years.html).
const isLeapYear = ((fullYear & 3) | (fullYear/100 & 3)) === 0 ? 1 : 0;
// (fullYear & 3) = (fullYear % 4), but faster
//Alternative:var isLeapYear=(new Date(currentYear,1,29,12)).getDate()===29?1:0
const fullMonth = dateInput.getMonth() | 0;
return (
// 1. We know what the time since the Epoch really is
(+dateInput) // same as the dateInput.getTime() method
// 2. We know what the time since the Epoch at the start of the year is
- (+new Date(fullYear, 0)) // day defaults to 1 if not explicitly zeroed
// 3. Now, subtract what we would expect the time to be if daylight savings
// did not exist. This yields the time-offset due to daylight savings.
- ((
((
// Calculate the day of the year in the Gregorian calendar
// The code below works based upon the facts of signed right shifts
// • (x) >> n: shifts n and fills in the n highest bits with 0s
// • (-x) >> n: shifts n and fills in the n highest bits with 1s
// (This assumes that x is a positive integer)
-1 + // first day in the year is day 1
(31 & ((-fullMonth) >> 4)) + // January // (-11)>>4 = -1
((28 + isLeapYear) & ((1 - fullMonth) >> 4)) + // February
(31 & ((2 - fullMonth) >> 4)) + // March
(30 & ((3 - fullMonth) >> 4)) + // April
(31 & ((4 - fullMonth) >> 4)) + // May
(30 & ((5 - fullMonth) >> 4)) + // June
(31 & ((6 - fullMonth) >> 4)) + // July
(31 & ((7 - fullMonth) >> 4)) + // August
(30 & ((8 - fullMonth) >> 4)) + // September
(31 & ((9 - fullMonth) >> 4)) + // October
(30 & ((10 - fullMonth) >> 4)) + // November
// There are no months past December: the year rolls into the next.
// Thus, fullMonth is 0-based, so it will never be 12 in Javascript
(dateInput.getDate() | 0) // get day of the month
) & 0xffff) * 24 * 60 // 24 hours in a day, 60 minutes in an hour
+ (dateInput.getHours() & 0xff) * 60 // 60 minutes in an hour
+ (dateInput.getMinutes() & 0xff)
)|0) * 60 * 1000 // 60 seconds in a minute * 1000 milliseconds in a second
- (dateInput.getSeconds() & 0xff) * 1000 // 1000 milliseconds in a second
- dateInput.getMilliseconds()
);
}
function loadTypeScriptDeclarations() {
// try to load the typings on disk for all 3rd party modules
const packages = [
'node', // this provides auto-completion for most builtins
'request', // preloaded by the adapter
];
// Also include user-selected libraries (but only those that are also installed)
if (
adapter.config
&& typeof adapter.config.libraries === 'string'
&& typeof adapter.config.libraryTypings === 'string'
) {
const installedLibs = adapter.config.libraries
.split(/[,;\s]+/)
.map((s) => s.trim().split('@')[0])
.filter((s) => !!s);
const wantsTypings = adapter.config.libraryTypings.split(/[,;\s]+/).map(s => s.trim()).filter(s => !!s);
// Add all installed libraries the user has requested typings for to the list of packages
for (const lib of installedLibs) {
if (wantsTypings.includes(lib) && !packages.includes(lib)) {
packages.push(lib);
}
}
// Some packages have sub-modules (e.g. rxjs/operators) that are not exposed through the main entry point
// If typings are requested for them, also add them if the base module is installed
for (const lib of wantsTypings) {
// Extract the package name and check if we need to add it
if (!lib.includes('/')) {
continue;
}
const pkgName = lib.substr(0, lib.indexOf('/'));
if (installedLibs.includes(pkgName) && !packages.includes(lib)) {
packages.push(lib);
}
}
}
for (const pkg of packages) {
let pkgTypings = resolveTypings(
pkg,
// node needs ambient typings, so we don't wrap it in declare module
pkg !== 'node'
);
if (!pkgTypings) {
// Create empty dummy declarations so users don't get the "not found" error
// for installed packages
pkgTypings = {
[`node_modules/@types/${pkg}/index.d.ts`]: `declare module "${pkg}";`,
};
}
adapter.log.debug(`Loaded TypeScript definitions for ${pkg}: ${JSON.stringify(Object.keys(pkgTypings))}`);
// remember the declarations for the editor
Object.assign(tsAmbient, pkgTypings);
// and give the language servers access to them
tsServer.provideAmbientDeclarations(pkgTypings);
jsDeclarationServer.provideAmbientDeclarations(pkgTypings);
}
}
const context = {
mods,
objects: {},
states: {},
interimStateValues: {},
stateIds: [],
errorLogFunction: null,
subscriptions: [],
subscriptionsFile: [],
subscriptionsObject: [],
subscribedPatterns: {},
subscribedPatternsFile: {},
adapterSubs: {},
cacheObjectEnums: {},
isEnums: false, // If some subscription wants enum
channels: null,
devices: null,
logWithLineInfo: null,
scheduler: null,
timers: {},
enums: [],
timerId: 0,
names: {},
scripts: {},
messageBusHandlers: {},
logSubscriptions: {},
folderCreationVerifiedObjects: {},
updateLogSubscriptions,
convertBackStringifiedValues,
updateObjectContext,
prepareStateObject,
debugMode,
timeSettings: {
format12: false,
leadingZeros: true
},
rulesOpened: null, //opened rules
};
const regExGlobalOld = /_global$/;
const regExGlobalNew = /script\.js\.global\./;
function checkIsGlobal(obj) {
return obj && obj.common && (regExGlobalOld.test(obj.common.name) || regExGlobalNew.test(obj._id));
}
function convertBackStringifiedValues(id, state) {
if (state && typeof state.val === 'string' &&
context.objects[id] && context.objects[id].common &&
(context.objects[id].common.type === 'array' || context.objects[id].common.type === 'object')) {
try {
state.val = JSON.parse(state.val);
} catch (err) {
if (id.startsWith('javascript.') || id.startsWith('0_userdata.0')) {
adapter.log.info(`Could not parse value for id ${id} into ${context.objects[id].common.type}: ${err.message}`);
} else {
adapter.log.debug(`Could not parse value for id ${id} into ${context.objects[id].common.type}: ${err.message}`);
}
}
}
return state;
}
function prepareStateObject(id, state, isAck) {
if (state === null) {
state = {val: null};
}
if (isAck === true || isAck === false || isAck === 'true' || isAck === 'false') {
if (isObject(state) && state.val !== undefined) {
// we assume that we were given a state object if
// state is an object that contains a `val` property
state.ack = isAck;
} else {
// otherwise assume that the given state is the value to be set
state = {val: state, ack: isAck};
}
}
if (adapter.config.subscribe) {
return state;
}
// set other values to have a full state object
// mirrors logic from statesInRedis
if (state.ts === undefined) {
state.ts = Date.now();
}
if (state.q === undefined) {
state.q = 0;
}
state.from =
typeof state.from === 'string' && state.from !== '' ? state.from : `system.adapter.${adapter.namespace}`;
if (state.lc === undefined) {
const formerStateValue = context.interimStateValues[id] || context.states[id];
if (!formerStateValue) {
state.lc = state.ts;
} else {
// isDeepStrictEqual works on objects and primitive values
const hasChanged = !isDeepStrictEqual(formerStateValue.val, state.val);
if (!formerStateValue.lc || hasChanged) {
state.lc = state.ts;
} else {
state.lc = formerStateValue.lc;
}
}
}
return state;
}
function fileMatching(sub, id, fileName) {
if (sub.idRegEx) {
if (!sub.idRegEx.test(id)) {
return false;
}
} else {
if (sub.id !== id) {
return false;
}
}
if (sub.fileRegEx) {
if (!sub.fileRegEx.test(fileName)) {
return false;
}
} else {
if (sub.fileNamePattern !== fileName) {
return false;
}
}
return true;
}
/**
* @type {Set<string>}
* Stores the IDs of script objects whose change should be ignored because
* the compiled source was just updated
*/
const ignoreObjectChange = new Set();
let objectsInitDone = false;
let statesInitDone = false;
/** @type {ioBroker.Adapter} */
let adapter;
function startAdapter(options) {
options = options || {};
Object.assign(options, {
name: 'javascript',
useFormatDate: true, // load float formatting
/**
* @param id { string }
* @param obj { ioBroker.Object }
*/
objectChange: (id, obj) => {
// Check if we should ignore this change (once!) because we just updated the compiled sources
if (ignoreObjectChange.has(id)) {
// Update the cached script object and do nothing more
context.objects[id] = obj;
ignoreObjectChange.delete(id);
return;
}
// When still in initializing: already remember current values,
// but data structures are initialized elsewhere
if (!objectsInitDone) {
if (obj) {
context.objects[id] = obj;
}
return;
}
if (id.startsWith('enum.')) {
// clear cache
context.cacheObjectEnums = {};
// update context.enums array
if (obj) {
// If new
if (!context.enums.includes(id)) {
context.enums.push(id);
context.enums.sort();
}
} else {
const pos = context.enums.indexOf(id);
// if deleted
if (pos !== -1) {
context.enums.splice(pos, 1);
}
}
}
if (obj && id === 'system.config') {
// set language for debug messages
if (obj.common && obj.common.language) {
words.setLanguage(obj.common.language);
}
}
// update stored time format for variables.dayTime
if (id === adapter.namespace + '.variables.dayTime' && obj && obj.native) {
context.timeSettings.format12 = obj.native.format12 || false;
context.timeSettings.leadingZeros = obj.native.leadingZeros === undefined ? true : obj.native.leadingZeros;
}
// send changes to disk mirror
mirror && mirror.onObjectChange(id, obj);
const formerObj = context.objects[id];
updateObjectContext(id, obj); // Update all Meta object data
// for alias object changes on state objects we need to manually update the
// state cache value because new value is only published on next change
if (obj && obj.type === 'state' && id.startsWith('alias.0.')) {
adapter.getForeignState(id, (err, state) => {
if (err) {
return;
}
if (state) {
context.states[id] = state;
} else if (context.states[id] !== undefined) {
delete context.states[id];
}
});
}
context.subscriptionsObject.forEach(sub => {
// ToDo: implement comparing with id.0.* too
if (sub.pattern === id) {
try {
sub.callback(id, obj);
} catch (err) {
adapter.log.error(`Error in callback: ${err}`);
}
}
});
// handle Script object updates
if (!obj && formerObj && formerObj.type === 'script') {
// Object Deleted just now
if (checkIsGlobal(formerObj)) {
// it was a global Script, and it was enabled and is now deleted => restart adapter
if (formerObj.enabled) {
adapter.log.info(`Active global Script ${id} deleted. Restart instance.`);
adapter.restart();
}
} else if (formerObj.common && formerObj.common.engine === `system.adapter.${adapter.namespace}`) {
// It was a non-global Script and deleted => stop and remove it
stop(id);
// delete scriptEnabled.blabla variable
const idActive = 'scriptEnabled.' + id.substring(SCRIPT_CODE_MARKER.length);
adapter.delObject(idActive);
adapter.delState(idActive);
// delete scriptProblem.blabla variable
const idProblem = 'scriptProblem.' + id.substring(SCRIPT_CODE_MARKER.length);
adapter.delObject(idProblem);
adapter.delState(idProblem);
}
} else if (!formerObj && obj && obj.type === 'script') {
// New script that does not exist before
if (checkIsGlobal(obj)) {
// new global script added => restart adapter
if (obj.common.enabled) {
adapter.log.info(`Active global Script ${id} created. Restart instance.`);
adapter.restart();
}
} else if (obj.common && obj.common.engine === `system.adapter.${adapter.namespace}`) {
// new non-global script - create states for scripts
createActiveObject(id, obj.common.enabled, () => createProblemObject(id));
if (obj.common.enabled) {
// if enabled => Start script
load(id);
}
}
} else if (obj && obj.type === 'script' && formerObj && formerObj.common) {
// Script changed ...
if (checkIsGlobal(obj)) {
if (obj.common.enabled || formerObj.common.enabled) {
adapter.log.info(`Global Script ${id} updated. Restart instance.`);
adapter.restart();
}
} else { // No global script
if (obj.common && obj.common.engine === 'system.adapter.' + adapter.namespace) {
// create states for scripts
createActiveObject(id, obj.common.enabled, () => createProblemObject(id));
}
if ((formerObj.common.enabled && !obj.common.enabled) ||
(formerObj.common.engine === 'system.adapter.' + adapter.namespace && obj.common.engine !== 'system.adapter.' + adapter.namespace)) {
// Script disabled
if (formerObj.common.enabled && formerObj.common.engine === 'system.adapter.' + adapter.namespace) {
// Remove it from executing
stop(id);
}
} else if ((!formerObj.common.enabled && obj.common.enabled) ||
(formerObj.common.engine !== 'system.adapter.' + adapter.namespace && obj.common.engine === 'system.adapter.' + adapter.namespace)) {
// Script enabled
if (obj.common.enabled && obj.common.engine === 'system.adapter.' + adapter.namespace) {
// Start script
load(id);
}
} else { //if (obj.common.source !== formerObj.common.source) {
// Source changed => restart it
stopCounters[id] = stopCounters[id] ? stopCounters[id] + 1 : 1;
stop(id, (res, _id) =>
// only start again after stop when "last" object change to prevent problems on
// multiple changes in fast frequency
!--stopCounters[id] && load(_id));
}
}
}
},
stateChange: (id, state) => {
if (context.interimStateValues[id] !== undefined) {
// any update invalidates the remembered interim value
delete context.interimStateValues[id];
}
if (!id || id.startsWith('messagebox.') || id.startsWith('log.')) {
return;
}
if (id === `${adapter.namespace}.debug.to` && state && !state.ack) {
return !debugMode && debugSendToInspector(state.val);
}
// When still in initializing: already remember current values,
// but data structures are initialized elsewhere
if (!statesInitDone) {
if (state) {
context.states[id] = state;
}
return;
}
const oldState = context.states[id];
if (state) {
if (oldState) {
// enable or disable script
if (!state.ack && id.startsWith(activeStr) && context.objects[id] && context.objects[id].native && context.objects[id].native.script) {
adapter.extendForeignObject(context.objects[id].native.script, { common: { enabled: state.val } });
}
// monitor if adapter is alive and send all subscriptions once more, after adapter goes online
if (/*oldState && */oldState.val === false && state.val && id.endsWith('.alive')) {
if (context.adapterSubs[id]) {
const parts = id.split('.');
const a = parts[2] + '.' + parts[3];
for (let t = 0; t < context.adapterSubs[id].length; t++) {
adapter.log.info(`Detected coming adapter "${a}". Send subscribe: ${context.adapterSubs[id][t]}`);
adapter.sendTo(a, 'subscribe', context.adapterSubs[id][t]);
}
}
}
} else if (/*!oldState && */!context.stateIds.includes(id)) {
context.stateIds.push(id);
context.stateIds.sort();
}
context.states[id] = state;
} else {
if (oldState) delete context.states[id];
state = {};
const pos = context.stateIds.indexOf(id);
if (pos !== -1) {
context.stateIds.splice(pos, 1);
}
}
const _eventObj = eventObj.createEventObject(context, id, context.convertBackStringifiedValues(id, state), context.convertBackStringifiedValues(id, oldState));
// if this state matches any subscriptions
for (let i = 0, l = context.subscriptions.length; i < l; i++) {
const sub = context.subscriptions[i];
if (sub && patternMatching(_eventObj, sub.patternCompareFunctions)) {
try {
sub.callback(_eventObj);
} catch (err) {
adapter.log.error(`Error in callback: ${err}`);
}
}
}
},
fileChange: (id, fileName, size) => {
// if this file matches any subscriptions
for (let i = 0, l = context.subscriptionsFile.length; i < l; i++) {
const sub = context.subscriptionsFile[i];
if (sub && fileMatching(sub, id, fileName)) {
try {
sub.callback(id, fileName, size, sub.withFile);
} catch (err) {
adapter.log.error(`Error in callback: ${err}`);
}
}
}
},
unload: callback => {
debugStop()
.then(() => {
stopTimeSchedules();
setStateCountCheckInterval && clearInterval(setStateCountCheckInterval);
stopAllScripts(callback);
});
},
ready: () => {
mods.request.setLogger(adapter.log);
adapter.config.maxSetStatePerMinute = parseInt(adapter.config.maxSetStatePerMinute, 10) || 1000;
if (adapter.supportsFeature && adapter.supportsFeature('PLUGINS')) {
const sentryInstance = adapter.getPluginInstance('sentry');
if (sentryInstance) {
const Sentry = sentryInstance.getSentryObject();
if (Sentry) {
Sentry.configureScope(scope => {
scope.addEventProcessor((event, _hint) => {
if (event.exception && event.exception.values && event.exception.values[0]) {
const eventData = event.exception.values[0];
if (eventData.stacktrace && eventData.stacktrace.frames && Array.isArray(eventData.stacktrace.frames) && eventData.stacktrace.frames.length) {
// Exclude event if script Marker is included
if (eventData.stacktrace.frames.find(frame => frame.filename && frame.filename.includes(SCRIPT_CODE_MARKER))) {
return null;
}
//Exclude event if own directory is included but not inside own node_modules
const ownNodeModulesDir = nodePath.join(__dirname, 'node_modules');
if (!eventData.stacktrace.frames.find(frame => frame.filename && frame.filename.includes(__dirname) && !frame.filename.includes(ownNodeModulesDir))) {
return null;
}
// We have exception data and do not sorted it out, so report it
return event;
}
}
// No exception in it ... do not report
return null;
});
main();
});
} else {
main();
}
} else {
main();
}
} else {
main();
}
},
message: obj => {
if (obj) {
switch (obj.command) {
// process messageTo commands
case 'toScript':
case 'jsMessageBus':
if (obj.message && (
obj.message.instance === null ||
obj.message.instance === undefined ||
('javascript.' + obj.message.instance === adapter.namespace) ||
(obj.message.instance === adapter.namespace)
)) {
Object.keys(context.messageBusHandlers).forEach(name => {
// script name could be script.js.xxx or only xxx
if ((!obj.message.script || obj.message.script === name) && context.messageBusHandlers[name][obj.message.message]) {
context.messageBusHandlers[name][obj.message.message].forEach(handler => {
try {
if (obj.callback) {
handler.cb.call(handler.sandbox, obj.message.data, result =>
adapter.sendTo(obj.from, obj.command, result, obj.callback));
} else {
handler.cb.call(handler.sandbox, obj.message.data, result => {/* nop */ });
}
} catch (e) {
adapter.setState('scriptProblem.' + name.substring(SCRIPT_CODE_MARKER.length), true, true);
context.logError('Error in callback', e);
}
});
}
});
}
break;
case 'loadTypings': { // Load typings for the editor
const typings = {};
// try to load TypeScript lib files from disk
try {
const typescriptLibs = resolveTypescriptLibs(targetTsLib);
Object.assign(typings, typescriptLibs);
} catch (e) { /* ok, no lib then */
}
// provide the already-loaded ioBroker typings and global script declarations
Object.assign(typings, tsAmbient);
// also provide the known global declarations for each global script
for (const globalScriptPaths of Object.keys(knownGlobalDeclarationsByScript)) {
typings[`${globalScriptPaths}.d.ts`] = knownGlobalDeclarationsByScript[globalScriptPaths];
}
if (obj.callback) {
adapter.sendTo(obj.from, obj.command, {typings}, obj.callback);
}
break;
}
case 'calcAstroAll': {
if (obj.message) {
const sunriseOffset = parseInt(obj.message.sunriseOffset === undefined ? adapter.config.sunriseOffset : obj.message.sunriseOffset, 10) || 0;
const sunsetOffset = parseInt(obj.message.sunsetOffset === undefined ? adapter.config.sunsetOffset : obj.message.sunsetOffset, 10) || 0;
const longitude = parseFloat(obj.message.longitude === undefined ? adapter.config.longitude : obj.message.longitude) || 0;
const latitude = parseFloat(obj.message.latitude === undefined ? adapter.config.latitude : obj.message.latitude) || 0;
const now = new Date();
let astroEvents = {};
try {
astroEvents = mods.suncalc.getTimes(now, latitude, longitude);
} catch (e) {
adapter.log.error(`Cannot calculate astro data: ${e}`);
}
if (astroEvents) {
try {
astroEvents.nextSunrise = getAstroEvent(
now,
obj.message.sunriseEvent || adapter.config.sunriseEvent,
obj.message.sunriseLimitStart || adapter.config.sunriseLimitStart,
obj.message.sunriseLimitEnd || adapter.config.sunriseLimitEnd,
sunriseOffset,
false,
latitude,
longitude,
true
);
astroEvents.nextSunset = getAstroEvent(
now,
obj.message.sunsetEvent || adapter.config.sunsetEvent,
obj.message.sunsetLimitStart || adapter.config.sunsetLimitStart,
obj.message.sunsetLimitEnd || adapter.config.sunsetLimitEnd,
sunsetOffset,
true,
latitude,
longitude,
true
);
} catch (e) {
adapter.log.error(`Cannot calculate astro data: ${e}`);
}
}
const result = {};
const keys = Object.keys(astroEvents).sort((a, b) => astroEvents[a] - astroEvents[b]);
keys.forEach(key => result[key] = astroEvents[key].toISOString());
obj.callback && adapter.sendTo(obj.from, obj.command, result, obj.callback);
}
break;
}
case 'calcAstro': {
if (obj.message) {
const sunriseOffset = parseInt(obj.message.sunriseOffset === undefined ? adapter.config.sunriseOffset : obj.message.sunriseOffset, 10) || 0;
const sunsetOffset = parseInt(obj.message.sunsetOffset === undefined ? adapter.config.sunsetOffset : obj.message.sunsetOffset, 10) || 0;
const longitude = parseFloat(obj.message.longitude === undefined ? adapter.config.longitude : obj.message.longitude) || 0;
const latitude = parseFloat(obj.message.latitude === undefined ? adapter.config.latitude : obj.message.latitude) || 0;
const now = new Date();
const nextSunrise = getAstroEvent(
now,
obj.message.sunriseEvent || adapter.config.sunriseEvent,
obj.message.sunriseLimitStart || adapter.config.sunriseLimitStart,
obj.message.sunriseLimitEnd || adapter.config.sunriseLimitEnd,
sunriseOffset,
false,
latitude,
longitude,
true
);
const nextSunset = getAstroEvent(
now,
obj.message.sunsetEvent || adapter.config.sunsetEvent,
obj.message.sunsetLimitStart || adapter.config.sunsetLimitStart,
obj.message.sunsetLimitEnd || adapter.config.sunsetLimitEnd,
sunsetOffset,
true,
latitude,
longitude,
true
);
obj.callback && adapter.sendTo(obj.from, obj.command, {
nextSunrise,
nextSunset
}, obj.callback);
}
break;
}
case 'debug': {
!debugMode && debugStart(obj.message);
break;
}
case 'debugStop': {
!debugMode && debugStop()
.then(() => console.log('stopped'));
break;
}
case 'rulesOn': {
context.rulesOpened = obj.message;
console.log('Enable messaging for ' + context.rulesOpened);
break;
}
case 'rulesOff': {
// may be if (context.rulesOpened === obj.message)
console.log('Disable messaging for ' + context.rulesOpened);
context.rulesOpened = null;
break;
}
case 'getIoBrokerDataDir': {
obj.callback && adapter.sendTo(obj.from, obj.command, {
dataDir: utils.getAbsoluteDefaultDataDir(),
sep: nodePath.sep
}, obj.callback);
break;
}
}
}
},
/**
* If the JS-Controller catches an unhandled error, this will be called
* so we have a chance to handle it ourself.
* @param {Error} err
*/
error: err => {
// Identify unhandled errors originating from callbacks in scripts
// These are not caught by wrapping the execution code in try-catch
if (err && typeof err.stack === 'string') {
const scriptCodeMarkerIndex = err.stack.indexOf(SCRIPT_CODE_MARKER);
if (scriptCodeMarkerIndex > -1) {
// This is a script error
let scriptName = err.stack.substr(scriptCodeMarkerIndex);
scriptName = scriptName.substr(0, scriptName.indexOf(':'));
context.logError(scriptName, err);
// Leave the script running for now
// signal to the JS-Controller that we handled the error ourselves
return true;
}
// check if a path contains adaptername but not own node_module
// this regex matched "iobroker.javascript/" if NOT followed by "node_modules"
if (!err.stack.match(/iobroker\.javascript[/\\](?!.*node_modules).*/g)) {
// This is an error without any info on origin (mostly async errors like connection errors)
// also consider it as being from a script
adapter.log.error('An error happened which is most likely from one of your scripts, but the originating script could not be detected.');
adapter.log.error('Error: ' + err.message);
adapter.log.error(err.stack);
// signal to the JS-Controller that we handled the error ourselves
return true;
}
}
}
});
adapter = new utils.Adapter(options);
// handler for logs
adapter.on('log', msg =>
Object.keys(context.logSubscriptions)
.forEach(name =>
context.logSubscriptions[name].forEach(handler => {
if (typeof handler.cb === 'function' && (handler.severity === '*' || handler.severity === msg.severity)) {
handler.sandbox.logHandler = handler.severity || '*';
handler.cb.call(handler.sandbox, msg);
handler.sandbox.logHandler = null;
}
})));
context.adapter = adapter;
return adapter;
}
function updateObjectContext(id, obj) {
if (obj) {
// add state to state ID's list
if (obj.type === 'state') {
if (!context.stateIds.includes(id)) {
context.stateIds.push(id);
context.stateIds.sort();
}
if (context.devices && context.channels) {
const parts = id.split('.');
parts.pop();
const chn = parts.join('.');
context.channels[chn] = context.channels[chn] || [];
context.channels[chn].push(id);
parts.pop();
const dev = parts.join('.');
context.devices[dev] = context.devices[dev] || [];
context.devices[dev].push(id);
}
}
} else {
// delete object from state ID's list
const pos = context.stateIds.indexOf(id);
pos !== -1 && context.stateIds.splice(pos, 1);
if (context.devices && context.channels) {
const parts = id.split('.');
parts.pop();
const chn = parts.join('.');
if (context.channels[chn]) {
const posChn = context.channels[chn].indexOf(id);
posChn !== -1 && context.channels[chn].splice(posChn, 1);
}
parts.pop();
const dev = parts.join('.');
if (context.devices[dev]) {
const posDev = context.devices[dev].indexOf(id);
posDev !== -1 && context.devices[dev].splice(posDev, 1);
}
}
delete context.folderCreationVerifiedObjects[id];
}
if (!obj && context.objects[id]) {
// objects was deleted
removeFromNames(id);
delete context.objects[id];