@itentialopensource/adapter-efficientip_solidserver 0.1.1 → 0.3.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 (57) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +1465 -0
  4. package/CHANGELOG.md +17 -2
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +235 -576
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +383 -263
  14. package/adapterBase.js +854 -408
  15. package/changelogs/changelog.md +16 -0
  16. package/entities/.generic/action.json +110 -5
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +6 -0
  19. package/metadata.json +49 -0
  20. package/package.json +27 -22
  21. package/pronghorn.json +691 -88
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +828 -7
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapter-openapi.json +41906 -0
  26. package/report/adapter-openapi.yaml +23138 -0
  27. package/report/adapterInfo.json +10 -0
  28. package/report/updateReport1653233995404.json +120 -0
  29. package/report/updateReport1691508450223.json +120 -0
  30. package/report/updateReport1692202927301.json +120 -0
  31. package/report/updateReport1694465845842.json +120 -0
  32. package/report/updateReport1698421858198.json +120 -0
  33. package/sampleProperties.json +153 -3
  34. package/test/integration/adapterTestBasicGet.js +3 -5
  35. package/test/integration/adapterTestConnectivity.js +91 -42
  36. package/test/integration/adapterTestIntegration.js +155 -106
  37. package/test/unit/adapterBaseTestUnit.js +388 -308
  38. package/test/unit/adapterTestUnit.js +484 -243
  39. package/utils/adapterInfo.js +206 -0
  40. package/utils/addAuth.js +94 -0
  41. package/utils/artifactize.js +1 -1
  42. package/utils/basicGet.js +1 -14
  43. package/utils/checkMigrate.js +1 -1
  44. package/utils/entitiesToDB.js +179 -0
  45. package/utils/findPath.js +1 -1
  46. package/utils/methodDocumentor.js +273 -0
  47. package/utils/modify.js +14 -16
  48. package/utils/packModificationScript.js +1 -1
  49. package/utils/patches2bundledDeps.js +90 -0
  50. package/utils/pre-commit.sh +5 -0
  51. package/utils/removeHooks.js +20 -0
  52. package/utils/taskMover.js +309 -0
  53. package/utils/tbScript.js +129 -53
  54. package/utils/tbUtils.js +125 -25
  55. package/utils/testRunner.js +17 -17
  56. package/utils/troubleshootingAdapter.js +10 -31
  57. package/workflows/README.md +0 -3
package/adapterBase.js CHANGED
@@ -8,24 +8,33 @@
8
8
  /* eslint no-cond-assign: warn */
9
9
  /* eslint global-require: warn */
10
10
  /* eslint no-unused-vars: warn */
11
+ /* eslint prefer-destructuring: warn */
11
12
 
12
13
  /* Required libraries. */
13
- const fs = require('fs-extra');
14
14
  const path = require('path');
15
- const EventEmitterCl = require('events').EventEmitter;
16
15
  const { execSync } = require('child_process');
16
+ const { spawnSync } = require('child_process');
17
+ const EventEmitterCl = require('events').EventEmitter;
18
+ const fs = require('fs-extra');
19
+ const jsonQuery = require('json-query');
20
+
21
+ const sampleProperties = require(`${__dirname}/sampleProperties.json`).properties;
17
22
 
18
23
  /* The schema validator */
19
24
  const AjvCl = require('ajv');
25
+ const { Test } = require('mocha');
20
26
 
21
27
  /* Fetch in the other needed components for the this Adaptor */
22
28
  const PropUtilCl = require('@itentialopensource/adapter-utils').PropertyUtility;
23
29
  const RequestHandlerCl = require('@itentialopensource/adapter-utils').RequestHandler;
24
30
 
31
+ const entitiesToDB = require(path.join(__dirname, 'utils/entitiesToDB'));
25
32
  const troubleshootingAdapter = require(path.join(__dirname, 'utils/troubleshootingAdapter'));
26
33
  const tbUtils = require(path.join(__dirname, 'utils/tbUtils'));
34
+ const taskMover = require(path.join(__dirname, 'utils/taskMover'));
27
35
 
28
36
  let propUtil = null;
37
+ let choosepath = null;
29
38
 
30
39
  /*
31
40
  * INTERNAL FUNCTION: force fail the adapter - generally done to cause restart
@@ -98,7 +107,7 @@ function updateSchema(entityPath, configFile, changes) {
98
107
  /*
99
108
  * INTERNAL FUNCTION: update the mock data file
100
109
  */
