-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeiger-cloud-connector.js
991 lines (914 loc) · 25.8 KB
/
geiger-cloud-connector.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
const {
v4: uuidv4
} = require("uuid");
const {
getRequest,
postRequest,
readJSONFileSync,
writeToFile,
putRequest,
deleteRequest
} = require('./utils');
const GEIGER_CLOUD_CONFIGURATION = `${__dirname}/config.json`;
// const UNRESOLVED_RECOMMENDATIONS_PATH = `${__dirname}/recommendationIds.json`;
let config = null;
// let unresolveRecommendations = [];
const getConfig = () => config;
// const loadUnresolvedRecommendations = () => {
// if (unresolveRecommendations.length === 0) {
// let recs = readJSONFileSync(UNRESOLVED_RECOMMENDATIONS_PATH);
// if (recs) {
// unresolveRecommendations = recs.recommendations ?? [];
// }
// }
// };
// const updateUnresolveRecommendations = () => {
// return writeToFile(UNRESOLVED_RECOMMENDATIONS_PATH, JSON.stringify({
// recommendations: unresolveRecommendations
// }), (err, ret) => {
// if (err) {
// console.error('Failed to update the unresolved recommendation list');
// } else {
// console.log('The unresolved recommendation list has been updated!');
// }
// });
// };
/**
* Load the configuration file
*/
const loadConfig = () => {
config = readJSONFileSync(GEIGER_CLOUD_CONFIGURATION);
if (!config.id_company) {
console.warn('id_company is not set');
}
// if (!config.plugin_id) {
// console.warn('plugin_id is not set');
// }
// if (!config.owner_id) {
// console.warn('owner_id is not set');
// }
if (!config.geigerAPIURL) {
console.warn('Missing geigerAPIURL');
}
// loadUnresolvedRecommendations();
};
/**
* Update the configuration file
*/
const updateConfig = (callback) => {
console.log(`[updateConfig] Going to save a new config:\n ${JSON.stringify(config)}`);
if (!config.id_company && config.company && config.company.id_company) {
config.id_company = config.company.id_company;
}
if (!config.plugin_id && config.plugin && config.plugin.plugin_id) {
config.plugin_id = config.plugin.plugin_id;
}
// if (!config.owner_id) {
// config.owner_id = uuidv4();
// }
writeToFile(GEIGER_CLOUD_CONFIGURATION, JSON.stringify(config), (err, result) => {
if (err) {
console.error('Failed to update the configuration');
console.error(err);
return callback(null);
} else {
console.log('Configuration has been updated');
console.log(config);
return callback(config);
}
});
};
const resetConfig = (callback) => {
let newConfig = {
geigerAPIURL: config.geigerAPIURL,
plugin: {
name: config.plugin.name,
description: config.plugin.description,
}
}
config = newConfig;
updateConfig(callback);
}
const updateConfigWithChangedValue = (key, newValue, callback) => {
config[key] = newValue;
console.log(`[updateConfigWithChangedValue] Going to save a new config:\n ${JSON.stringify(config)}`);
writeToFile(GEIGER_CLOUD_CONFIGURATION, JSON.stringify(config), (err, result) => {
if (err) {
console.error('Failed to update the configuration');
console.error(err);
return callback(err);
} else {
console.log('Configuration has been updated');
console.log(config);
return callback(null, config);
}
});
};
///////////// COMPANY ///////////////////
/**
* Get all the company
* @param {Function} callback function to callback when it done
*/
const getAllCompany = (callback) => {
const url = `${config.geigerAPIURL}/store/company`;
getRequest(url, (err, companies) => {
if (err) {
console.log('Failed to get company');
console.error(err.response.data.message);
callback(null);
} else {
callback(companies);
}
});
};
// const deleteCompany = (id_company, callback) => {
// const url = `${config.geigerAPIURL}/store/company/${id_company}`;
// deleteRequest(url, (err, result) => {
// if (err) {
// console.log('Failed to delete company with id: ', id_company);
// console.error(err.response.data.message);
// callback(null);
// } else {
// callback(result);
// }
// })
// }
/***
* Create a new company instance on Geiger Cloud
*/
const createCompany = ({
company_name,
company_users,
email,
founding_date,
location,
id_company,
public_key
}, callback) => {
const url = `${config.geigerAPIURL}/store/company`;
const companyId = id_company ? id_company : uuidv4();
console.log(`url: ${url}`);
console.log(`companyId: ${companyId}`);
postRequest(url, {
company_name,
company_users,
email,
founding_date,
id_company: companyId,
location,
public_key
}, (err, id_company) => {
if (err) {
console.log('Failed to create a new company');
console.log({
company_name,
company_users,
email,
founding_date,
companyId,
location,
public_key
});
console.error(err.response.data.message);
return callback(null);
} else {
console.info('A new company has been created');
console.log('Going to save the new company id into the configuration file');
config.id_company = id_company;
config.company_name = company_name;
config.company = {
company_name,
company_users,
email,
founding_date,
companyId,
location,
public_key
};
updateConfig((newConfig) => {
if (!newConfig) {
console.log(`Failed to update new configuration`);
}
return callback(id_company);
});
}
});
};
/**
* Update the company information with given company id
* @param {Function} callback {error, company}
* @returns
*/
const updateCompanyInfo = (id_company, callback) => {
if (!config.id_company && !id_company) {
console.error('id_company is not set. Please specify your company id');
return callback({
error: 'Please provide company id'
});
} else {
const companyId = id_company ? id_company : config.id_company;
console.log(`Company Id: ${companyId}`);
const url = `${config.geigerAPIURL}/store/company/${companyId}`;
getRequest(url, (err, company) => {
if (err) {
console.log(`Failed to get company with id: ${companyId}`);
console.log(err.response);
return callback({
error: `Failed to get company info`
});
} else {
config.company = company;
config.plugin.companyName = company.name;
config.company_name = company.name;
return callback({
company
});
// updateConfig((newConfig) => {
// if (!newConfig) {
// console.log(`Failed to update new config`);
// }
// return callback({
// company
// });
// });
}
});
}
};
///////////// PLUGIN ///////////////////
// const registerPluginWithDefaultInfo = (callback) => {
// if (!config.plugin.description || !config.plugin.name) {
// console.error('There is no plugin information');
// return callback({
// error: 'No plugin information'
// });
// }
// let pluginId = config.plugin_id;
// if (!pluginId) pluginId = uuidv4();
// return registerPlugin({
// description: config.plugin.description,
// id: pluginId,
// name: config.plugin.name
// }, callback);
// };
/**
* Register a plugin
* @param {*} param0
* @param {*} callback
* @returns
*/
const registerPlugin = ({
company_name,
id_company,
description,
id,
name
}, callback) => {
console.log(`Going to register a plugin: ${company_name}, ${id_company}`);
if (!config.id_company && !id_company) {
console.error('Missing company id! Cannot register the plugin: ', id);
return callback({
error: 'Missing company ID'
});
}
if (!config.company_name && !company_name) {
console.error('Missing company name! Going to get the company information');
updateCompanyInfo(id_company, (data) => {
const {
error,
company
} = data;
if (error) {
console.error(`Cannot register the plugin: ${id}`);
return callback({
error
});
} else {
console.log(`Back to register plugin: ${JSON.stringify(company)}`);
return registerPlugin({
id_company: company.id_company,
company_name: company.company_name,
description,
id,
name
}, callback);
}
});
} else {
// if (config.company_name !== company_name) {
// console.warn(`Company name is not correct! The given company name is: ${company_name}`);
// return callback({error: 'Company name is not matched'});
// }
if (config.plugin_registered == true && config.plugin) {
console.log('Plugin has been registered already!');
return callback({
geigerInfo: getGeigerInfo()
});
}
console.log('Going to register the plugin');
const url = `${config.geigerAPIURL}/plugin`;
let pluginId = id ? id : (config.plugin_id ? config.plugin_id : uuidv4());
let postData = {
companyName: company_name ? company_name : config.company_name,
description,
id: pluginId,
name
};
postRequest(url, postData, (err, data) => {
if (err) {
console.log(`Failed to register a plugin:\n ${JSON.stringify(err)}`);
console.log(err);
console.log(`Plugin data: ${JSON.stringify(postData)}`);
return callback({
error: `Failed to register a plugin`
});
} else {
config.plugin_id = pluginId;
config.plugin = {
companyName: config.company_name,
id: pluginId,
name,
description
};
config.plugin_registered = true;
if (!config.id_company) {
updateCompanyInfo(id_company, (companyInfo) => {
const {
error,
company
} = companyInfo;
if (error) {
console.log(`Failed to update company info of ${id_company}`);
return callback({
error
});
} else {
updateConfig((newConfig) => {
if (newConfig) {
return callback({
geigerInfo: getGeigerInfo()
});
} else {
callback({
error:'Cannot save new config'
});
}
})
}
});
} else {
updateConfig((newConfig) => {
if (!newConfig) {
console.log(`Failed to update new config`);
}
return callback({
geigerInfo: getGeigerInfo()
});
});
}
}
});
}
};
const registerPluginWithCompanyId = (companyId, callback) => {
registerPlugin({
...config.plugin,
id_company: companyId,
}, callback);
};
// const getPlugin = (pluginId, callback) => {
// const url = `${config.geigerAPIURL}/plugin/${pluginId}`;
// getRequest(url, (err, plugin) => {
// if (err) {
// console.log('Failed to get plugin with id: ', pluginId);
// console.error(err);
// callback(null);
// } else {
// callback(plugin);
// }
// })
// }
/////// EVENT //////////////
/**
*
* @param {*} eventId event id
* @param {*} callback (event) =>
* @returns
*/
const getCompanyEvent = (eventId, callback) => {
if (!config.id_company) {
console.warn('Missing company_id. Cannot update an event');
return callback(null);
}
if (!eventId) {
console.warn('Missing eventId. Cannot update an event');
return callback(null);
}
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event/${eventId}`;
getRequest(url, (err, data) => {
if (err) {
console.log(`Failed to get company (${config.id_company}) event (${eventId})`);
return callback(null);
} else {
return callback(data);
}
});
};
const updateCompanyEvent = (eventId, {
description,
flag,
geigerValue,
maxValue,
minValue,
name,
relation,
threatsImpact,
urgency,
valueType,
}, callback) => {
console.log(`Going to update event company ${eventId} of the company ${config.id_company}`);
if (!config.plugin_id) {
console.error('Cannot send data. Missing plugin id.');
return callback(null);
}
getCompanyEvent(eventId, (event) => {
if (event) {
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event/${eventId}`;
delete event.last_modified;
delete event.expires;
delete event.content;
const finalContent = {
description: JSON.stringify(description),
flag,
geigerValue,
maxValue,
minValue,
name: name ? name : config.plugin ? config.plugin.name : 'Montimage IDS',
pluginName: config.plugin ? config.plugin.name : 'Montimage IDS',
pluginId: config.plugin_id,
type: "Cloud",
relation,
threatsImpact,
urgency,
valueType,
};
console.log('finalContent:');
console.log(finalContent);
let newEvent = {
...event,
content: JSON.stringify(finalContent)
};
console.log('putData:');
console.log(newEvent);
putRequest(url, newEvent, (err, result) => {
if (err) {
console.log(`Failed to update company event (${eventId}) of the company ${config.id_company}: cannot update the event content`);
console.log(err);
return callback(null);
} else {
console.log(`Event company (${eventId}) of the company ${config.id_company} has been updated`);
return callback(newEvent);
}
});
} else {
console.log(`Failed to update event company (${eventId}) of the company ${config.id_company}: cannot get the event`);
return callback(null);
}
});
};
const updateRecommendation = (eventId, {
action,
costs,
longDescription,
recommendationId,
recommendationType,
relatedThreatsWeights,
shortDescription,
os
}, callback) => {
console.log(`Going to update recommendation ${eventId} of the company ${config.id_company}`);
if (!config.plugin_id) {
console.error('Cannot send data. Missing plugin id.');
return callback(null);
}
getCompanyEvent(eventId, (event) => {
if (event) {
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event/${eventId}`;
delete event.last_modified;
delete event.expires;
delete event.content;
const finalContent = {
action,
costs,
shortDescription:JSON.stringify(shortDescription),
longDescription:JSON.stringify(longDescription),
recommendationId: recommendationId,
pluginId: config.plugin_id,
pluginName: config.plugin.name,
recommendationType,
relatedThreatsWeights,
os
};
console.log('finalContent:');
console.log(finalContent);
let newEvent = {
...event,
content: JSON.stringify(finalContent)
};
console.log('putData:');
console.log(newEvent);
putRequest(url, newEvent, (err, result) => {
if (err) {
console.log(`Failed to update recommendation (${eventId}) of the company ${config.id_company}: cannot update the event content`);
console.log(err);
return callback(null);
} else {
console.log(`Recommendation (${eventId}) of the company ${config.id_company} has been updated`);
return callback(newEvent);
}
});
} else {
console.log(`Failed to update recommendation (${eventId}) of the company ${config.id_company}: cannot get the event`);
return callback(null);
}
});
};
const addEvent = ({
content,
type,
// id_event,
}, callback) => {
if (!config.id_company) {
console.warn('Missing company_id. Cannot send data');
return callback(null);
}
// const eventId = id_event ? id_event : uuidv4();
_sendEvent(content, type, callback);
};
const _sendEvent = (content, type, callback) => {
console.log(`Going to add a new event of the company ${config.id_company}`);
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event`;
const postData = {
content,
encoding: "ascii",
language: 'en',
owner: config.id_company,
type,
// id_event: eventId,
tlp: "GREEN"
};
// console.log(`url: ${url}`);
console.log(`postData: ${JSON.stringify(postData)}`);
postRequest(url, postData, (err, newEventId) => {
if (err) {
console.error(`Failed to send an event of company: ${config.id_company}`);
console.error(err);
console.error({
content,
type,
// id_event:eventId
});
return callback(null);
} else {
console.log(`---> An event has been added: ${JSON.stringify(newEventId)}`);
return callback(newEventId);
}
});
};
/**
* Send a sensorCloudConnected Tool
* @param {*} param0
* @param {*} callback
* @returns
*/
const sendSensorData = ({
description,
flag,
geigerValue,
maxValue,
minValue,
name,
relation,
threatsImpact,
urgency,
valueType,
}, callback) => {
console.log('---> Going to add a new sensor data');
if (!config.id_company) {
console.error('Cannot send data. Missing company id.');
return callback(null);
}
if (!config.plugin_id) {
console.error('Cannot send data. Missing plugin id.');
return callback(null);
}
const content = {
description: JSON.stringify(description),
flag,
geigerValue,
maxValue,
minValue,
name: name ? name : config.plugin ? config.plugin.name : 'Montimage IDS',
pluginId: config.plugin_id,
type: "Cloud",
relation,
threatsImpact,
urgency,
valueType,
};
return addEvent({
content: JSON.stringify(content),
type: "sensorCloudConnected",
}, callback);
};
/**
* Send a recommendation
* @param {*} param0
* @param {*} callback
*/
const sendRecommendation = ({
action,
costs,
longDescription,
recommendationId,
recommendationType,
relatedThreatsWeights,
shortDescription,
os
},
callback,
) => {
if (!config.id_company) {
console.error('Cannot send data. Missing company id.');
return callback(null);
}
if (!config.plugin_id) {
console.error('Cannot send data. Missing plugin id.');
return callback(null);
}
if (!config.plugin || !config.plugin.name) {
console.error('Cannot send data. Missing plugin name.');
return callback(null);
}
if (!recommendationId) {
console.error('Missing the recommendation ID');
return callback(null);
}
const content = {
action,
costs,
shortDescription:JSON.stringify(shortDescription),
longDescription:JSON.stringify(longDescription),
recommendationId: recommendationId,
pluginId: config.plugin_id,
pluginName: config.plugin.name,
recommendationType,
relatedThreatsWeights,
os
};
return addEvent({
content: JSON.stringify(content),
type: 'sensorRecommendation',
},
(eventId) => {
if (eventId) {
return callback(eventId);
} else {
return callback(null);
}
},
);
};
/**
* Resolve a recommendation
* @param {*} recommendationId
* @param {*} callback
* @returns
*/
const sendRecommendationStatus = (
recommendationId,
callback) => {
if (!config.id_company) {
console.error('Cannot send data. Missing company id.');
return callback(null);
}
if (!config.plugin_id) {
console.error('Cannot send data. Missing plugin id.');
return callback(null);
}
if (!recommendationId) {
console.error('Cannot send a recommendation status. Missing recommendation id.');
return callback(null);
}
const content = {
description: JSON.stringify({
en:"Reflects the status of the recommendation with the indicated ID. geigerValue 0=resolved, 1=active",
de:"Gibt den Status der Empfehlung mit der angegebenen ID wieder. geigerValue 0=aufgelöst, 1=aktiv",
ro:"Reflectă starea recomandării cu ID-ul indicat. geigerValue 0=rezolvat, 1=activ",
nl:"Geeft de status van de aanbeveling weer met de aangegeven ID. geigerValue 0=opgelost, 1=actief",
}),
flag: "0",
geigerValue: "0",
maxValue: "1",
minValue: "0",
name: `Recommendation Status of ${recommendationId}`,
pluginId: config.plugin_id,
pluginName: config.plugin?config.plugin.name: "Montimage IDS",
relation: "device",
threatsImpact: "",
urgency: "High",
type: "Cloud",
recommendationId,
valueType: "int",
};
console.log(`---> Going to add a new recommendation status for property ${recommendationId}`);
return addEvent({
content: JSON.stringify(content),
type: "sensorStatus",
}, (data) => {
if (data) {
// if (unresolveRecommendations) {
// const index = unresolveRecommendations.indexOf(recommendationId);
// if (index > -1) {
// unresolveRecommendations.splice(index, 1);
// }
// // unresolveRecommendations.push(recommendationId);
// updateUnresolveRecommendations();
// }
return callback({
recommendationId
});
} else {
return callback(null);
}
});
};
/**
* Get all event by type of current owner
* @param {*} type
* @param {*} callback
* @returns
*/
const getAllEventByType = (type, callback) => {
// if (!config.owner_id) {
// console.log(`Cannot get all event of: ${type}. Missing owner id`);
// return callback(null);
// }
const headers = {
owner: config.id_company,
type
};
const url = `${config.geigerAPIURL}/store/events`;
getRequest(url, (err, data) => {
if (err) {
console.error(`Failed to get all event of type: ${type}`);
console.error(err);
return callback(null);
} else {
return callback(data);
}
}, headers);
};
/**
* Get all recommendations
* @param {*} callback
* @returns
*/
const getAllRecommendations = (callback) => {
return getAllEventByType('sensorRecommendation', callback);
};
const getAllSensorDatas = (callback) => {
return getAllEventByType('sensorCloudConnected', callback);
};
const getAllRecommendationStatus = (callback) => {
return getAllEventByType('sensorStatus', callback);
};
const getGeigerInfo = () => {
if (!config) {
loadConfig();
}
return {
id_company: config.id_company ? config.id_company : config.company ? config.company.id_company : null,
company: config.company,
plugin_id: config.plugin_id ? config.plugin_id : config.plugin.plugin_id,
plugin: config.plugin,
owner_id: config.id_company,
};
};
/**
* Delete an event of a company
* @param {String} eventId Event id
* @param {Function} callback (error) => call back function
* @returns
*/
const deleteCompanyEvent = (eventId, callback) => {
if (!config.id_company) {
console.error('Missing company id');
return callback({error: "Missing company id"});
}
console.log(`---> Going to delete event ${eventId} of company ${config.id_company}`);
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event/${eventId}`;
deleteRequest(url, (err, data) => {
if (err) {
console.error(`Failed to delete event ${eventId} of company ${config.id_company}`);
console.error(`${JSON.stringify(err)}`);
return callback({error: `Failed to delete event ${eventId} of company ${config.id_company}`});
} else {
console.log(`Event ${eventId} of company ${config.id_company} has been deleted`);
return callback(null);
}
});
};
/**
* Get all company event ids
* @param {Function} callback (err, ids) => call back function
* @returns
*/
const getAllCompanyEventIds = (callback) => {
if (!config.id_company) {
console.error('Missing company id');
return callback({error: "Missing company id"});
}
console.log(`---> Going to get all company event ids of company ${config.id_company}`);
const url = `${config.geigerAPIURL}/store/company/${config.id_company}/event`;
getRequest(url, (err, data) => {
if (err) {
console.error(`Failed to get event ids of company ${config.id_company}`);
console.error(`${JSON.stringify(err)}`);
return callback({error: `Failed to get all event ids of company ${config.id_company}`});
}else {
return callback(null, data);
}
});
};
/**
* Delete all company events
*/
const deleteAllCompanyEvents = () => {
if (!config.id_company) {
console.error('Missing company id');
} else {
getAllCompanyEventIds((err, ids) => {
if (err) {
console.error('Failed to get all company event ids');
console.error(`${JSON.stringify(err)}`);
} else {
_deleteCompanyEvents(ids);
// for (let index = 0; index < ids.length; index++) {
// const eventId = ids[index];
// deleteCompanyEvent(eventId, (err, ret) => {
// if (err) {
// console.log(`Failed to delete event ${eventId}`);
// console.log(err);
// }else {
// console.log(`Event ${eventId} has been deleted`);
// }
// });
// }
}
});
}
};
const _deleteCompanyEvents = (ids) =>{
console.log(`remain events: ${ids.length}`);
if (ids.length > 0) {
const eventId = ids.pop();
deleteCompanyEvent(eventId, (err, ret) => {
if (err) {
console.log(`Failed to delete event ${eventId}`);
console.log(err);
}else {
console.log(`Event ${eventId} has been deleted`);
}
_deleteCompanyEvents(ids);
});
}
};
loadConfig();
module.exports = {
loadConfig,
createCompany,
getAllCompany,
// deleteCompany,
registerPlugin,
// getPlugin,
sendSensorData,
sendRecommendation,
updateRecommendation,
sendRecommendationStatus,
getAllEventByType,
getAllSensorDatas,
getAllRecommendations,
getAllRecommendationStatus,
getGeigerInfo,
updateConfigWithChangedValue,
// registerPluginWithDefaultInfo,
getConfig,
registerPluginWithCompanyId,
getCompanyEvent,
updateCompanyEvent,
deleteCompanyEvent,
getAllCompanyEventIds,
deleteAllCompanyEvents,
resetConfig
};