101
- function updateMock(mockPath, configFile, changes) {
110
+ function updateMock(mockPath, configFile, changes, replace) {
102
111
  // if the mock file does not exist - create it
103
112
  const mockFile = path.join(mockPath, `/${configFile}`);
104
113
  if (!fs.existsSync(mockFile)) {
@@ -110,7 +119,11 @@ function updateMock(mockPath, configFile, changes) {
110
119
  let mock = require(path.resolve(mockPath, configFile));
111
120
 
112
121
  // merge the changes into the mock file
113
- mock = propUtil.mergeProperties(changes, mock);
122
+ if (replace === true) {
123
+ mock = changes;
124
+ } else {
125
+ mock = propUtil.mergeProperties(changes, mock);
126
+ }
114
127
 
115
128
  fs.writeFileSync(mockFile, JSON.stringify(mock, null, 2));
116
129
  return null;
@@ -153,6 +166,9 @@ class AdapterBase extends EventEmitterCl {
153
166
  // Instantiate the EventEmitter super class
154
167
  super();
155
168
 
169
+ // IAP home directory injected by core when running the adapter within IAP
170
+ [, , , process.env.iap_home] = process.argv;
171
+
156
172
  try {
157
173
  // Capture the adapter id
158
174
  this.id = prongid;
@@ -228,7 +244,7 @@ class AdapterBase extends EventEmitterCl {
228
244
  this.allProps = this.propUtilInst.mergeProperties(properties, defProps);
229
245
 
230
246
  // validate the entity against the schema
231
- const ajvInst = new AjvCl();
247
+ const ajvInst = new AjvCl({ strictSchema: false, allowUnionTypes: true });
232
248
  const validate = ajvInst.compile(propertiesSchema);
233
249
  const result = validate(this.allProps);
234
250
 
@@ -276,129 +292,6 @@ class AdapterBase extends EventEmitterCl {
276
292
  }
277
293
  }
278
294
 
279
- /**
280
- * updateAdapterConfiguration is used to update any of the adapter configuration files. This
281
- * allows customers to make changes to adapter configuration without having to be on the
282
- * file system.
283
- *
284
- * @function updateAdapterConfiguration
285
- * @param {string} configFile - the name of the file being updated (required)
286
- * @param {Object} changes - an object containing all of the changes = formatted like the configuration file (required)
287
- * @param {string} entity - the entity to be changed, if an action, schema or mock data file (optional)
288
- * @param {string} type - the type of entity file to change, (action, schema, mock) (optional)
289
- * @param {string} action - the action to be changed, if an action, schema or mock data file (optional)
290
- * @param {Callback} callback - The results of the call
291
- */
292
- updateAdapterConfiguration(configFile, changes, entity, type, action, callback) {
293
- const meth = 'adapterBase-updateAdapterConfiguration';
294
- const origin = `${this.id}-${meth}`;
295
- log.trace(origin);
296
-
297
- // verify the parameters are valid
298
- if (changes === undefined || changes === null || typeof changes !== 'object'
299
- || Object.keys(changes).length === 0) {
300
- const result = {
301
- response: 'No configuration updates to make'
302
- };
303
- log.info(result.response);
304
- return callback(result, null);
305
- }
306
- if (configFile === undefined || configFile === null || configFile === '') {
307
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['configFile'], null, null, null);
308
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
309
- return callback(null, errorObj);
310
- }
311
-
312
- // take action based on configFile being changed
313
- if (configFile === 'package.json') {
314
- const pres = updatePackage(changes);
315
- if (pres) {
316
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${pres}`, [], null, null, null);
317
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
318
- return callback(null, errorObj);
319
- }
320
- const result = {
321
- response: 'Package updates completed - restarting adapter'
322
- };
323
- log.info(result.response);
324
- forceFail(true);
325
- return callback(result, null);
326
- }
327
- if (entity === undefined || entity === null || entity === '') {
328
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Unsupported Configuration Change or Missing Entity', [], null, null, null);
329
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
330
- return callback(null, errorObj);
331
- }
332
-
333
- // this means we are changing an entity file so type is required
334
- if (type === undefined || type === null || type === '') {
335
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['type'], null, null, null);
336
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
337
- return callback(null, errorObj);
338
- }
339
-
340
- // if the entity does not exist - error
341
- const epath = `${__dirname}/entities/${entity}`;
342
- if (!fs.existsSync(epath)) {
343
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: Invalid Entity - ${entity}`, [], null, null, null);
344
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
345
- return callback(null, errorObj);
346
- }
347
-
348
- // take action based on type of file being changed
349
- if (type === 'action') {
350
- // BACKUP???
351
- const ares = updateAction(epath, action, changes);
352
- if (ares) {
353
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${ares}`, [], null, null, null);
354
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
355
- return callback(null, errorObj);
356
- }
357
- // AJV CHECK???
358
- // RESTORE IF NEEDED???
359
- const result = {
360
- response: `Action updates completed to entity: ${entity} - ${action}`
361
- };
362
- log.info(result.response);
363
- return callback(result, null);
364
- }
365
- if (type === 'schema') {
366
- const sres = updateSchema(epath, configFile, changes);
367
- if (sres) {
368
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${sres}`, [], null, null, null);
369
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
370
- return callback(null, errorObj);
371
- }
372
- const result = {
373
- response: `Schema updates completed to entity: ${entity} - ${configFile}`
374
- };
375
- log.info(result.response);
376
- return callback(result, null);
377
- }
378
- if (type === 'mock') {
379
- // if the mock directory does not exist - error
380
- const mpath = `${__dirname}/entities/${entity}/mockdatafiles`;
381
- if (!fs.existsSync(mpath)) {
382
- fs.mkdirSync(mpath);
383
- }
384
-
385
- const mres = updateMock(mpath, configFile, changes);
386
- if (mres) {
387
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${mres}`, [], null, null, null);
388
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
389
- return callback(null, errorObj);
390
- }
391
- const result = {
392
- response: `Mock data updates completed to entity: ${entity} - ${configFile}`
393
- };
394
- log.info(result.response);
395
- return callback(result, null);
396
- }
397
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: Unsupported Type - ${type}`, [], null, null, null);
398
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
399
- return callback(null, errorObj);
400
- }
401
-
402
295
  /**
403
296
  * @summary Connect function is used during Pronghorn startup to provide instantiation feedback.
404
297
  *
@@ -467,7 +360,7 @@ class AdapterBase extends EventEmitterCl {
467
360
  }
468
361
 
469
362
  // call to the healthcheck in connector
470
- return this.requestHandlerInst.identifyHealthcheck(reqObj, (res, error) => {
363
+ return this.requestHandlerInst.identifyHealthcheck(myRequest, (res, error) => {
471
364
  // unhealthy
472
365
  if (error) {
473
366
  // if we were healthy, toggle health
@@ -475,9 +368,15 @@ class AdapterBase extends EventEmitterCl {
475
368
  this.emit('OFFLINE', { id: this.id });
476
369
  this.emit('DEGRADED', { id: this.id });
477
370
  this.healthy = false;
478
- log.error(`${origin}: HEALTH CHECK - Error ${error}`);
479
- } else {
371
+ if (typeof error === 'object') {
372
+ log.error(`${origin}: HEALTH CHECK - Error ${JSON.stringify(error)}`);
373
+ } else {
374
+ log.error(`${origin}: HEALTH CHECK - Error ${error}`);
375
+ }
376
+ } else if (typeof error === 'object') {
480
377
  // still log but set the level to trace
378
+ log.trace(`${origin}: HEALTH CHECK - Still Errors ${JSON.stringify(error)}`);
379
+ } else {
481
380
  log.trace(`${origin}: HEALTH CHECK - Still Errors ${error}`);
482
381
  }
483
382
 
@@ -499,68 +398,6 @@ class AdapterBase extends EventEmitterCl {
499
398
  });
500
399
  }
501
400
 
502
- /**
503
- * @summary Suspends the adapter
504
- * @param {Callback} callback - The adapater suspension status
505
- * @function suspend
506
- */
507
- suspend(mode, callback) {
508
- const origin = `${this.id}-adapterBase-suspend`;
509
- if (this.suspended) {
510
- throw new Error(`${origin}: Adapter is already suspended`);
511
- }
512
- try {
513
- this.suspended = true;
514
- this.suspendMode = mode;
515
- if (this.suspendMode === 'pause') {
516
- const props = JSON.parse(JSON.stringify(this.initProps));
517
- // To suspend adapter, enable throttling and set concurrent max to 0
518
- props.throttle.throttle_enabled = true;
519
- props.throttle.concurrent_max = 0;
520
- this.refreshProperties(props);
521
- }
522
- return callback({ suspended: true });
523
- } catch (error) {
524
- return callback(null, error);
525
- }
526
- }
527
-
528
- /**
529
- * @summary Unsuspends the adapter
530
- * @param {Callback} callback - The adapater suspension status
531
- *
532
- * @function unsuspend
533
- */
534
- unsuspend(callback) {
535
- const origin = `${this.id}-adapterBase-unsuspend`;
536
- if (!this.suspended) {
537
- throw new Error(`${origin}: Adapter is not suspended`);
538
- }
539
- if (this.suspendMode === 'pause') {
540
- const props = JSON.parse(JSON.stringify(this.initProps));
541
- // To unsuspend adapter, keep throttling enabled and begin processing queued requests in order
542
- props.throttle.throttle_enabled = true;
543
- props.throttle.concurrent_max = 1;
544
- this.refreshProperties(props);
545
- setTimeout(() => {
546
- this.getQueue((q, error) => {
547
- // console.log("Items in queue: " + String(q.length))
548
- if (q.length === 0) {
549
- // if queue is empty, return to initial properties state
550
- this.refreshProperties(this.initProps);
551
- this.suspended = false;
552
- return callback({ suspended: false });
553
- }
554
- // recursive call to check queue again every second
555
- return this.unsuspend(callback);
556
- });
557
- }, 1000);
558
- } else {
559
- this.suspended = false;
560
- callback({ suspend: false });
561
- }
562
- }
563
-
564
401
  /**
565
402
  * getAllFunctions is used to get all of the exposed function in the adapter
566
403
  *
@@ -586,24 +423,22 @@ class AdapterBase extends EventEmitterCl {
586
423
  }
587
424
 
588
425
  /**
589
- * getWorkflowFunctions is used to get all of the workflow function in the adapter
426
+ * iapGetAdapterWorkflowFunctions is used to get all of the workflow function in the adapter
590
427
  * @param {array} ignoreThese - additional methods to ignore (optional)
591
428
  *
592
- * @function getWorkflowFunctions
429
+ * @function iapGetAdapterWorkflowFunctions
593
430
  */
594
- getWorkflowFunctions(ignoreThese) {
431
+ iapGetAdapterWorkflowFunctions(ignoreThese) {
595
432
  const myfunctions = this.getAllFunctions();
596
433
  const wffunctions = [];
597
434
 
598
435
  // remove the functions that should not be in a Workflow
599
436
  for (let m = 0; m < myfunctions.length; m += 1) {
600
- if (myfunctions[m] === 'addEntityCache') {
437
+ if (myfunctions[m] === 'checkActionFiles') {
601
438
  // got to the second tier (adapterBase)
602
439
  break;
603
440
  }
604
- if (myfunctions[m] !== 'hasEntity' && myfunctions[m] !== 'verifyCapability' && myfunctions[m] !== 'updateEntityCache'
605
- && myfunctions[m] !== 'healthCheck' && myfunctions[m] !== 'getWorkflowFunctions'
606
- && !(myfunctions[m].endsWith('Emit') || myfunctions[m].match(/Emit__v[0-9]+/))) {
441
+ if (!(myfunctions[m].endsWith('Emit') || myfunctions[m].match(/Emit__v[0-9]+/))) {
607
442
  let found = false;
608
443
  if (ignoreThese && Array.isArray(ignoreThese)) {
609
444
  for (let i = 0; i < ignoreThese.length; i += 1) {
@@ -639,59 +474,329 @@ class AdapterBase extends EventEmitterCl {
639
474
  }
640
475
 
641
476
  /**
642
- * See if the API path provided is found in this adapter
477
+ * checkProperties is used to validate the adapter properties.
643
478
  *
644
- * @function findPath
645
- * @param {string} apiPath - the api path to check on
646
- * @param {Callback} callback - The results of the call
479
+ * @function checkProperties
480
+ * @param {Object} properties - an object containing all of the properties
647
481
  */
648
- findPath(apiPath, callback) {
649
- const result = {
650
- apiPath
651
- };
652
-
653
- // verify the path was provided
654
- if (!apiPath) {
655
- log.error('NO API PATH PROVIDED!');
656
- result.found = false;
657
- result.message = 'NO PATH PROVIDED!';
658
- return callback(null, result);
659
- }
482
+ checkProperties(properties) {
483
+ const origin = `${this.myid}-adapterBase-checkProperties`;
484
+ log.trace(origin);
660
485
 
661
- // make sure the entities directory exists
662
- const entitydir = path.join(__dirname, 'entities');
663
- if (!fs.statSync(entitydir).isDirectory()) {
664
- log.error('Could not find the entities directory');
665
- result.found = false;
666
- result.message = 'Could not find the entities directory';
667
- return callback(null, result);
486
+ // validate the properties for the adapter
487
+ try {
488
+ return this.requestHandlerInst.checkProperties(properties);
489
+ } catch (e) {
490
+ return { exception: 'Exception increase log level' };
668
491
  }
492
+ }
669
493
 
670
- const entities = fs.readdirSync(entitydir);
671
- const fitems = [];
494
+ /**
495
+ * @summary Takes in property text and an encoding/encryption and returns the resulting
496
+ * encoded/encrypted string
497
+ *
498
+ * @function encryptProperty
499
+ * @param {String} property - the property to encrypt
500
+ * @param {String} technique - the technique to use to encrypt
501
+ *
502
+ * @param {Callback} callback - a callback function to return the result
503
+ * Encrypted String or the Error
504
+ */
505
+ encryptProperty(property, technique, callback) {
506
+ const origin = `${this.id}-adapterBase-encryptProperty`;
507
+ log.trace(origin);
672
508
 
673
- // need to go through each entity in the entities directory
674
- for (let e = 0; e < entities.length; e += 1) {
675
- // make sure the entity is a directory - do not care about extra files
676
- // only entities (dir)
677
- if (fs.statSync(`${entitydir}/${entities[e]}`).isDirectory()) {
678
- // see if the action file exists in the entity
679
- if (fs.existsSync(`${entitydir}/${entities[e]}/action.json`)) {
680
- // Read the entity actions from the file system
681
- const actions = require(`${entitydir}/${entities[e]}/action.json`);
509
+ // Make the call -
510
+ // encryptProperty(property, technique, callback)
511
+ return this.requestHandlerInst.encryptProperty(property, technique, callback);
512
+ }
682
513
 
683
- // go through all of the actions set the appropriate info in the newActions
684
- for (let a = 0; a < actions.actions.length; a += 1) {
685
- if (actions.actions[a].entitypath.indexOf(apiPath) >= 0) {
686
- log.info(` Found - entity: ${entities[e]} action: ${actions.actions[a].name}`);
687
- log.info(` method: ${actions.actions[a].method} path: ${actions.actions[a].entitypath}`);
688
- const fitem = {
689
- entity: entities[e],
690
- action: actions.actions[a].name,
691
- method: actions.actions[a].method,
692
- path: actions.actions[a].entitypath
693
- };
694
- fitems.push(fitem);
514
+ /**
515
+ * iapUpdateAdapterConfiguration is used to update any of the adapter configuration files. This
516
+ * allows customers to make changes to adapter configuration without having to be on the
517
+ * file system.
518
+ *
519
+ * @function iapUpdateAdapterConfiguration
520
+ * @param {string} configFile - the name of the file being updated (required)
521
+ * @param {Object} changes - an object containing all of the changes = formatted like the configuration file (required)
522
+ * @param {string} entity - the entity to be changed, if an action, schema or mock data file (optional)
523
+ * @param {string} type - the type of entity file to change, (action, schema, mock) (optional)
524
+ * @param {string} action - the action to be changed, if an action, schema or mock data file (optional)
525
+ * @param {boolean} replace - true to replace entire mock data, false to merge/append (optional)
526
+ * @param {Callback} callback - The results of the call
527
+ */
528
+ iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, replace, callback) {
529
+ const meth = 'adapterBase-iapUpdateAdapterConfiguration';
530
+ const origin = `${this.id}-${meth}`;
531
+ log.trace(origin);
532
+
533
+ // verify the parameters are valid
534
+ if (changes === undefined || changes === null || typeof changes !== 'object'
535
+ || Object.keys(changes).length === 0) {
536
+ const result = {
537
+ response: 'No configuration updates to make'
538
+ };
539
+ log.info(result.response);
540
+ return callback(result, null);
541
+ }
542
+ if (configFile === undefined || configFile === null || configFile === '') {
543
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['configFile'], null, null, null);
544
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
545
+ return callback(null, errorObj);
546
+ }
547
+
548
+ // take action based on configFile being changed
549
+ if (configFile === 'package.json') {
550
+ const pres = updatePackage(changes);
551
+ if (pres) {
552
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${pres}`, [], null, null, null);
553
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
554
+ return callback(null, errorObj);
555
+ }
556
+ const result = {
557
+ response: 'Package updates completed - restarting adapter'
558
+ };
559
+ log.info(result.response);
560
+ forceFail(true);
561
+ return callback(result, null);
562
+ }
563
+ if (entity === undefined || entity === null || entity === '') {
564
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Unsupported Configuration Change or Missing Entity', [], null, null, null);
565
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
566
+ return callback(null, errorObj);
567
+ }
568
+
569
+ // this means we are changing an entity file so type is required
570
+ if (type === undefined || type === null || type === '') {
571
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['type'], null, null, null);
572
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
573
+ return callback(null, errorObj);
574
+ }
575
+
576
+ // if the entity does not exist - error
577
+ const epath = `${__dirname}/entities/${entity}`;
578
+ if (!fs.existsSync(epath)) {
579
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: Invalid Entity - ${entity}`, [], null, null, null);
580
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
581
+ return callback(null, errorObj);
582
+ }
583
+
584
+ // take action based on type of file being changed
585
+ if (type === 'action') {
586
+ // BACKUP???
587
+ const ares = updateAction(epath, action, changes);
588
+ if (ares) {
589
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${ares}`, [], null, null, null);
590
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
591
+ return callback(null, errorObj);
592
+ }
593
+ // AJV CHECK???
594
+ // RESTORE IF NEEDED???
595
+ const result = {
596
+ response: `Action updates completed to entity: ${entity} - ${action}`
597
+ };
598
+ log.info(result.response);
599
+ return callback(result, null);
600
+ }
601
+ if (type === 'schema') {
602
+ const sres = updateSchema(epath, configFile, changes);
603
+ if (sres) {
604
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${sres}`, [], null, null, null);
605
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
606
+ return callback(null, errorObj);
607
+ }
608
+ const result = {
609
+ response: `Schema updates completed to entity: ${entity} - ${configFile}`
610
+ };
611
+ log.info(result.response);
612
+ return callback(result, null);
613
+ }
614
+ if (type === 'mock') {
615
+ // if the mock directory does not exist - error
616
+ const mpath = `${__dirname}/entities/${entity}/mockdatafiles`;
617
+ if (!fs.existsSync(mpath)) {
618
+ fs.mkdirSync(mpath);
619
+ }
620
+ // this means we are changing a mock data file so replace is required
621
+ if (replace === undefined || replace === null || replace === '') {
622
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Missing Data', ['replace'], null, null, null);
623
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
624
+ return callback(null, errorObj);
625
+ }
626
+ const mres = updateMock(mpath, configFile, changes, replace);
627
+
628
+ if (mres) {
629
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${mres}`, [], null, null, null);
630
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
631
+ return callback(null, errorObj);
632
+ }
633
+ const result = {
634
+ response: `Mock data updates completed to entity: ${entity} - ${configFile}`
635
+ };
636
+ log.info(result.response);
637
+ return callback(result, null);
638
+ }
639
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: Unsupported Type - ${type}`, [], null, null, null);
640
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
641
+ return callback(null, errorObj);
642
+ }
643
+
644
+ /**
645
+ * @summary Suspends the adapter
646
+ * @param {Callback} callback - The adapater suspension status
647
+ * @function iapSuspendAdapter
648
+ */
649
+ iapSuspendAdapter(mode, callback) {
650
+ const origin = `${this.id}-adapterBase-iapSuspendAdapter`;
651
+ if (this.suspended) {
652
+ throw new Error(`${origin}: Adapter is already suspended`);
653
+ }
654
+ try {
655
+ this.suspended = true;
656
+ this.suspendMode = mode;
657
+ if (this.suspendMode === 'pause') {
658
+ const props = JSON.parse(JSON.stringify(this.initProps));
659
+ // To suspend adapter, enable throttling and set concurrent max to 0
660
+ props.throttle.throttle_enabled = true;
661
+ props.throttle.concurrent_max = 0;
662
+ this.refreshProperties(props);
663
+ }
664
+ return callback({ suspended: true });
665
+ } catch (error) {
666
+ return callback(null, error);
667
+ }
668
+ }
669
+
670
+ /**
671
+ * @summary Unsuspends the adapter
672
+ * @param {Callback} callback - The adapater suspension status
673
+ *
674
+ * @function iapUnsuspendAdapter
675
+ */
676
+ iapUnsuspendAdapter(callback) {
677
+ const origin = `${this.id}-adapterBase-iapUnsuspendAdapter`;
678
+ if (!this.suspended) {
679
+ throw new Error(`${origin}: Adapter is not suspended`);
680
+ }
681
+ if (this.suspendMode === 'pause') {
682
+ const props = JSON.parse(JSON.stringify(this.initProps));
683
+ // To unsuspend adapter, keep throttling enabled and begin processing queued requests in order
684
+ props.throttle.throttle_enabled = true;
685
+ props.throttle.concurrent_max = 1;
686
+ this.refreshProperties(props);
687
+ setTimeout(() => {
688
+ this.getQueue((q, error) => {
689
+ // console.log("Items in queue: " + String(q.length))
690
+ if (q.length === 0) {
691
+ // if queue is empty, return to initial properties state
692
+ this.refreshProperties(this.initProps);
693
+ this.suspended = false;
694
+ return callback({ suspended: false });
695
+ }
696
+ // recursive call to check queue again every second
697
+ return this.iapUnsuspendAdapter(callback);
698
+ });
699
+ }, 1000);
700
+ } else {
701
+ this.suspended = false;
702
+ callback({ suspend: false });
703
+ }
704
+ }
705
+
706
+ /**
707
+ * iapGetAdapterQueue is used to get information for all of the requests currently in the queue.
708
+ *
709
+ * @function iapGetAdapterQueue
710
+ * @param {Callback} callback - a callback function to return the result (Queue) or the error
711
+ */
712
+ iapGetAdapterQueue(callback) {
713
+ const origin = `${this.id}-adapterBase-iapGetAdapterQueue`;
714
+ log.trace(origin);
715
+
716
+ return this.requestHandlerInst.getQueue(callback);
717
+ }
718
+
719
+ /* ********************************************** */
720
+ /* */
721
+ /* EXPOSES ADAPTER SCRIPTS */
722
+ /* */
723
+ /* ********************************************** */
724
+ /**
725
+ * See if the API path provided is found in this adapter
726
+ *
727
+ * @function iapFindAdapterPath
728
+ * @param {string} apiPath - the api path to check on
729
+ * @param {Callback} callback - The results of the call
730
+ */
731
+ iapFindAdapterPath(apiPath, callback) {
732
+ const result = {
733
+ apiPath
734
+ };
735
+
736
+ // verify the path was provided
737
+ if (!apiPath) {
738
+ log.error('NO API PATH PROVIDED!');
739
+ result.found = false;
740
+ result.message = 'NO PATH PROVIDED!';
741
+ return callback(null, result);
742
+ }
743
+
744
+ if (typeof this.allProps.choosepath === 'string') {
745
+ choosepath = this.allProps.choosepath;
746
+ }
747
+
748
+ // make sure the entities directory exists
749
+ const entitydir = path.join(__dirname, 'entities');
750
+ if (!fs.statSync(entitydir).isDirectory()) {
751
+ log.error('Could not find the entities directory');
752
+ result.found = false;
753
+ result.message = 'Could not find the entities directory';
754
+ return callback(null, result);
755
+ }
756
+
757
+ const entities = fs.readdirSync(entitydir);
758
+ const fitems = [];
759
+
760
+ // need to go through each entity in the entities directory
761
+ for (let e = 0; e < entities.length; e += 1) {
762
+ // make sure the entity is a directory - do not care about extra files
763
+ // only entities (dir)
764
+ if (fs.statSync(`${entitydir}/${entities[e]}`).isDirectory()) {
765
+ // see if the action file exists in the entity
766
+ if (fs.existsSync(`${entitydir}/${entities[e]}/action.json`)) {
767
+ // Read the entity actions from the file system
768
+ const actions = require(`${entitydir}/${entities[e]}/action.json`);
769
+
770
+ // go through all of the actions set the appropriate info in the newActions
771
+ for (let a = 0; a < actions.actions.length; a += 1) {
772
+ if (actions.actions[a].entitypath && typeof actions.actions[a].entitypath === 'object') {
773
+ const entityKeys = Object.keys(actions.actions[a].entitypath);
774
+ if (entityKeys.length > 0) {
775
+ for (let entityKey = 0; entityKey < entityKeys.length; entityKey += 1) {
776
+ if (choosepath && entityKeys[entityKey] === choosepath && actions.actions[a].entitypath[entityKeys[entityKey]].indexOf(apiPath) >= 0) {
777
+ log.info(` Found - entity: ${entities[e]} action: ${actions.actions[a].name}`);
778
+ log.info(` method: ${actions.actions[a].method} path: ${actions.actions[a].entitypath[entityKeys[entityKey]]}`);
779
+ const fitem = {
780
+ entity: entities[e],
781
+ action: actions.actions[a].name,
782
+ method: actions.actions[a].method,
783
+ path: actions.actions[a].entitypath[entityKeys[entityKey]]
784
+ };
785
+ fitems.push(fitem);
786
+ break;
787
+ }
788
+ }
789
+ }
790
+ } else if (actions.actions[a].entitypath.indexOf(apiPath) >= 0) {
791
+ log.info(` Found - entity: ${entities[e]} action: ${actions.actions[a].name}`);
792
+ log.info(` method: ${actions.actions[a].method} path: ${actions.actions[a].entitypath}`);
793
+ const fitem = {
794
+ entity: entities[e],
795
+ action: actions.actions[a].name,
796
+ method: actions.actions[a].method,
797
+ path: actions.actions[a].entitypath
798
+ };
799
+ fitems.push(fitem);
695
800
  }
696
801
  }
697
802
  } else {
@@ -721,67 +826,16 @@ class AdapterBase extends EventEmitterCl {
721
826
  return callback(result, null);
722
827
  }
723
828
 
724
- /**
725
- * checkProperties is used to validate the adapter properties.
726
- *
727
- * @function checkProperties
728
- * @param {Object} properties - an object containing all of the properties
729
- */
730
- checkProperties(properties) {
731
- const origin = `${this.myid}-adapterBase-checkProperties`;
732
- log.trace(origin);
733
-
734
- // validate the properties for the adapter
735
- try {
736
- return this.requestHandlerInst.checkProperties(properties);
737
- } catch (e) {
738
- return { exception: 'Exception increase log level' };
739
- }
740
- }
741
-
742
- /**
743
- * getQueue is used to get information for all of the requests currently in the queue.
744
- *
745
- * @function getQueue
746
- * @param {Callback} callback - a callback function to return the result (Queue) or the error
747
- */
748
- getQueue(callback) {
749
- const origin = `${this.id}-adapterBase-getQueue`;
750
- log.trace(origin);
751
-
752
- return this.requestHandlerInst.getQueue(callback);
753
- }
754
-
755
- /**
756
- * @summary Takes in property text and an encoding/encryption and returns the resulting
757
- * encoded/encrypted string
758
- *
759
- * @function encryptProperty
760
- * @param {String} property - the property to encrypt
761
- * @param {String} technique - the technique to use to encrypt
762
- *
763
- * @param {Callback} callback - a callback function to return the result
764
- * Encrypted String or the Error
765
- */
766
- encryptProperty(property, technique, callback) {
767
- const origin = `${this.id}-adapterBase-encryptProperty`;
768
- log.trace(origin);
769
-
770
- // Make the call -
771
- // encryptProperty(property, technique, callback)
772
- return this.requestHandlerInst.encryptProperty(property, technique, callback);
773
- }
774
-
775
829
  /**
776
830
  * @summary runs troubleshoot scripts for adapter
777
831
  *
778
- * @function troubleshoot
832
+ * @function iapTroubleshootAdapter
779
833
  * @param {Object} props - the connection, healthcheck and authentication properties
780
834
  * @param {boolean} persistFlag - whether the adapter properties should be updated
781
835
  * @param {Adapter} adapter - adapter instance to troubleshoot
782
836
  * @param {Callback} callback - callback function to return troubleshoot results
783
837
  */
784
- async troubleshoot(props, persistFlag, adapter, callback) {
838
+ async iapTroubleshootAdapter(props, persistFlag, adapter, callback) {
785
839
  try {
786
840
  const result = await troubleshootingAdapter.troubleshoot(props, false, persistFlag, adapter);
787
841
  if (result.healthCheck && result.connectivity.failCount === 0 && result.basicGet.failCount === 0) {
@@ -796,17 +850,17 @@ class AdapterBase extends EventEmitterCl {
796
850
  /**
797
851
  * @summary runs healthcheck script for adapter
798
852
  *
799
- * @function runHealthcheck
853
+ * @function iapRunAdapterHealthcheck
800
854
  * @param {Adapter} adapter - adapter instance to troubleshoot
801
855
  * @param {Callback} callback - callback function to return healthcheck status
802
856
  */
803
- async runHealthcheck(adapter, callback) {
857
+ async iapRunAdapterHealthcheck(adapter, callback) {
804
858
  try {
805
859
  const result = await tbUtils.healthCheck(adapter);
806
860
  if (result) {
807
861
  return callback(result);
808
862
  }
809
- return callback(null, result);
863
+ return callback(null, 'Healthcheck failed');
810
864
  } catch (error) {
811
865
  return callback(null, error);
812
866
  }
@@ -815,14 +869,13 @@ class AdapterBase extends EventEmitterCl {
815
869
  /**
816
870
  * @summary runs connectivity check script for adapter
817
871
  *
818
- * @function runConnectivity
872
+ * @function iapRunAdapterConnectivity
819
873
  * @param {Adapter} adapter - adapter instance to troubleshoot
820
874
  * @param {Callback} callback - callback function to return connectivity status
821
875
  */
822
- async runConnectivity(callback) {
876
+ async iapRunAdapterConnectivity(callback) {
823
877
  try {
824
- const { serviceItem } = await troubleshootingAdapter.getAdapterConfig();
825
- const { host } = serviceItem.properties.properties;
878
+ const { host } = this.allProps;
826
879
  const result = tbUtils.runConnectivity(host, false);
827
880
  if (result.failCount > 0) {
828
881
  return callback(null, result);
@@ -836,10 +889,10 @@ class AdapterBase extends EventEmitterCl {
836
889
  /**
837
890
  * @summary runs basicGet script for adapter
838
891
  *
839
- * @function runBasicGet
892
+ * @function iapRunAdapterBasicGet
840
893
  * @param {Callback} callback - callback function to return basicGet result
841
894
  */
842
- runBasicGet(callback) {
895
+ iapRunAdapterBasicGet(callback) {
843
896
  try {
844
897
  const result = tbUtils.runBasicGet(false);
845
898
  if (result.failCount > 0) {
@@ -852,153 +905,546 @@ class AdapterBase extends EventEmitterCl {
852
905
  }
853
906
 
854
907
  /**
855
- * @summary take the entities and add them to the cache
908
+ * @summary moves entities to mongo database
856
909
  *
857
- * @function addEntityCache
858
- * @param {String} entityType - the type of the entities
859
- * @param {Array} data - the list of entities
860
- * @param {String} key - unique key for the entities
910
+ * @function iapMoveAdapterEntitiesToDB
861
911
  *
862
- * @param {Callback} callback - An array of whether the adapter can has the
863
- * desired capability or an error
912
+ * @return {Callback} - containing the response from the mongo transaction
864
913
  */
865
- addEntityCache(entityType, entities, key, callback) {
866
- const meth = 'adapterBase-addEntityCache';
914
+ async iapMoveAdapterEntitiesToDB(callback) {
915
+ const meth = 'adapterBase-iapMoveAdapterEntitiesToDB';
867
916
  const origin = `${this.id}-${meth}`;
868
917
  log.trace(origin);
869
918
 
870
- // list containing the items to add to the cache
871
- const entityIds = [];
919
+ try {
920
+ const result = await entitiesToDB.moveEntitiesToDB(__dirname, { pronghornProps: this.allProps, id: this.id });
921
+ return callback(result, null);
922
+ } catch (err) {
923
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, err);
924
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
925
+ return callback(null, err.message);
926
+ }
927
+ }
872
928
 
873
- if (entities && Object.hasOwnProperty.call(entities, 'response')
874
- && Array.isArray(entities.response)) {
875
- for (let e = 0; e < entities.response.length; e += 1) {
876
- entityIds.push(entities.response[e][key]);
877
- }
929
+ /**
930
+ * @function iapDeactivateTasks
931
+ *
932
+ * @param {Array} tasks - List of tasks to deactivate
933
+ * @param {Callback} callback
934
+ */
935
+ iapDeactivateTasks(tasks, callback) {
936
+ const meth = 'adapterBase-iapDeactivateTasks';
937
+ const origin = `${this.id}-${meth}`;
938
+ log.trace(origin);
939
+ let data;
940
+ try {
941
+ data = taskMover.deactivateTasks(__dirname, tasks);
942
+ } catch (ex) {
943
+ taskMover.rollbackChanges(__dirname);
944
+ taskMover.deleteBackups(__dirname);
945
+ return callback(null, ex);
878
946
  }
947
+ taskMover.deleteBackups(__dirname);
948
+ return callback(data, null);
949
+ }
879
950
 
880
- // add the entities to the cache
881
- return this.requestHandlerInst.addEntityCache(entityType, entityIds, (loaded, error) => {
882
- if (error) {
883
- return callback(null, error);
884
- }
885
- if (!loaded) {
886
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Entity Cache Not Loading', [entityType], null, null, null);
887
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
888
- return callback(null, errorObj);
889
- }
951
+ /**
952
+ * @function iapActivateTasks
953
+ *
954
+ * @param {Array} tasks - List of tasks to deactivate
955
+ * @param {Callback} callback
956
+ */
957
+ iapActivateTasks(tasks, callback) {
958
+ const meth = 'adapterBase-iapActivateTasks';
959
+ const origin = `${this.id}-${meth}`;
960
+ log.trace(origin);
961
+ let data;
962
+ try {
963
+ data = taskMover.activateTasks(__dirname, tasks);
964
+ } catch (ex) {
965
+ taskMover.rollbackChanges(__dirname);
966
+ taskMover.deleteBackups(__dirname);
967
+ return callback(null, ex);
968
+ }
969
+ taskMover.deleteBackups(__dirname);
970
+ return callback(data, null);
971
+ }
890
972
 
891
- return callback(loaded);
892
- });
973
+ /* ********************************************** */
974
+ /* */
975
+ /* EXPOSES CACHE CALLS */
976
+ /* */
977
+ /* ********************************************** */
978
+ /**
979
+ * @summary Populate the cache for the given entities
980
+ *
981
+ * @function iapPopulateEntityCache
982
+ * @param {String/Array of Strings} entityType - the entity type(s) to populate
983
+ * @param {Callback} callback - whether the cache was updated or not for each entity type
984
+ * @returns return of the callback
985
+ */
986
+ iapPopulateEntityCache(entityTypes, callback) {
987
+ const origin = `${this.myid}-adapterBase-iapPopulateEntityCache`;
988
+ log.trace(origin);
989
+
990
+ return this.requestHandlerInst.populateEntityCache(entityTypes, callback);
991
+ }
992
+
993
+ /**
994
+ * @summary Retrieves data from cache for specified entity type
995
+ *
996
+ * @function iapRetrieveEntitiesCache
997
+ * @param {String} entityType - entity of which to retrieve
998
+ * @param {Object} options - settings of which data to return and how to return it
999
+ * @param {Callback} callback - the data if it was retrieved
1000
+ */
1001
+ iapRetrieveEntitiesCache(entityType, options, callback) {
1002
+ const origin = `${this.myid}-adapterBase-iapRetrieveEntitiesCache`;
1003
+ log.trace(origin);
1004
+
1005
+ return this.requestHandlerInst.retrieveEntitiesCache(entityType, options, callback);
893
1006
  }
894
1007
 
1008
+ /* ********************************************** */
1009
+ /* */
1010
+ /* EXPOSES BROKER CALLS */
1011
+ /* */
1012
+ /* ********************************************** */
895
1013
  /**
896
- * @summary sees if the entity is in the entity list or not
1014
+ * @summary Determines if this adapter supports any in a list of entities
897
1015
  *
898
- * @function entityInList
899
- * @param {String/Array} entityId - the specific entity we are looking for
900
- * @param {Array} data - the list of entities
1016
+ * @function hasEntities
1017
+ * @param {String} entityType - the entity type to check for
1018
+ * @param {Array} entityList - the list of entities we are looking for
901
1019
  *
902
- * @param {Callback} callback - An array of whether the adapter can has the
903
- * desired capability or an error
1020
+ * @param {Callback} callback - A map where the entity is the key and the
1021
+ * value is true or false
904
1022
  */
905
- entityInList(entityId, data) {
906
- const origin = `${this.id}-adapterBase-entityInList`;
1023
+ hasEntities(entityType, entityList, callback) {
1024
+ const origin = `${this.id}-adapterBase-hasEntities`;
907
1025
  log.trace(origin);
908
1026
 
909
- // need to check on the entities that were passed in
910
- if (Array.isArray(entityId)) {
911
- const resEntity = [];
1027
+ return this.requestHandlerInst.hasEntities(entityType, entityList, callback);
1028
+ }
912
1029
 
913
- for (let e = 0; e < entityId.length; e += 1) {
914
- if (data.includes(entityId[e])) {
915
- resEntity.push(true);
916
- } else {
917
- resEntity.push(false);
918
- }
1030
+ /**
1031
+ * @summary Determines if this adapter supports any in a list of entities
1032
+ *
1033
+ * @function hasEntitiesAuth
1034
+ * @param {String} entityType - the entity type to check for
1035
+ * @param {Array} entityList - the list of entities we are looking for
1036
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1037
+ *
1038
+ * @param {Callback} callback - A map where the entity is the key and the
1039
+ * value is true or false
1040
+ */
1041
+ hasEntitiesAuth(entityType, entityList, callOptions, callback) {
1042
+ const origin = `${this.id}-adapterBase-hasEntitiesAuth`;
1043
+ log.trace(origin);
1044
+
1045
+ return this.requestHandlerInst.hasEntitiesAuth(entityType, entityList, callOptions, callback);
1046
+ }
1047
+
1048
+ /**
1049
+ * @summary Get Appliance that match the deviceName
1050
+ *
1051
+ * @function getDevice
1052
+ * @param {String} deviceName - the deviceName to find (required)
1053
+ *
1054
+ * @param {getCallback} callback - a callback function to return the result
1055
+ * (appliance) or the error
1056
+ */
1057
+ getDevice(deviceName, callback) {
1058
+ const origin = `${this.id}-adapterBase-getDevice`;
1059
+ log.trace(origin);
1060
+
1061
+ return this.requestHandlerInst.getDevice(deviceName, callback);
1062
+ }
1063
+
1064
+ /**
1065
+ * @summary Get Appliance that match the deviceName
1066
+ *
1067
+ * @function getDeviceAuth
1068
+ * @param {String} deviceName - the deviceName to find (required)
1069
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1070
+ *
1071
+ * @param {getCallback} callback - a callback function to return the result
1072
+ * (appliance) or the error
1073
+ */
1074
+ getDeviceAuth(deviceName, callOptions, callback) {
1075
+ const origin = `${this.id}-adapterBase-getDeviceAuth`;
1076
+ log.trace(origin);
1077
+
1078
+ return this.requestHandlerInst.getDeviceAuth(deviceName, callOptions, callback);
1079
+ }
1080
+
1081
+ /**
1082
+ * @summary Get Appliances that match the filter
1083
+ *
1084
+ * @function getDevicesFiltered
1085
+ * @param {Object} options - the data to use to filter the appliances (optional)
1086
+ *
1087
+ * @param {getCallback} callback - a callback function to return the result
1088
+ * (appliances) or the error
1089
+ */
1090
+ getDevicesFiltered(options, callback) {
1091
+ const origin = `${this.id}-adapterBase-getDevicesFiltered`;
1092
+ log.trace(origin);
1093
+
1094
+ return this.requestHandlerInst.getDevicesFiltered(options, callback);
1095
+ }
1096
+
1097
+ /**
1098
+ * @summary Get Appliances that match the filter
1099
+ *
1100
+ * @function getDevicesFilteredAuth
1101
+ * @param {Object} options - the data to use to filter the appliances (optional)
1102
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1103
+ *
1104
+ * @param {getCallback} callback - a callback function to return the result
1105
+ * (appliances) or the error
1106
+ */
1107
+ getDevicesFilteredAuth(options, callOptions, callback) {
1108
+ const origin = `${this.id}-adapterBase-getDevicesFilteredAuth`;
1109
+ log.trace(origin);
1110
+
1111
+ return this.requestHandlerInst.getDevicesFilteredAuth(options, callOptions, callback);
1112
+ }
1113
+
1114
+ /**
1115
+ * @summary Gets the status for the provided appliance
1116
+ *
1117
+ * @function isAlive
1118
+ * @param {String} deviceName - the deviceName of the appliance. (required)
1119
+ *
1120
+ * @param {configCallback} callback - callback function to return the result
1121
+ * (appliance isAlive) or the error
1122
+ */
1123
+ isAlive(deviceName, callback) {
1124
+ const origin = `${this.id}-adapterBase-isAlive`;
1125
+ log.trace(origin);
1126
+
1127
+ return this.requestHandlerInst.isAlive(deviceName, callback);
1128
+ }
1129
+
1130
+ /**
1131
+ * @summary Gets the status for the provided appliance
1132
+ *
1133
+ * @function isAliveAuth
1134
+ * @param {String} deviceName - the deviceName of the appliance. (required)
1135
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1136
+ *
1137
+ * @param {configCallback} callback - callback function to return the result
1138
+ * (appliance isAliveAuth) or the error
1139
+ */
1140
+ isAliveAuth(deviceName, callOptions, callback) {
1141
+ const origin = `${this.id}-adapterBase-isAliveAuth`;
1142
+ log.trace(origin);
1143
+
1144
+ return this.requestHandlerInst.isAliveAuth(deviceName, callOptions, callback);
1145
+ }
1146
+
1147
+ /**
1148
+ * @summary Gets a config for the provided Appliance
1149
+ *
1150
+ * @function getConfig
1151
+ * @param {String} deviceName - the deviceName of the appliance. (required)
1152
+ * @param {String} format - the desired format of the config. (optional)
1153
+ *
1154
+ * @param {configCallback} callback - callback function to return the result
1155
+ * (appliance config) or the error
1156
+ */
1157
+ getConfig(deviceName, format, callback) {
1158
+ const origin = `${this.id}-adapterBase-getConfig`;
1159
+ log.trace(origin);
1160
+
1161
+ return this.requestHandlerInst.getConfig(deviceName, format, callback);
1162
+ }
1163
+
1164
+ /**
1165
+ * @summary Gets a config for the provided Appliance
1166
+ *
1167
+ * @function getConfigAuth
1168
+ * @param {String} deviceName - the deviceName of the appliance. (required)
1169
+ * @param {String} format - the desired format of the config. (optional)
1170
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1171
+ *
1172
+ * @param {configCallback} callback - callback function to return the result
1173
+ * (appliance config) or the error
1174
+ */
1175
+ getConfigAuth(deviceName, format, callOptions, callback) {
1176
+ const origin = `${this.id}-adapterBase-getConfigAuth`;
1177
+ log.trace(origin);
1178
+
1179
+ return this.requestHandlerInst.getConfigAuth(deviceName, format, callOptions, callback);
1180
+ }
1181
+
1182
+ /**
1183
+ * @summary Gets the device count from the system
1184
+ *
1185
+ * @function iapGetDeviceCount
1186
+ *
1187
+ * @param {getCallback} callback - callback function to return the result
1188
+ * (count) or the error
1189
+ */
1190
+ iapGetDeviceCount(callback) {
1191
+ const origin = `${this.id}-adapterBase-iapGetDeviceCount`;
1192
+ log.trace(origin);
1193
+
1194
+ return this.requestHandlerInst.iapGetDeviceCount(callback);
1195
+ }
1196
+
1197
+ /**
1198
+ * @summary Gets the device count from the system
1199
+ *
1200
+ * @function iapGetDeviceCountAuth
1201
+ * @param {Object} callOptions - Additional options used to make request, including auth headers, AWS service, or datatypes
1202
+ *
1203
+ * @param {getCallback} callback - callback function to return the result
1204
+ * (count) or the error
1205
+ */
1206
+ iapGetDeviceCountAuth(callOptions, callback) {
1207
+ const origin = `${this.id}-adapterBase-iapGetDeviceCountAuth`;
1208
+ log.trace(origin);
1209
+
1210
+ return this.requestHandlerInst.iapGetDeviceCountAuth(callOptions, callback);
1211
+ }
1212
+
1213
+ /* ********************************************** */
1214
+ /* */
1215
+ /* EXPOSES GENERIC HANDLER */
1216
+ /* */
1217
+ /* ********************************************** */
1218
+ /**
1219
+ * Makes the requested generic call
1220
+ *
1221
+ * @function iapExpandedGenericAdapterRequest
1222
+ * @param {Object} metadata - metadata for the call (optional).
1223
+ * Can be a stringified Object.
1224
+ * @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (optional)
1225
+ * @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (optional)
1226
+ * @param {Object} pathVars - the parameters to be put within the url path (optional).
1227
+ * Can be a stringified Object.
1228
+ * @param {Object} queryData - the parameters to be put on the url (optional).
1229
+ * Can be a stringified Object.
1230
+ * @param {Object} requestBody - the body to add to the request (optional).
1231
+ * Can be a stringified Object.
1232
+ * @param {Object} addlHeaders - additional headers to be put on the call (optional).
1233
+ * Can be a stringified Object.
1234
+ * @param {getCallback} callback - a callback function to return the result (Generics)
1235
+ * or the error
1236
+ */
1237
+ iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback) {
1238
+ const origin = `${this.myid}-adapterBase-iapExpandedGenericAdapterRequest`;
1239
+ log.trace(origin);
1240
+
1241
+ return this.requestHandlerInst.expandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback);
1242
+ }
1243
+
1244
+ /**
1245
+ * Makes the requested generic call
1246
+ *
1247
+ * @function genericAdapterRequest
1248
+ * @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (required)
1249
+ * @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (required)
1250
+ * @param {Object} queryData - the parameters to be put on the url (optional).
1251
+ * Can be a stringified Object.
1252
+ * @param {Object} requestBody - the body to add to the request (optional).
1253
+ * Can be a stringified Object.
1254
+ * @param {Object} addlHeaders - additional headers to be put on the call (optional).
1255
+ * Can be a stringified Object.
1256
+ * @param {getCallback} callback - a callback function to return the result (Generics)
1257
+ * or the error
1258
+ */
1259
+ genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback) {
1260
+ const origin = `${this.myid}-adapterBase-genericAdapterRequest`;
1261
+ log.trace(origin);
1262
+
1263
+ return this.requestHandlerInst.genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
1264
+ }
1265
+
1266
+ /**
1267
+ * Makes the requested generic call with no base path or version
1268
+ *
1269
+ * @function genericAdapterRequestNoBasePath
1270
+ * @param {String} uriPath - the path of the api call - do not include the host, port, base path or version (required)
1271
+ * @param {String} restMethod - the rest method (GET, POST, PUT, PATCH, DELETE) (required)
1272
+ * @param {Object} queryData - the parameters to be put on the url (optional).
1273
+ * Can be a stringified Object.
1274
+ * @param {Object} requestBody - the body to add to the request (optional).
1275
+ * Can be a stringified Object.
1276
+ * @param {Object} addlHeaders - additional headers to be put on the call (optional).
1277
+ * Can be a stringified Object.
1278
+ * @param {getCallback} callback - a callback function to return the result (Generics)
1279
+ * or the error
1280
+ */
1281
+ genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback) {
1282
+ const origin = `${this.myid}-adapterBase-genericAdapterRequestNoBasePath`;
1283
+ log.trace(origin);
1284
+
1285
+ return this.requestHandlerInst.genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
1286
+ }
1287
+
1288
+ /* ********************************************** */
1289
+ /* */
1290
+ /* EXPOSES INVENTORY CALLS */
1291
+ /* */
1292
+ /* ********************************************** */
1293
+ /**
1294
+ * @summary run the adapter lint script to return the results.
1295
+ *
1296
+ * @function iapRunAdapterLint
1297
+ *
1298
+ * @return {Object} - containing the results of the lint call.
1299
+ */
1300
+ iapRunAdapterLint(callback) {
1301
+ const meth = 'adapterBase-iapRunAdapterLint';
1302
+ const origin = `${this.id}-${meth}`;
1303
+ log.trace(origin);
1304
+ let command = null;
1305
+
1306
+ if (fs.existsSync('package.json')) {
1307
+ const packageData = require('./package.json');
1308
+
1309
+ // check if 'test', 'test:unit', 'test:integration' exists in package.json file
1310
+ if (!packageData.scripts || !packageData.scripts['lint:errors']) {
1311
+ log.error('The required script does not exist in the package.json file');
1312
+ return callback(null, 'The required script does not exist in the package.json file');
919
1313
  }
920
1314
 
921
- return resEntity;
1315
+ // execute 'npm run lint:errors' command
1316
+ command = spawnSync('npm', ['run', 'lint:errors'], { cwd: __dirname, encoding: 'utf-8' });
1317
+
1318
+ // analyze and format the response
1319
+ const result = {
1320
+ status: 'SUCCESS'
1321
+ };
1322
+ if (command.status !== 0) {
1323
+ result.status = 'FAILED';
1324
+ result.output = command.stdout;
1325
+ }
1326
+ return callback(result);
922
1327
  }
923
1328
 
924
- // does the entity list include the specific entity
925
- return [data.includes(entityId)];
1329
+ log.error('Package Not Found');
1330
+ return callback(null, 'Package Not Found');
926
1331
  }
927
1332
 
928
1333
  /**
929
- * @summary prepare results for verify capability so they are true/false
1334
+ * @summary run the adapter test scripts (baseunit and unit) to return the results.
1335
+ * can not run integration as there can be implications with that.
930
1336
  *
931
- * @function capabilityResults
932
- * @param {Array} results - the results from the capability check
1337
+ * @function iapRunAdapterTests
933
1338
  *
934
- * @param {Callback} callback - An array of whether the adapter can has the
935
- * desired capability or an error
1339
+ * @return {Object} - containing the results of the baseunit and unit tests.
936
1340
  */
937
- capabilityResults(results, callback) {
938
- const meth = 'adapterBase-capabilityResults';
1341
+ iapRunAdapterTests(callback) {
1342
+ const meth = 'adapterBase-iapRunAdapterTests';
939
1343
  const origin = `${this.id}-${meth}`;
940
1344
  log.trace(origin);
941
- let locResults = results;
1345
+ let basecommand = null;
1346
+ let command = null;
942
1347
 
943
- if (locResults && locResults[0] === 'needupdate') {
944
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Entity Cache Not Loading', ['unknown'], null, null, null);
945
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
946
- this.repeatCacheCount += 1;
947
- return callback(null, errorObj);
948
- }
1348
+ if (fs.existsSync('package.json')) {
1349
+ const packageData = require('./package.json');
949
1350
 
950
- // if an error occured, return the error
951
- if (locResults && locResults[0] === 'error') {
952
- const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Error Verifying Entity Cache', null, null, null, null);
953
- log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
954
- return callback(null, errorObj);
955
- }
1351
+ // check if 'test', 'test:unit', 'test:integration' exists in package.json file
1352
+ if (!packageData.scripts || !packageData.scripts['test:baseunit'] || !packageData.scripts['test:unit']) {
1353
+ log.error('The required scripts do not exist in the package.json file');
1354
+ return callback(null, 'The required scripts do not exist in the package.json file');
1355
+ }
956
1356
 
957
- // go through the response and change to true/false
958
- if (locResults) {
959
- // if not an array, just convert the return
960
- if (!Array.isArray(locResults)) {
961
- if (locResults === 'found') {
962
- locResults = [true];
963
- } else {
964
- locResults = [false];
965
- }
966
- } else {
967
- const temp = [];
1357
+ // run baseunit test
1358
+ basecommand = spawnSync('npm', ['run', 'test:baseunit'], { cwd: __dirname, encoding: 'utf-8' });
968
1359
 
969
- // go through each element in the array to convert
970
- for (let r = 0; r < locResults.length; r += 1) {
971
- if (locResults[r] === 'found') {
972
- temp.push(true);
973
- } else {
974
- temp.push(false);
975
- }
976
- }
977
- locResults = temp;
1360
+ // analyze and format the response to baseunit
1361
+ const baseresult = {
1362
+ status: 'SUCCESS'
1363
+ };
1364
+ if (basecommand.status !== 0) {
1365
+ baseresult.status = 'FAILED';
1366
+ baseresult.output = basecommand.stdout;
1367
+ }
1368
+
1369
+ // run unit test
1370
+ command = spawnSync('npm', ['run', 'test:unit'], { cwd: __dirname, encoding: 'utf-8' });
1371
+
1372
+ // analyze and format the response to unit
1373
+ const unitresult = {
1374
+ status: 'SUCCESS'
1375
+ };
1376
+ if (command.status !== 0) {
1377
+ unitresult.status = 'FAILED';
1378
+ unitresult.output = command.stdout;
978
1379
  }
1380
+
1381
+ // format the response and return it
1382
+ const result = {
1383
+ base: baseresult,
1384
+ unit: unitresult
1385
+ };
1386
+ return callback(result);
979
1387
  }
980
1388
 
981
- // return the results
982
- return callback(locResults);
1389
+ log.error('Package Not Found');
1390
+ return callback(null, 'Package Not Found');
983
1391
  }
984
1392
 
985
1393
  /**
986
- * @summary Provides a way for the adapter to tell north bound integrations
987
- * all of the capabilities for the current adapter
1394
+ * @summary provide inventory information abbout the adapter
988
1395
  *
989
- * @function getAllCapabilities
1396
+ * @function iapGetAdapterInventory
990
1397
  *
991
- * @return {Array} - containing the entities and the actions available on each entity
1398
+ * @return {Object} - containing the adapter inventory information
992
1399
  */
993
- getAllCapabilities() {
994
- const origin = `${this.id}-adapterBase-getAllCapabilities`;
1400
+ iapGetAdapterInventory(callback) {
1401
+ const meth = 'adapterBase-iapGetAdapterInventory';
1402
+ const origin = `${this.id}-${meth}`;
995
1403
  log.trace(origin);
996
1404
 
997
- // validate the capabilities for the adapter
998
1405
  try {
999
- return this.requestHandlerInst.getAllCapabilities();
1000
- } catch (e) {
1001
- return [];
1406
+ // call to the adapter utils to get inventory
1407
+ return this.requestHandlerInst.getAdapterInventory((res, error) => {
1408
+ const adapterInv = res;
1409
+
1410
+ // get all of the tasks
1411
+ const allTasks = this.getAllFunctions();
1412
+ adapterInv.totalTasks = allTasks.length;
1413
+
1414
+ // get all of the possible workflow tasks
1415
+ const myIgnore = [
1416
+ 'healthCheck',
1417
+ 'iapGetAdapterWorkflowFunctions',
1418
+ 'hasEntities'
1419
+ ];
1420
+ adapterInv.totalWorkflowTasks = this.iapGetAdapterWorkflowFunctions(myIgnore).length;
1421
+
1422
+ // TODO: CACHE
1423
+ // CONFIRM CACHE
1424
+ // GET CACHE ENTITIES
1425
+
1426
+ // get the Device Count
1427
+ return this.iapGetDeviceCount((devres, deverror) => {
1428
+ // if call failed assume not broker integrated
1429
+ if (deverror) {
1430
+ adapterInv.brokerDefined = false;
1431
+ adapterInv.deviceCount = -1;
1432
+ } else {
1433
+ // broker confirmed
1434
+ adapterInv.brokerDefined = true;
1435
+ adapterInv.deviceCount = 0;
1436
+ if (devres && devres.count) {
1437
+ adapterInv.deviceCount = devres.count;
1438
+ }
1439
+ }
1440
+
1441
+ return callback(adapterInv);
1442
+ });
1443
+ });
1444
+ } catch (ex) {
1445
+ const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, ex);
1446
+ log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
1447
+ return callback(null, errorObj);
1002
1448
  }
1003
1449
  }
1004
1450
  }