harperdb 3.1.3 → 3.1.4
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.
- package/README.md +1 -1
- package/bin/BinObjects.jsc +0 -0
- package/bin/harperdb.jsc +0 -0
- package/bin/install.jsc +0 -0
- package/bin/register.jsc +0 -0
- package/bin/run.jsc +0 -0
- package/bin/stop.jsc +0 -0
- package/bin/upgrade.jsc +0 -0
- package/bin/utility.jsc +0 -0
- package/bin/version.jsc +0 -0
- package/coverage/lcov.info +4044 -4034
- package/data_layer/CreateAttributeObject.jsc +0 -0
- package/data_layer/CreateTableObject.jsc +0 -0
- package/data_layer/DataLayerObjects.jsc +0 -0
- package/data_layer/DeleteBeforeObject.jsc +0 -0
- package/data_layer/DeleteObject.jsc +0 -0
- package/data_layer/DropAttributeObject.jsc +0 -0
- package/data_layer/InsertObject.jsc +0 -0
- package/data_layer/ReadTransactionLogObject.jsc +0 -0
- package/data_layer/SQLSearch.jsc +0 -0
- package/data_layer/SearchByConditionsObject.jsc +0 -0
- package/data_layer/SearchByHashObject.jsc +0 -0
- package/data_layer/SearchObject.jsc +0 -0
- package/data_layer/SqlSearchObject.jsc +0 -0
- package/data_layer/UpdateObject.jsc +0 -0
- package/data_layer/UpsertObject.jsc +0 -0
- package/data_layer/bulkLoad.jsc +0 -0
- package/data_layer/data_objects/BulkLoadObjects.jsc +0 -0
- package/data_layer/data_objects/UpsertObject.jsc +0 -0
- package/data_layer/delete.jsc +0 -0
- package/data_layer/export.jsc +0 -0
- package/data_layer/harperBridge/BridgeMethods.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/checkForNewAttr.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/convertOperationToTransaction.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/evaluateTableGetAttributes.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateReturnObj.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateValidate.jsc +0 -0
- package/data_layer/harperBridge/harperBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/LMDBBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/DeleteTransactionsBeforeResults.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecordsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteTransactionLogsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbReadTransactionLog.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpdateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBDeleteTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBInsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpdateTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/ThreadSearchObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializePaths.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsEnvironment.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbDropAllAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbThreadSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbWriteTransaction.jsc +0 -0
- package/data_layer/hdbInfoController.jsc +0 -0
- package/data_layer/insert.jsc +0 -0
- package/data_layer/readTransactionLog.jsc +0 -0
- package/data_layer/schema.jsc +0 -0
- package/data_layer/schemaDescribe.jsc +0 -0
- package/data_layer/search.jsc +0 -0
- package/data_layer/update.jsc +0 -0
- package/events/ClusterStatusEmitter.jsc +0 -0
- package/events/SioServerStoppedEvent.jsc +0 -0
- package/events/SocketClusterStatusEmitter.jsc +0 -0
- package/node_modules/@pm2/js-api/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/@pm2/js-api/node_modules/async/LICENSE +19 -0
- package/node_modules/@pm2/js-api/node_modules/async/README.md +56 -0
- package/node_modules/@pm2/js-api/node_modules/async/all.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/allLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/allSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/any.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/anyLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/anySeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/apply.js +68 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEach.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/asyncify.js +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/auto.js +289 -0
- package/node_modules/@pm2/js-api/node_modules/async/autoInject.js +170 -0
- package/node_modules/@pm2/js-api/node_modules/async/bower.json +17 -0
- package/node_modules/@pm2/js-api/node_modules/async/cargo.js +94 -0
- package/node_modules/@pm2/js-api/node_modules/async/compose.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/concat.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatLimit.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/constant.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/detect.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/dir.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.js +5609 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/@pm2/js-api/node_modules/async/doDuring.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/doUntil.js +39 -0
- package/node_modules/@pm2/js-api/node_modules/async/doWhilst.js +59 -0
- package/node_modules/@pm2/js-api/node_modules/async/during.js +76 -0
- package/node_modules/@pm2/js-api/node_modules/async/each.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/@pm2/js-api/node_modules/async/every.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/everyLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/everySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filter.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/find.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/findLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/findSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldl.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldr.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEach.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/forever.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBy.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/index.js +582 -0
- package/node_modules/@pm2/js-api/node_modules/async/inject.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/filter.js +75 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/map.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/notId.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/once.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/queue.js +204 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/reject.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/slice.js +16 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/log.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/map.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValues.js +63 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/memoize.js +101 -0
- package/node_modules/@pm2/js-api/node_modules/async/nextTick.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/package.json +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallel.js +90 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/@pm2/js-api/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/@pm2/js-api/node_modules/async/queue.js +130 -0
- package/node_modules/@pm2/js-api/node_modules/async/race.js +70 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduce.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduceRight.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflect.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflectAll.js +105 -0
- package/node_modules/@pm2/js-api/node_modules/async/reject.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/retry.js +156 -0
- package/node_modules/@pm2/js-api/node_modules/async/retryable.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/select.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/seq.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/series.js +85 -0
- package/node_modules/@pm2/js-api/node_modules/async/setImmediate.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/some.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/someLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/someSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/sortBy.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/timeout.js +89 -0
- package/node_modules/@pm2/js-api/node_modules/async/times.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesSeries.js +32 -0
- package/node_modules/@pm2/js-api/node_modules/async/transform.js +87 -0
- package/node_modules/@pm2/js-api/node_modules/async/tryEach.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/unmemoize.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/until.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/waterfall.js +113 -0
- package/node_modules/@pm2/js-api/node_modules/async/whilst.js +72 -0
- package/node_modules/@pm2/js-api/node_modules/async/wrapSync.js +110 -0
- package/node_modules/@pm2/js-api/package.json +3 -1
- package/node_modules/ajv/package.json +0 -1
- package/node_modules/async/CHANGELOG.md +0 -6
- package/node_modules/async/package.json +12 -15
- package/node_modules/async-limiter/package.json +1 -0
- package/node_modules/{fastify-static → avvio}/.github/dependabot.yml +5 -1
- package/node_modules/avvio/.github/workflows/ci.yml +34 -11
- package/node_modules/avvio/.taprc +1 -1
- package/node_modules/avvio/README.md +17 -15
- package/node_modules/avvio/boot.js +15 -9
- package/node_modules/avvio/index.d.ts +1 -1
- package/node_modules/avvio/node_modules/debug/LICENSE +10 -9
- package/node_modules/avvio/node_modules/debug/README.md +24 -1
- package/node_modules/avvio/node_modules/debug/package.json +20 -20
- package/node_modules/avvio/node_modules/debug/src/common.js +15 -2
- package/node_modules/avvio/package.json +15 -15
- package/node_modules/avvio/plugin.js +5 -4
- package/node_modules/avvio/test/after-and-ready.test.js +27 -27
- package/node_modules/avvio/test/after-pass-through.test.js +3 -3
- package/node_modules/avvio/test/async-await.test.js +1 -1
- package/node_modules/avvio/test/await-after.test.js +12 -12
- package/node_modules/avvio/test/await-self.test.js +6 -6
- package/node_modules/avvio/test/await-use.test.js +1 -1
- package/node_modules/avvio/test/basic.test.js +14 -14
- package/node_modules/avvio/test/callbacks.test.js +1 -1
- package/node_modules/avvio/test/close.test.js +64 -21
- package/node_modules/avvio/test/esm.mjs +1 -1
- package/node_modules/avvio/test/events-listeners.test.js +1 -0
- package/node_modules/avvio/test/express.test.js +1 -1
- package/node_modules/avvio/test/override.test.js +27 -27
- package/node_modules/avvio/test/plugin-timeout.test.js +18 -18
- package/node_modules/avvio/test/pretty-print.test.js +1 -1
- package/node_modules/avvio/test/to-json.test.js +5 -5
- package/node_modules/avvio/test/types/index.ts +7 -0
- package/node_modules/axios/CHANGELOG.md +0 -23
- package/node_modules/axios/README.md +1 -3
- package/node_modules/axios/dist/axios.js +1 -21
- package/node_modules/axios/dist/axios.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.map +1 -1
- package/node_modules/axios/index.d.ts +2 -3
- package/node_modules/axios/lib/adapters/http.js +12 -28
- package/node_modules/axios/lib/axios.js +0 -3
- package/node_modules/axios/package.json +10 -10
- package/node_modules/big-integer/BigInteger.d.ts +1 -1
- package/node_modules/big-integer/BigInteger.js +2 -2
- package/node_modules/big-integer/BigInteger.min.js +1 -1
- package/node_modules/big-integer/README.md +2 -1
- package/node_modules/big-integer/package.json +15 -15
- package/node_modules/clone/README.md +3 -19
- package/node_modules/clone/clone.js +1 -7
- package/node_modules/clone/package.json +12 -11
- package/node_modules/cookie/HISTORY.md +6 -0
- package/node_modules/cookie/README.md +49 -20
- package/node_modules/cookie/index.js +11 -11
- package/node_modules/cookie/package.json +18 -16
- package/node_modules/fast-deep-equal/package.json +2 -1
- package/node_modules/fast-json-stringify/.github/dependabot.yml +4 -0
- package/node_modules/fast-json-stringify/.github/workflows/benchmark.yml +111 -0
- package/node_modules/fast-json-stringify/.github/workflows/ci.yml +32 -16
- package/node_modules/fast-json-stringify/.taprc +0 -1
- package/node_modules/fast-json-stringify/README.md +24 -17
- package/node_modules/fast-json-stringify/bench.js +28 -0
- package/node_modules/fast-json-stringify/example.js +1 -3
- package/node_modules/fast-json-stringify/index.d.ts +1 -0
- package/node_modules/fast-json-stringify/index.js +175 -116
- package/node_modules/fast-json-stringify/package.json +13 -12
- package/node_modules/fast-json-stringify/test/allof.test.js +63 -11
- package/node_modules/fast-json-stringify/test/any.test.js +25 -25
- package/node_modules/fast-json-stringify/test/anyof.test.js +92 -22
- package/node_modules/fast-json-stringify/test/array.test.js +66 -3
- package/node_modules/fast-json-stringify/test/basic.test.js +3 -3
- package/node_modules/fast-json-stringify/test/date.test.js +1 -1
- package/node_modules/fast-json-stringify/test/debug-mode.test.js +4 -4
- package/node_modules/fast-json-stringify/test/defaults.test.js +1 -1
- package/node_modules/fast-json-stringify/test/enum.test.js +37 -0
- package/node_modules/fast-json-stringify/test/inferType.test.js +1 -1
- package/node_modules/fast-json-stringify/test/integer.test.js +44 -1
- package/node_modules/fast-json-stringify/test/nestedObjects.test.js +1 -1
- package/node_modules/fast-json-stringify/test/nullable.test.js +1 -1
- package/node_modules/fast-json-stringify/test/oneof.test.js +145 -17
- package/node_modules/fast-json-stringify/test/recursion.test.js +180 -0
- package/node_modules/fast-json-stringify/test/ref.test.js +54 -7
- package/node_modules/fast-json-stringify/test/required.test.js +10 -10
- package/node_modules/fast-json-stringify/test/requiresAjv.test.js +48 -0
- package/node_modules/fast-json-stringify/test/sanitize.test.js +2 -2
- package/node_modules/fast-json-stringify/test/side-effect.test.js +7 -7
- package/node_modules/fast-json-stringify/test/types/test.ts +8 -0
- package/node_modules/fast-json-stringify/test/typesArray.test.js +26 -26
- package/node_modules/fast-json-stringify/test/webpack.test.js +50 -0
- package/node_modules/fastify/README.md +3 -3
- package/node_modules/fastify/docs/ContentTypeParser.md +0 -21
- package/node_modules/fastify/docs/Ecosystem.md +0 -1
- package/node_modules/fastify/docs/Request.md +1 -1
- package/node_modules/fastify/docs/Server.md +1 -23
- package/node_modules/fastify/docs/Serverless.md +10 -17
- package/node_modules/fastify/docs/Style-Guide.md +2 -2
- package/node_modules/fastify/fastify.js +0 -3
- package/node_modules/fastify/lib/contentTypeParser.js +7 -28
- package/node_modules/fastify/lib/errors.js +1 -1
- package/node_modules/fastify/lib/reply.js +15 -11
- package/node_modules/fastify/lib/route.js +1 -1
- package/node_modules/fastify/node_modules/semver/package.json +10 -10
- package/node_modules/fastify/node_modules/semver/ranges/subset.js +67 -7
- package/node_modules/fastify/package.json +11 -11
- package/node_modules/fastify/test/content-parser.test.js +7 -179
- package/node_modules/fastify/test/custom-parser.test.js +2 -262
- package/node_modules/fastify/test/pretty-print.test.js +0 -28
- package/node_modules/fastify/test/schema-special-usage.test.js +0 -46
- package/node_modules/fastify/test/stream.test.js +0 -90
- package/node_modules/fastify/test/types/instance.test-d.ts +0 -2
- package/node_modules/fastify/test/types/logger.test-d.ts +3 -8
- package/node_modules/fastify/test/types/schema.test-d.ts +1 -41
- package/node_modules/fastify/test/versioned-routes.test.js +18 -61
- package/node_modules/fastify/types/content-type-parser.d.ts +4 -4
- package/node_modules/fastify/types/instance.d.ts +5 -11
- package/node_modules/fastify/types/logger.d.ts +1 -1
- package/node_modules/fastify/types/route.d.ts +11 -14
- package/node_modules/fastify/types/schema.d.ts +4 -4
- package/node_modules/{light-my-request → fastify-compress}/.dependabot/config.yml +1 -1
- package/node_modules/fastify-compress/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-compress/index.js +0 -12
- package/node_modules/fastify-compress/node_modules/mime-db/HISTORY.md +33 -0
- package/node_modules/fastify-compress/node_modules/mime-db/README.md +0 -2
- package/node_modules/fastify-compress/node_modules/mime-db/db.json +167 -9
- package/node_modules/fastify-compress/node_modules/mime-db/package.json +17 -17
- package/node_modules/fastify-compress/package.json +11 -11
- package/node_modules/fastify-compress/test/test-routes-compress.js +0 -27
- package/node_modules/fastify-cors/README.md +11 -18
- package/node_modules/fastify-cors/index.d.ts +55 -66
- package/node_modules/fastify-cors/index.js +83 -131
- package/node_modules/fastify-cors/package.json +11 -11
- package/node_modules/fastify-cors/test/cors.test.js +3 -250
- package/node_modules/fastify-cors/test/index.test-d.ts +1 -65
- package/node_modules/fastify-cors/test/preflight.test.js +1 -61
- package/node_modules/{fastify-compress → fastify-error}/.github/dependabot.yml +5 -1
- package/node_modules/fastify-error/.github/workflows/ci.yml +24 -8
- package/node_modules/fastify-error/README.md +8 -5
- package/node_modules/fastify-error/index.d.ts +1 -2
- package/node_modules/fastify-error/index.test-d.ts +1 -1
- package/node_modules/fastify-error/package.json +12 -12
- package/node_modules/fastify-helmet/.dependabot/config.yml +5 -0
- package/node_modules/fastify-helmet/.github/workflows/ci.yml +0 -9
- package/node_modules/fastify-helmet/README.md +2 -2
- package/node_modules/fastify-helmet/benchmarks/express.js +3 -3
- package/node_modules/fastify-helmet/benchmarks/koa.js +2 -2
- package/node_modules/fastify-helmet/index.js +0 -2
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.github/workflows/ci.yml +18 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.taprc +5 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/LICENSE +21 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/README.md +144 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/package.json +69 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.d.ts +36 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.js +126 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.test-d.ts +72 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/stackParser.js +11 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/bundlers.test.js +85 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/checkVersion.test.js +73 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/esm.mjs +34 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/index.test.js +19 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/stackParser.test.js +48 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/test.js +307 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/tsconfig.json +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/CHANGELOG.md +111 -0
- package/node_modules/fastify-helmet/node_modules/semver/LICENSE +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/README.md +566 -0
- package/node_modules/fastify-helmet/node_modules/semver/bin/semver.js +173 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/comparator.js +135 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/index.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/range.js +510 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/semver.js +287 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/cmp.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/coerce.js +51 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/diff.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/inc.js +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/major.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/parse.js +33 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/index.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/constants.js +17 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/parse-options.js +11 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/re.js +182 -0
- package/node_modules/fastify-helmet/node_modules/semver/package.json +76 -0
- package/node_modules/fastify-helmet/node_modules/semver/preload.js +2 -0
- package/node_modules/fastify-helmet/node_modules/semver/range.bnf +16 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-version.js +60 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/simplify.js +44 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/subset.js +222 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/fastify-helmet/package.json +17 -17
- package/node_modules/fastify-helmet/test.js +0 -27
- package/node_modules/fastify-plugin/package.json +0 -1
- package/node_modules/{avvio → fastify-static}/.dependabot/config.yml +0 -0
- package/node_modules/fastify-static/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-static/README.md +0 -3
- package/node_modules/fastify-static/example/public/index.js +1 -1
- package/node_modules/fastify-static/example/server-compress.js +2 -5
- package/node_modules/fastify-static/example/server-dir-list.js +18 -25
- package/node_modules/fastify-static/example/server.js +1 -4
- package/node_modules/fastify-static/index.d.ts +2 -2
- package/node_modules/fastify-static/index.js +31 -64
- package/node_modules/fastify-static/node_modules/glob/README.md +4 -1
- package/node_modules/fastify-static/node_modules/glob/common.js +4 -8
- package/node_modules/fastify-static/node_modules/glob/glob.js +4 -7
- package/node_modules/fastify-static/node_modules/glob/package.json +18 -12
- package/node_modules/fastify-static/node_modules/glob/sync.js +4 -7
- package/node_modules/fastify-static/package.json +13 -14
- package/node_modules/fastify-static/test/dir-list.test.js +1 -5
- package/node_modules/fastify-static/test/static.test.js +2 -261
- package/node_modules/fastify-static/test/types/index.ts +1 -13
- package/node_modules/find-my-way/.taprc +4 -1
- package/node_modules/find-my-way/README.md +96 -6
- package/node_modules/find-my-way/index.d.ts +6 -5
- package/node_modules/find-my-way/index.js +72 -10
- package/node_modules/find-my-way/lib/constrainer.js +6 -2
- package/node_modules/find-my-way/lib/pretty-print.js +234 -33
- package/node_modules/find-my-way/node.js +25 -28
- package/node_modules/find-my-way/package.json +11 -11
- package/node_modules/find-my-way/test/constraint.custom-versioning.test.js +2 -2
- package/node_modules/find-my-way/test/constraint.custom.test.js +72 -10
- package/node_modules/find-my-way/test/constraint.default-versioning.test.js +24 -1
- package/node_modules/find-my-way/test/constraint.host.test.js +7 -7
- package/node_modules/find-my-way/test/constraints.test.js +19 -19
- package/node_modules/find-my-way/test/errors.test.js +25 -25
- package/node_modules/find-my-way/test/fastify-issue-3129.test.js +35 -0
- package/node_modules/find-my-way/test/full-url.test.js +8 -8
- package/node_modules/find-my-way/test/host-storage.test.js +15 -15
- package/node_modules/find-my-way/test/http2/constraint.host.test.js +45 -0
- package/node_modules/find-my-way/test/issue-104.test.js +41 -18
- package/node_modules/find-my-way/test/issue-110.test.js +1 -1
- package/node_modules/find-my-way/test/issue-132.test.js +9 -9
- package/node_modules/find-my-way/test/issue-145.test.js +6 -6
- package/node_modules/find-my-way/test/issue-151.test.js +2 -2
- package/node_modules/find-my-way/test/issue-17.test.js +92 -12
- package/node_modules/find-my-way/test/issue-175.test.js +51 -1
- package/node_modules/find-my-way/test/issue-182.test.js +19 -0
- package/node_modules/find-my-way/test/issue-28.test.js +21 -21
- package/node_modules/find-my-way/test/issue-46.test.js +13 -13
- package/node_modules/find-my-way/test/issue-49.test.js +4 -4
- package/node_modules/find-my-way/test/issue-59.test.js +1 -1
- package/node_modules/find-my-way/test/issue-63.test.js +1 -1
- package/node_modules/find-my-way/test/issue-67.test.js +1 -1
- package/node_modules/find-my-way/test/max-param-length.test.js +5 -5
- package/node_modules/find-my-way/test/methods.test.js +53 -53
- package/node_modules/find-my-way/test/on-bad-url.test.js +4 -4
- package/node_modules/find-my-way/test/optional-params.test.js +145 -0
- package/node_modules/find-my-way/test/path-params-match.test.js +12 -12
- package/node_modules/find-my-way/test/pretty-print.test.js +364 -9
- package/node_modules/find-my-way/test/regex.test.js +5 -5
- package/node_modules/find-my-way/test/routes-registered.test.js +4 -4
- package/node_modules/find-my-way/test/server.test.js +23 -23
- package/node_modules/find-my-way/test/store.test.js +4 -4
- package/node_modules/find-my-way/test/types/router.test-d.ts +62 -0
- package/node_modules/follow-redirects/debug.js +2 -1
- package/node_modules/follow-redirects/index.js +111 -42
- package/node_modules/follow-redirects/package.json +10 -10
- package/node_modules/helmet/CHANGELOG.md +27 -3
- package/node_modules/helmet/README.md +130 -27
- package/node_modules/helmet/dist/index.d.ts +21 -13
- package/node_modules/helmet/dist/index.js +111 -52
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.d.ts +2 -1
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.js +28 -11
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.d.ts +3 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.js +10 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.js +19 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.js +19 -0
- package/node_modules/helmet/package.json +19 -18
- package/node_modules/ieee754/package.json +1 -2
- package/node_modules/inherits/package.json +0 -1
- package/node_modules/ipaddr.js/Changes.md +20 -0
- package/node_modules/ipaddr.js/ipaddr.min.js +1 -1
- package/node_modules/ipaddr.js/lib/ipaddr.js +66 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +1 -0
- package/node_modules/ipaddr.js/package.json +10 -10
- package/node_modules/{fastify-helmet → light-my-request}/.github/dependabot.yml +5 -1
- package/node_modules/light-my-request/.github/workflows/ci.yml +38 -12
- package/node_modules/light-my-request/README.md +5 -3
- package/node_modules/light-my-request/index.d.ts +6 -3
- package/node_modules/light-my-request/lib/parseURL.js +7 -4
- package/node_modules/light-my-request/lib/request.js +16 -6
- package/node_modules/light-my-request/lib/response.js +24 -11
- package/node_modules/light-my-request/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/LICENSE +22 -0
- package/node_modules/light-my-request/node_modules/ajv/README.md +193 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js +218 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js +202 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js +510 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.d.ts +173 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js +617 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.d.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js +184 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.d.ts +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.d.ts +169 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js +146 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2019.ts +78 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2020.ts +72 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/ajv.ts +67 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/index.ts +832 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/serialize.ts +260 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/dataType.ts +229 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/index.ts +573 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/core.ts +887 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/jtd.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/parseJson.ts +176 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/index.ts +240 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/json-schema.ts +186 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/jtd-schema.ts +263 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/properties.ts +177 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/values.ts +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/enum.ts +52 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/package.json +161 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/package.json +73 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/light-my-request/package.json +26 -19
- package/node_modules/light-my-request/test/benchmark.js +67 -0
- package/node_modules/light-my-request/test/index.test-d.ts +6 -4
- package/node_modules/light-my-request/test/test.js +103 -14
- package/node_modules/lmdb-store/build/Makefile +1 -1
- package/node_modules/lmdb-store/build/lmdb-store.target.mk +7 -7
- package/node_modules/lodash/package.json +4 -1
- package/node_modules/lru-cache/package.json +1 -0
- package/node_modules/minipass/README.md +7 -7
- package/node_modules/minipass/index.js +18 -3
- package/node_modules/minipass/package.json +11 -11
- package/node_modules/msgpackr-extract/build/Makefile +1 -1
- package/node_modules/node-lmdb/build/Makefile +1 -1
- package/node_modules/{socketcluster-client/node_modules/clone → pm2-sysmonit/node_modules/systeminformation}/LICENSE +7 -5
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/README.md +1075 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/audio.js +219 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/battery.js +309 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/bluetooth.js +183 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cli.js +31 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cpu.js +1681 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/docker.js +764 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/dockerSocket.js +327 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/filesystem.js +1270 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/graphics.js +1062 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.d.ts +988 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.js +513 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/internet.js +240 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/memory.js +547 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/network.js +1713 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/osinfo.js +1161 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/printer.js +212 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/processes.js +1257 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/system.js +829 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/usb.js +305 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/users.js +441 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/util.js +1276 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/virtualbox.js +107 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/wifi.js +747 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/package.json +135 -0
- package/node_modules/pumpify/node_modules/duplexify/.travis.yml +3 -0
- package/node_modules/pumpify/node_modules/duplexify/index.js +1 -1
- package/node_modules/pumpify/node_modules/duplexify/package.json +10 -10
- package/node_modules/pumpify/node_modules/duplexify/test.js +1 -0
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +61 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/node_modules/sc-errors/package.json +2 -1
- package/node_modules/secure-json-parse/.github/workflows/ci.yml +16 -1
- package/node_modules/secure-json-parse/index.d.ts +60 -0
- package/node_modules/secure-json-parse/index.test-d.ts +30 -0
- package/node_modules/secure-json-parse/package.json +16 -13
- package/node_modules/send/HISTORY.md +10 -0
- package/node_modules/send/README.md +4 -6
- package/node_modules/send/index.js +7 -3
- package/node_modules/send/node_modules/http-errors/HISTORY.md +11 -0
- package/node_modules/send/node_modules/http-errors/README.md +12 -6
- package/node_modules/send/node_modules/http-errors/index.js +35 -2
- package/node_modules/send/node_modules/http-errors/package.json +24 -24
- package/node_modules/send/node_modules/ms/index.js +3 -3
- package/node_modules/send/node_modules/ms/license.md +1 -1
- package/node_modules/send/node_modules/ms/package.json +16 -15
- package/node_modules/send/node_modules/ms/readme.md +1 -2
- package/node_modules/send/node_modules/setprototypeof/README.md +1 -1
- package/node_modules/send/node_modules/setprototypeof/index.js +1 -1
- package/node_modules/send/node_modules/setprototypeof/package.json +14 -12
- package/node_modules/send/package.json +26 -26
- package/node_modules/socketcluster-client/bower.json +1 -1
- package/node_modules/socketcluster-client/index.js +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/AUTHORS.md +8 -0
- package/node_modules/socketcluster-client/node_modules/buffer/README.md +0 -6
- package/node_modules/socketcluster-client/node_modules/buffer/index.d.ts +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/index.js +49 -37
- package/node_modules/socketcluster-client/node_modules/buffer/package.json +36 -22
- package/node_modules/socketcluster-client/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/README.md +51 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.js +85 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/package.json +87 -0
- package/node_modules/socketcluster-client/node_modules/ws/LICENSE +21 -0
- package/node_modules/socketcluster-client/node_modules/ws/README.md +389 -0
- package/node_modules/socketcluster-client/node_modules/ws/index.js +9 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/.DS_Store +0 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/buffer-util.js +72 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/constants.js +10 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/event-target.js +170 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/extension.js +211 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/permessage-deflate.js +516 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/receiver.js +513 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/sender.js +401 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/validation.js +29 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket-server.js +350 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket.js +821 -0
- package/node_modules/socketcluster-client/node_modules/ws/package.json +81 -0
- package/node_modules/socketcluster-client/package.json +17 -18
- package/node_modules/socketcluster-client/socketcluster.js +12 -40
- package/node_modules/socketcluster-client/socketcluster.min.js +2 -2
- package/node_modules/string_decoder/package.json +0 -1
- package/node_modules/systeminformation/CHANGELOG.md +3 -22
- package/node_modules/systeminformation/README.md +1 -4
- package/node_modules/systeminformation/lib/battery.js +26 -104
- package/node_modules/systeminformation/lib/cpu.js +10 -13
- package/node_modules/systeminformation/lib/docker.js +3 -3
- package/node_modules/systeminformation/lib/filesystem.js +59 -86
- package/node_modules/systeminformation/lib/graphics.js +22 -91
- package/node_modules/systeminformation/lib/index.d.ts +11 -48
- package/node_modules/systeminformation/lib/memory.js +1 -1
- package/node_modules/systeminformation/lib/network.js +7 -17
- package/node_modules/systeminformation/lib/osinfo.js +7 -10
- package/node_modules/systeminformation/lib/processes.js +23 -35
- package/node_modules/systeminformation/lib/system.js +5 -5
- package/node_modules/systeminformation/lib/util.js +1 -41
- package/node_modules/systeminformation/package.json +11 -12
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/README.md +3 -3
- package/node_modules/toidentifier/index.js +2 -0
- package/node_modules/toidentifier/package.json +25 -21
- package/node_modules/uri-js/package.json +2 -1
- package/node_modules/util-deprecate/package.json +0 -1
- package/node_modules/vizion/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/vizion/node_modules/async/LICENSE +19 -0
- package/node_modules/vizion/node_modules/async/README.md +56 -0
- package/node_modules/vizion/node_modules/async/all.js +50 -0
- package/node_modules/vizion/node_modules/async/allLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/allSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/any.js +52 -0
- package/node_modules/vizion/node_modules/async/anyLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/anySeries.js +38 -0
- package/node_modules/vizion/node_modules/async/apply.js +68 -0
- package/node_modules/vizion/node_modules/async/applyEach.js +51 -0
- package/node_modules/vizion/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/asyncify.js +110 -0
- package/node_modules/vizion/node_modules/async/auto.js +289 -0
- package/node_modules/vizion/node_modules/async/autoInject.js +170 -0
- package/node_modules/vizion/node_modules/async/bower.json +17 -0
- package/node_modules/vizion/node_modules/async/cargo.js +94 -0
- package/node_modules/vizion/node_modules/async/compose.js +58 -0
- package/node_modules/vizion/node_modules/async/concat.js +43 -0
- package/node_modules/vizion/node_modules/async/concatLimit.js +65 -0
- package/node_modules/vizion/node_modules/async/concatSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/constant.js +66 -0
- package/node_modules/vizion/node_modules/async/detect.js +61 -0
- package/node_modules/vizion/node_modules/async/detectLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/detectSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/dir.js +43 -0
- package/node_modules/vizion/node_modules/async/dist/async.js +5609 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/vizion/node_modules/async/doDuring.js +66 -0
- package/node_modules/vizion/node_modules/async/doUntil.js +39 -0
- package/node_modules/vizion/node_modules/async/doWhilst.js +59 -0
- package/node_modules/vizion/node_modules/async/during.js +76 -0
- package/node_modules/vizion/node_modules/async/each.js +82 -0
- package/node_modules/vizion/node_modules/async/eachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/eachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/eachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/vizion/node_modules/async/every.js +50 -0
- package/node_modules/vizion/node_modules/async/everyLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/everySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/filter.js +45 -0
- package/node_modules/vizion/node_modules/async/filterLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/filterSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/find.js +61 -0
- package/node_modules/vizion/node_modules/async/findLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/findSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/foldl.js +78 -0
- package/node_modules/vizion/node_modules/async/foldr.js +44 -0
- package/node_modules/vizion/node_modules/async/forEach.js +82 -0
- package/node_modules/vizion/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/forEachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/forever.js +65 -0
- package/node_modules/vizion/node_modules/async/groupBy.js +54 -0
- package/node_modules/vizion/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/vizion/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/index.js +582 -0
- package/node_modules/vizion/node_modules/async/inject.js +78 -0
- package/node_modules/vizion/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/vizion/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/vizion/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/vizion/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/vizion/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/vizion/node_modules/async/internal/filter.js +75 -0
- package/node_modules/vizion/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/vizion/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/vizion/node_modules/async/internal/map.js +35 -0
- package/node_modules/vizion/node_modules/async/internal/notId.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/once.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/queue.js +204 -0
- package/node_modules/vizion/node_modules/async/internal/reject.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/slice.js +16 -0
- package/node_modules/vizion/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/vizion/node_modules/async/log.js +41 -0
- package/node_modules/vizion/node_modules/async/map.js +54 -0
- package/node_modules/vizion/node_modules/async/mapLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/mapSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/mapValues.js +63 -0
- package/node_modules/vizion/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/vizion/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/memoize.js +101 -0
- package/node_modules/vizion/node_modules/async/nextTick.js +51 -0
- package/node_modules/vizion/node_modules/async/package.json +110 -0
- package/node_modules/vizion/node_modules/async/parallel.js +90 -0
- package/node_modules/vizion/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/vizion/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/vizion/node_modules/async/queue.js +130 -0
- package/node_modules/vizion/node_modules/async/race.js +70 -0
- package/node_modules/vizion/node_modules/async/reduce.js +78 -0
- package/node_modules/vizion/node_modules/async/reduceRight.js +44 -0
- package/node_modules/vizion/node_modules/async/reflect.js +81 -0
- package/node_modules/vizion/node_modules/async/reflectAll.js +105 -0
- package/node_modules/vizion/node_modules/async/reject.js +45 -0
- package/node_modules/vizion/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/retry.js +156 -0
- package/node_modules/vizion/node_modules/async/retryable.js +65 -0
- package/node_modules/vizion/node_modules/async/select.js +45 -0
- package/node_modules/vizion/node_modules/async/selectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/selectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/seq.js +91 -0
- package/node_modules/vizion/node_modules/async/series.js +85 -0
- package/node_modules/vizion/node_modules/async/setImmediate.js +45 -0
- package/node_modules/vizion/node_modules/async/some.js +52 -0
- package/node_modules/vizion/node_modules/async/someLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/someSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/sortBy.js +91 -0
- package/node_modules/vizion/node_modules/async/timeout.js +89 -0
- package/node_modules/vizion/node_modules/async/times.js +50 -0
- package/node_modules/vizion/node_modules/async/timesLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/timesSeries.js +32 -0
- package/node_modules/vizion/node_modules/async/transform.js +87 -0
- package/node_modules/vizion/node_modules/async/tryEach.js +81 -0
- package/node_modules/vizion/node_modules/async/unmemoize.js +25 -0
- package/node_modules/vizion/node_modules/async/until.js +41 -0
- package/node_modules/vizion/node_modules/async/waterfall.js +113 -0
- package/node_modules/vizion/node_modules/async/whilst.js +72 -0
- package/node_modules/vizion/node_modules/async/wrapSync.js +110 -0
- package/node_modules/vizion/package.json +3 -1
- package/node_modules/ws/package.json +0 -1
- package/package.json +62 -62
- package/security/JWTObjects.jsc +0 -0
- package/security/auth.jsc +0 -0
- package/security/cryptoHash.jsc +0 -0
- package/security/data_objects/PermissionAttributeResponseObject.jsc +0 -0
- package/security/data_objects/PermissionResponseObject.jsc +0 -0
- package/security/data_objects/PermissionTableResponseObject.jsc +0 -0
- package/security/permissionsTranslator.jsc +0 -0
- package/security/role.jsc +0 -0
- package/security/tokenAuthentication.jsc +0 -0
- package/security/user.jsc +0 -0
- package/server/ClusteringOriginObject.jsc +0 -0
- package/server/JobObject.jsc +0 -0
- package/server/clustering/ClusterStatusObject.jsc +0 -0
- package/server/clustering/NodeObject.jsc +0 -0
- package/server/clustering/clusterUtilities.jsc +0 -0
- package/server/configuration.jsc +0 -0
- package/server/customFunctions/customFunctionsServer.jsc +0 -0
- package/server/customFunctions/helpers/getCORSOptions.jsc +0 -0
- package/server/customFunctions/helpers/getHeaderTimeoutConfig.jsc +0 -0
- package/server/customFunctions/helpers/getServerOptions.jsc +0 -0
- package/server/customFunctions/operations.jsc +0 -0
- package/server/customFunctions/operationsValidation.jsc +0 -0
- package/server/harperdb/hdbServer.jsc +0 -0
- package/server/ipc/IPCClient.jsc +0 -0
- package/server/ipc/hdbIpcServer.jsc +0 -0
- package/server/ipc/serverHandlers.jsc +0 -0
- package/server/ipc/utility/IPCEventObject.jsc +0 -0
- package/server/ipc/utility/ipcUtils.jsc +0 -0
- package/server/jobRunner.jsc +0 -0
- package/server/jobThread.jsc +0 -0
- package/server/jobs.jsc +0 -0
- package/server/serverHelpers/OperationFunctionObject.jsc +0 -0
- package/server/serverHelpers/requestTimePlugin.jsc +0 -0
- package/server/serverHelpers/serverHandlers.jsc +0 -0
- package/server/serverHelpers/serverUtilities.jsc +0 -0
- package/server/socketcluster/Server.jsc +0 -0
- package/server/socketcluster/broker.jsc +0 -0
- package/server/socketcluster/connector/HDBSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/InterNodeSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/SocketConnector.jsc +0 -0
- package/server/socketcluster/connector/spawnSCConnection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/CoreDecisionMatrix.jsc +0 -0
- package/server/socketcluster/decisionMatrix/DecisionMatrixIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/AssignToHdbChildWorkerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CallRoomMsgHandlerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CleanDataObjectRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CommandCollection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/DummyRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/RulesIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/StripHdbHeaderRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/TestRule.jsc +0 -0
- package/server/socketcluster/handlers/NodeConnectionsHandler.jsc +0 -0
- package/server/socketcluster/handlers/SCServer.jsc +0 -0
- package/server/socketcluster/handlers/ServerSocket.jsc +0 -0
- package/server/socketcluster/interNodeConnectionLauncher.jsc +0 -0
- package/server/socketcluster/messageQueue/MessageQueueIF.jsc +0 -0
- package/server/socketcluster/middleware/AuthMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/ConnectionNameCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/GenericMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MessagePrepMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareFactory.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareIF.jsc +0 -0
- package/server/socketcluster/middleware/OriginatorCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/RequestDataValidMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampOriginatorMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampRequestMiddleware.jsc +0 -0
- package/server/socketcluster/observer/EventableIF.jsc +0 -0
- package/server/socketcluster/room/AddUserRoom.jsc +0 -0
- package/server/socketcluster/room/AlterUserRoom.jsc +0 -0
- package/server/socketcluster/room/CoreRoom.jsc +0 -0
- package/server/socketcluster/room/CreateAttributeRoom.jsc +0 -0
- package/server/socketcluster/room/CreateSchemaRoom.jsc +0 -0
- package/server/socketcluster/room/CreateTableRoom.jsc +0 -0
- package/server/socketcluster/room/DropUserRoom.jsc +0 -0
- package/server/socketcluster/room/HDBNodeRoom.jsc +0 -0
- package/server/socketcluster/room/RoomIF.jsc +0 -0
- package/server/socketcluster/room/RoomMessageObjects.jsc +0 -0
- package/server/socketcluster/room/UsersRoom.jsc +0 -0
- package/server/socketcluster/room/WatchHDBWorkersRoom.jsc +0 -0
- package/server/socketcluster/room/WorkerRoom.jsc +0 -0
- package/server/socketcluster/room/roomFactory.jsc +0 -0
- package/server/socketcluster/socketClusterObjects.jsc +0 -0
- package/server/socketcluster/types.jsc +0 -0
- package/server/socketcluster/util/clusterData.jsc +0 -0
- package/server/socketcluster/util/socketClusterUtils.jsc +0 -0
- package/server/socketcluster/worker/ClusterWorker.jsc +0 -0
- package/server/socketcluster/worker/WorkerIF.jsc +0 -0
- package/server/socketcluster/worker/WorkerObjects.jsc +0 -0
- package/server/transactToClusteringUtilities.jsc +0 -0
- package/sqlTranslator/SelectValidator.jsc +0 -0
- package/sqlTranslator/alasqlFunctionImporter.jsc +0 -0
- package/sqlTranslator/conditionPatterns.jsc +0 -0
- package/sqlTranslator/deleteTranslator.jsc +0 -0
- package/sqlTranslator/index.jsc +0 -0
- package/sqlTranslator/sql_statement_bucket.jsc +0 -0
- package/upgrade/EnvironmentVariable.jsc +0 -0
- package/upgrade/UpgradeDirective.jsc +0 -0
- package/upgrade/UpgradeObjects.jsc +0 -0
- package/upgrade/directives/3-0-0.jsc +0 -0
- package/upgrade/directives/3-1-0.jsc +0 -0
- package/upgrade/directives/directivesController.jsc +0 -0
- package/upgrade/directives/upgrade_scripts/3_0_0_reindex_script.jsc +0 -0
- package/upgrade/directivesManager.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/DBIDefinition.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenDBIObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenEnvironmentObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonErrors.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/environmentUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/terms.jsc +0 -0
- package/upgrade/upgradePrompt.jsc +0 -0
- package/upgrade/upgradeUtilities.jsc +0 -0
- package/utility/AWS/AWSConnector.jsc +0 -0
- package/utility/OperationFunctionCaller.jsc +0 -0
- package/utility/common_utils.jsc +0 -0
- package/utility/environment/SystemInformationObject.jsc +0 -0
- package/utility/environment/SystemInformationOperation.jsc +0 -0
- package/utility/environment/environmentManager.jsc +0 -0
- package/utility/environment/systemInformation.jsc +0 -0
- package/utility/errors/commonErrors.jsc +0 -0
- package/utility/errors/hdbError.jsc +0 -0
- package/utility/functions/date/dateFunctions.jsc +0 -0
- package/utility/functions/geo.jsc +0 -0
- package/utility/functions/math/avg.jsc +0 -0
- package/utility/functions/math/count.jsc +0 -0
- package/utility/functions/sql/alaSQLExtension.jsc +0 -0
- package/utility/functions/string/compare.jsc +0 -0
- package/utility/globalSchema.jsc +0 -0
- package/utility/hdbTerms.jsc +0 -0
- package/utility/install/checkJWTTokensExist.jsc +0 -0
- package/utility/install/installer.jsc +0 -0
- package/utility/install_user_permission.jsc +0 -0
- package/utility/lmdb/DBIDefinition.jsc +0 -0
- package/utility/lmdb/DeleteRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/InsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/OpenDBIObject.jsc +0 -0
- package/utility/lmdb/OpenEnvironmentObject.jsc +0 -0
- package/utility/lmdb/UpdateRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/UpsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/cleanLMDBMap.jsc +0 -0
- package/utility/lmdb/commonUtility.jsc +0 -0
- package/utility/lmdb/deleteUtility.jsc +0 -0
- package/utility/lmdb/environmentUtility.jsc +0 -0
- package/utility/lmdb/searchCursorFunctions.jsc +0 -0
- package/utility/lmdb/searchUtility.jsc +0 -0
- package/utility/lmdb/terms.jsc +0 -0
- package/utility/lmdb/writeUtility.jsc +0 -0
- package/utility/logging/harper_logger.jsc +0 -0
- package/utility/mount_hdb.jsc +0 -0
- package/utility/operation_authorization.jsc +0 -0
- package/utility/password.jsc +0 -0
- package/utility/pm2/servicesConfig.jsc +0 -0
- package/utility/pm2/utilityFunctions.jsc +0 -0
- package/utility/psList.jsc +0 -0
- package/utility/registration/hdb_license.jsc +0 -0
- package/utility/registration/licenseObjects.jsc +0 -0
- package/utility/registration/registrationHandler.jsc +0 -0
- package/utility/scripts/restartHdb.jsc +0 -0
- package/utility/signalling.jsc +0 -0
- package/utility/system_info.jsc +0 -0
- package/validation/bulkDeleteValidator.jsc +0 -0
- package/validation/check_permissions.jsc +0 -0
- package/validation/clustering/configureValidator.jsc +0 -0
- package/validation/common_validators.jsc +0 -0
- package/validation/conditionalDeleteValidator.jsc +0 -0
- package/validation/deleteValidator.jsc +0 -0
- package/validation/fileLoadValidator.jsc +0 -0
- package/validation/insertValidator.jsc +0 -0
- package/validation/nodeSubscriptionValidator.jsc +0 -0
- package/validation/nodeValidator.jsc +0 -0
- package/validation/readLogValidator.jsc +0 -0
- package/validation/registration/license_key_object.jsc +0 -0
- package/validation/role_validation.jsc +0 -0
- package/validation/schemaMetadataValidator.jsc +0 -0
- package/validation/schema_validator.jsc +0 -0
- package/validation/searchValidator.jsc +0 -0
- package/validation/user_validation.jsc +0 -0
- package/validation/validationWrapper.jsc +0 -0
- package/node_modules/axios/lib/helpers/isAxiosError.js +0 -11
- package/node_modules/fastify-helmet/.github/stale.yml +0 -21
- package/node_modules/fastify-static/.github/stale.yml +0 -21
- package/node_modules/fastify-static/example/public2/test.css +0 -4
- package/node_modules/fastify-static/example/public2/test.html +0 -8
- package/node_modules/fastify-static/example/server-multi-dir-list.js +0 -49
- package/node_modules/fastify-static/node_modules/glob/changelog.md +0 -67
- package/node_modules/fastify-static/test/static/.example +0 -1
- package/node_modules/fastify-static/test/static/a .md +0 -1
- package/node_modules/fastify-static/test/static2/bar.html +0 -3
- package/node_modules/fastify-static/test/static2/index.html +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/node_modules/light-my-request/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/node_modules/light-my-request/node_modules/readable-stream/LICENSE +0 -47
- package/node_modules/light-my-request/node_modules/readable-stream/README.md +0 -106
- package/node_modules/light-my-request/node_modules/readable-stream/errors-browser.js +0 -127
- package/node_modules/light-my-request/node_modules/readable-stream/errors.js +0 -116
- package/node_modules/light-my-request/node_modules/readable-stream/experimentalWarning.js +0 -17
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_duplex.js +0 -139
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_passthrough.js +0 -39
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_readable.js +0 -1124
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_transform.js +0 -201
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_writable.js +0 -697
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/async_iterator.js +0 -207
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/buffer_list.js +0 -210
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -105
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +0 -104
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from-browser.js +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from.js +0 -64
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/pipeline.js +0 -97
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/state.js +0 -27
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/package.json +0 -100
- package/node_modules/light-my-request/node_modules/readable-stream/readable-browser.js +0 -9
- package/node_modules/light-my-request/node_modules/readable-stream/readable.js +0 -16
- package/node_modules/socketcluster-client/node_modules/clone/.npmignore +0 -4
- package/node_modules/socketcluster-client/node_modules/clone/README.md +0 -178
- package/node_modules/socketcluster-client/node_modules/clone/clone.iml +0 -10
- package/node_modules/socketcluster-client/node_modules/clone/clone.js +0 -251
- package/node_modules/socketcluster-client/node_modules/clone/package.json +0 -161
- package/node_modules/socketcluster-client/node_modules/sc-errors/README.md +0 -2
- package/node_modules/socketcluster-client/node_modules/sc-errors/decycle.js +0 -79
- package/node_modules/socketcluster-client/node_modules/sc-errors/index.js +0 -340
- package/node_modules/socketcluster-client/node_modules/sc-errors/package.json +0 -55
|
@@ -0,0 +1,1713 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
// @ts-check
|
|
3
|
+
// ==================================================================================
|
|
4
|
+
// network.js
|
|
5
|
+
// ----------------------------------------------------------------------------------
|
|
6
|
+
// Description: System Information - library
|
|
7
|
+
// for Node.js
|
|
8
|
+
// Copyright: (c) 2014 - 2022
|
|
9
|
+
// Author: Sebastian Hildebrandt
|
|
10
|
+
// ----------------------------------------------------------------------------------
|
|
11
|
+
// License: MIT
|
|
12
|
+
// ==================================================================================
|
|
13
|
+
// 9. Network
|
|
14
|
+
// ----------------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
const os = require('os');
|
|
17
|
+
const exec = require('child_process').exec;
|
|
18
|
+
const execSync = require('child_process').execSync;
|
|
19
|
+
const fs = require('fs');
|
|
20
|
+
const util = require('./util');
|
|
21
|
+
|
|
22
|
+
let _platform = process.platform;
|
|
23
|
+
|
|
24
|
+
const _linux = (_platform === 'linux' || _platform === 'android');
|
|
25
|
+
const _darwin = (_platform === 'darwin');
|
|
26
|
+
const _windows = (_platform === 'win32');
|
|
27
|
+
const _freebsd = (_platform === 'freebsd');
|
|
28
|
+
const _openbsd = (_platform === 'openbsd');
|
|
29
|
+
const _netbsd = (_platform === 'netbsd');
|
|
30
|
+
const _sunos = (_platform === 'sunos');
|
|
31
|
+
|
|
32
|
+
let _network = {};
|
|
33
|
+
let _default_iface = '';
|
|
34
|
+
let _ifaces = {};
|
|
35
|
+
let _dhcpNics = [];
|
|
36
|
+
let _networkInterfaces = [];
|
|
37
|
+
let _mac = {};
|
|
38
|
+
let pathToIp;
|
|
39
|
+
|
|
40
|
+
function getDefaultNetworkInterface() {
|
|
41
|
+
|
|
42
|
+
let ifacename = '';
|
|
43
|
+
let ifacenameFirst = '';
|
|
44
|
+
try {
|
|
45
|
+
let ifaces = os.networkInterfaces();
|
|
46
|
+
|
|
47
|
+
let scopeid = 9999;
|
|
48
|
+
|
|
49
|
+
// fallback - "first" external interface (sorted by scopeid)
|
|
50
|
+
for (let dev in ifaces) {
|
|
51
|
+
if ({}.hasOwnProperty.call(ifaces, dev)) {
|
|
52
|
+
ifaces[dev].forEach(function (details) {
|
|
53
|
+
if (details && details.internal === false) {
|
|
54
|
+
ifacenameFirst = ifacenameFirst || dev; // fallback if no scopeid
|
|
55
|
+
if (details.scopeid && details.scopeid < scopeid) {
|
|
56
|
+
ifacename = dev;
|
|
57
|
+
scopeid = details.scopeid;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
ifacename = ifacename || ifacenameFirst || '';
|
|
64
|
+
|
|
65
|
+
if (_windows) {
|
|
66
|
+
// https://www.inetdaemon.com/tutorials/internet/ip/routing/default_route.shtml
|
|
67
|
+
let defaultIp = '';
|
|
68
|
+
const cmd = 'netstat -r';
|
|
69
|
+
const result = execSync(cmd, util.execOptsWin);
|
|
70
|
+
const lines = result.toString().split(os.EOL);
|
|
71
|
+
lines.forEach(line => {
|
|
72
|
+
line = line.replace(/\s+/g, ' ').trim();
|
|
73
|
+
if (line.indexOf('0.0.0.0 0.0.0.0') > -1 && !(/[a-zA-Z]/.test(line))) {
|
|
74
|
+
const parts = line.split(' ');
|
|
75
|
+
if (parts.length >= 5) {
|
|
76
|
+
defaultIp = parts[parts.length - 2];
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
if (defaultIp) {
|
|
81
|
+
for (let dev in ifaces) {
|
|
82
|
+
if ({}.hasOwnProperty.call(ifaces, dev)) {
|
|
83
|
+
ifaces[dev].forEach(function (details) {
|
|
84
|
+
if (details && details.address && details.address === defaultIp) {
|
|
85
|
+
ifacename = dev;
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
if (_linux) {
|
|
93
|
+
let cmd = 'ip route 2> /dev/null | grep default';
|
|
94
|
+
let result = execSync(cmd);
|
|
95
|
+
let parts = result.toString().split('\n')[0].split(/\s+/);
|
|
96
|
+
if (parts[0] === 'none' && parts[5]) {
|
|
97
|
+
ifacename = parts[5];
|
|
98
|
+
} else if (parts[4]) {
|
|
99
|
+
ifacename = parts[4];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
if (ifacename.indexOf(':') > -1) {
|
|
103
|
+
ifacename = ifacename.split(':')[1].trim();
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
if (_darwin || _freebsd || _openbsd || _netbsd || _sunos) {
|
|
107
|
+
let cmd = '';
|
|
108
|
+
if (_linux) { cmd = 'ip route 2> /dev/null | grep default | awk \'{print $5}\''; }
|
|
109
|
+
if (_darwin) { cmd = 'route -n get default 2>/dev/null | grep interface: | awk \'{print $2}\''; }
|
|
110
|
+
if (_freebsd || _openbsd || _netbsd || _sunos) { cmd = 'route get 0.0.0.0 | grep interface:'; }
|
|
111
|
+
let result = execSync(cmd);
|
|
112
|
+
ifacename = result.toString().split('\n')[0];
|
|
113
|
+
if (ifacename.indexOf(':') > -1) {
|
|
114
|
+
ifacename = ifacename.split(':')[1].trim();
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
} catch (e) {
|
|
118
|
+
util.noop();
|
|
119
|
+
}
|
|
120
|
+
if (ifacename) { _default_iface = ifacename; }
|
|
121
|
+
return _default_iface;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
exports.getDefaultNetworkInterface = getDefaultNetworkInterface;
|
|
125
|
+
|
|
126
|
+
function getMacAddresses() {
|
|
127
|
+
let iface = '';
|
|
128
|
+
let mac = '';
|
|
129
|
+
let result = {};
|
|
130
|
+
if (_linux || _freebsd || _openbsd || _netbsd) {
|
|
131
|
+
if (typeof pathToIp === 'undefined') {
|
|
132
|
+
try {
|
|
133
|
+
const lines = execSync('which ip').toString().split('\n');
|
|
134
|
+
if (lines.length && lines[0].indexOf(':') === -1 && lines[0].indexOf('/') === 0) {
|
|
135
|
+
pathToIp = lines[0];
|
|
136
|
+
} else {
|
|
137
|
+
pathToIp = '';
|
|
138
|
+
}
|
|
139
|
+
} catch (e) {
|
|
140
|
+
pathToIp = '';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
try {
|
|
144
|
+
const cmd = 'export LC_ALL=C; ' + ((pathToIp) ? pathToIp + ' link show up' : '/sbin/ifconfig') + '; unset LC_ALL';
|
|
145
|
+
let res = execSync(cmd);
|
|
146
|
+
const lines = res.toString().split('\n');
|
|
147
|
+
for (let i = 0; i < lines.length; i++) {
|
|
148
|
+
if (lines[i] && lines[i][0] !== ' ') {
|
|
149
|
+
if (pathToIp) {
|
|
150
|
+
let nextline = lines[i + 1].trim().split(' ');
|
|
151
|
+
if (nextline[0] === 'link/ether') {
|
|
152
|
+
iface = lines[i].split(' ')[1];
|
|
153
|
+
iface = iface.slice(0, iface.length - 1);
|
|
154
|
+
mac = nextline[1];
|
|
155
|
+
}
|
|
156
|
+
} else {
|
|
157
|
+
iface = lines[i].split(' ')[0];
|
|
158
|
+
mac = lines[i].split('HWaddr ')[1];
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
if (iface && mac) {
|
|
162
|
+
result[iface] = mac.trim();
|
|
163
|
+
iface = '';
|
|
164
|
+
mac = '';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
} catch (e) {
|
|
169
|
+
util.noop();
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
if (_darwin) {
|
|
173
|
+
try {
|
|
174
|
+
const cmd = '/sbin/ifconfig';
|
|
175
|
+
let res = execSync(cmd);
|
|
176
|
+
const lines = res.toString().split('\n');
|
|
177
|
+
for (let i = 0; i < lines.length; i++) {
|
|
178
|
+
if (lines[i] && lines[i][0] !== '\t' && lines[i].indexOf(':') > 0) {
|
|
179
|
+
iface = lines[i].split(':')[0];
|
|
180
|
+
} else if (lines[i].indexOf('\tether ') === 0) {
|
|
181
|
+
mac = lines[i].split('\tether ')[1];
|
|
182
|
+
if (iface && mac) {
|
|
183
|
+
result[iface] = mac.trim();
|
|
184
|
+
iface = '';
|
|
185
|
+
mac = '';
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
} catch (e) {
|
|
190
|
+
util.noop();
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
return result;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
function networkInterfaceDefault(callback) {
|
|
197
|
+
|
|
198
|
+
return new Promise((resolve) => {
|
|
199
|
+
process.nextTick(() => {
|
|
200
|
+
let result = getDefaultNetworkInterface();
|
|
201
|
+
if (callback) { callback(result); }
|
|
202
|
+
resolve(result);
|
|
203
|
+
});
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
exports.networkInterfaceDefault = networkInterfaceDefault;
|
|
208
|
+
|
|
209
|
+
// --------------------------
|
|
210
|
+
// NET - interfaces
|
|
211
|
+
|
|
212
|
+
function parseLinesWindowsNics(sections, nconfigsections) {
|
|
213
|
+
let nics = [];
|
|
214
|
+
for (let i in sections) {
|
|
215
|
+
if ({}.hasOwnProperty.call(sections, i)) {
|
|
216
|
+
|
|
217
|
+
if (sections[i].trim() !== '') {
|
|
218
|
+
|
|
219
|
+
let lines = sections[i].trim().split('\r\n');
|
|
220
|
+
let linesNicConfig = nconfigsections[i].trim().split('\r\n');
|
|
221
|
+
let netEnabled = util.getValue(lines, 'NetEnabled', ':');
|
|
222
|
+
let adapterType = util.getValue(lines, 'AdapterTypeID', ':') === '9' ? 'wireless' : 'wired';
|
|
223
|
+
let ifacename = util.getValue(lines, 'Name', ':').replace(/\]/g, ')').replace(/\[/g, '(');
|
|
224
|
+
let iface = util.getValue(lines, 'NetConnectionID', ':').replace(/\]/g, ')').replace(/\[/g, '(');
|
|
225
|
+
if (ifacename.toLowerCase().indexOf('wi-fi') >= 0 || ifacename.toLowerCase().indexOf('wireless') >= 0) {
|
|
226
|
+
adapterType = 'wireless';
|
|
227
|
+
}
|
|
228
|
+
if (netEnabled !== '') {
|
|
229
|
+
const speed = parseInt(util.getValue(lines, 'speed', ':').trim(), 10) / 1000000;
|
|
230
|
+
nics.push({
|
|
231
|
+
mac: util.getValue(lines, 'MACAddress', ':').toLowerCase(),
|
|
232
|
+
dhcp: util.getValue(linesNicConfig, 'dhcpEnabled', ':').toLowerCase() === 'true',
|
|
233
|
+
name: ifacename,
|
|
234
|
+
iface,
|
|
235
|
+
netEnabled: netEnabled === 'TRUE',
|
|
236
|
+
speed: isNaN(speed) ? null : speed,
|
|
237
|
+
operstate: util.getValue(lines, 'NetConnectionStatus', ':') === '2' ? 'up' : 'down',
|
|
238
|
+
type: adapterType
|
|
239
|
+
});
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
return nics;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
function getWindowsNics() {
|
|
248
|
+
// const cmd = util.getWmic() + ' nic get /value';
|
|
249
|
+
// const cmdnicconfig = util.getWmic() + ' nicconfig get dhcpEnabled /value';
|
|
250
|
+
return new Promise((resolve) => {
|
|
251
|
+
process.nextTick(() => {
|
|
252
|
+
let cmd = 'Get-WmiObject Win32_NetworkAdapter | fl *' + '; echo \'#-#-#-#\';';
|
|
253
|
+
cmd += 'Get-WmiObject Win32_NetworkAdapterConfiguration | fl DHCPEnabled' + '';
|
|
254
|
+
try {
|
|
255
|
+
util.powerShell(cmd).then(data => {
|
|
256
|
+
data = data.split('#-#-#-#');
|
|
257
|
+
const nsections = data[0].split(/\n\s*\n/);
|
|
258
|
+
const nconfigsections = data[1].split(/\n\s*\n/);
|
|
259
|
+
resolve(parseLinesWindowsNics(nsections, nconfigsections));
|
|
260
|
+
});
|
|
261
|
+
} catch (e) {
|
|
262
|
+
resolve([]);
|
|
263
|
+
}
|
|
264
|
+
});
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
function getWindowsDNSsuffixes() {
|
|
269
|
+
|
|
270
|
+
let iface = {};
|
|
271
|
+
|
|
272
|
+
let dnsSuffixes = {
|
|
273
|
+
primaryDNS: '',
|
|
274
|
+
exitCode: 0,
|
|
275
|
+
ifaces: [],
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
try {
|
|
279
|
+
const ipconfig = execSync('ipconfig /all', util.execOptsWin);
|
|
280
|
+
const ipconfigArray = ipconfig.split('\r\n\r\n');
|
|
281
|
+
|
|
282
|
+
ipconfigArray.forEach((element, index) => {
|
|
283
|
+
|
|
284
|
+
if (index == 1) {
|
|
285
|
+
const longPrimaryDNS = element.split('\r\n').filter((element) => {
|
|
286
|
+
return element.toUpperCase().includes('DNS');
|
|
287
|
+
});
|
|
288
|
+
const primaryDNS = longPrimaryDNS[0].substring(longPrimaryDNS[0].lastIndexOf(':') + 1);
|
|
289
|
+
dnsSuffixes.primaryDNS = primaryDNS.trim();
|
|
290
|
+
if (!dnsSuffixes.primaryDNS) { dnsSuffixes.primaryDNS = 'Not defined'; }
|
|
291
|
+
}
|
|
292
|
+
if (index > 1) {
|
|
293
|
+
if (index % 2 == 0) {
|
|
294
|
+
const name = element.substring(element.lastIndexOf(' ') + 1).replace(':', '');
|
|
295
|
+
iface.name = name;
|
|
296
|
+
} else {
|
|
297
|
+
const connectionSpecificDNS = element.split('\r\n').filter((element) => {
|
|
298
|
+
return element.toUpperCase().includes('DNS');
|
|
299
|
+
});
|
|
300
|
+
const dnsSuffix = connectionSpecificDNS[0].substring(connectionSpecificDNS[0].lastIndexOf(':') + 1);
|
|
301
|
+
iface.dnsSuffix = dnsSuffix.trim();
|
|
302
|
+
dnsSuffixes.ifaces.push(iface);
|
|
303
|
+
iface = {};
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
return dnsSuffixes;
|
|
309
|
+
} catch (error) {
|
|
310
|
+
// console.log('An error occurred trying to bring the Connection-specific DNS suffix', error.message);
|
|
311
|
+
return {
|
|
312
|
+
primaryDNS: '',
|
|
313
|
+
exitCode: 0,
|
|
314
|
+
ifaces: [],
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function getWindowsIfaceDNSsuffix(ifaces, ifacename) {
|
|
320
|
+
let dnsSuffix = '';
|
|
321
|
+
// Adding (.) to ensure ifacename compatibility when duplicated iface-names
|
|
322
|
+
const interfaceName = ifacename + '.';
|
|
323
|
+
try {
|
|
324
|
+
const connectionDnsSuffix = ifaces.filter((iface) => {
|
|
325
|
+
return interfaceName.includes(iface.name + '.');
|
|
326
|
+
}).map((iface) => iface.dnsSuffix);
|
|
327
|
+
if (connectionDnsSuffix[0]) {
|
|
328
|
+
dnsSuffix = connectionDnsSuffix[0];
|
|
329
|
+
}
|
|
330
|
+
if (!dnsSuffix) { dnsSuffix = ''; }
|
|
331
|
+
return dnsSuffix;
|
|
332
|
+
} catch (error) {
|
|
333
|
+
// console.log('Error getting Connection-specific DNS suffix: ', error.message);
|
|
334
|
+
return 'Unknown';
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
function getWindowsWiredProfilesInformation() {
|
|
339
|
+
try {
|
|
340
|
+
const result = execSync('netsh lan show profiles', util.execOptsWin);
|
|
341
|
+
const profileList = result.split('\r\nProfile on interface');
|
|
342
|
+
return profileList;
|
|
343
|
+
} catch (error) {
|
|
344
|
+
if (error.status === 1 && error.stdout.includes('AutoConfig')) {
|
|
345
|
+
return 'Disabled';
|
|
346
|
+
}
|
|
347
|
+
return [];
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
function getWindowsWirelessIfaceSSID(interfaceName) {
|
|
352
|
+
try {
|
|
353
|
+
const result = execSync(`netsh wlan show interface name="${interfaceName}" | findstr "SSID"`, util.execOptsWin);
|
|
354
|
+
const SSID = result.split('\r\n').shift();
|
|
355
|
+
const parseSSID = SSID.split(':').pop();
|
|
356
|
+
return parseSSID;
|
|
357
|
+
} catch (error) {
|
|
358
|
+
return 'Unknown';
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
function getWindowsIEEE8021x(connectionType, iface, ifaces) {
|
|
362
|
+
let i8021x = {
|
|
363
|
+
state: 'Unknown',
|
|
364
|
+
protocol: 'Unknown',
|
|
365
|
+
};
|
|
366
|
+
|
|
367
|
+
if (ifaces === 'Disabled') {
|
|
368
|
+
i8021x.state = 'Disabled';
|
|
369
|
+
i8021x.protocol = 'Not defined';
|
|
370
|
+
return i8021x;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
if (connectionType == 'wired' && ifaces.length > 0) {
|
|
374
|
+
try {
|
|
375
|
+
// Get 802.1x information by interface name
|
|
376
|
+
const iface8021xInfo = ifaces.find((element) => {
|
|
377
|
+
return element.includes(iface + '\r\n');
|
|
378
|
+
});
|
|
379
|
+
const arrayIface8021xInfo = iface8021xInfo.split('\r\n');
|
|
380
|
+
const state8021x = arrayIface8021xInfo.find((element) => {
|
|
381
|
+
return element.includes('802.1x');
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
if (state8021x.includes('Disabled')) {
|
|
385
|
+
i8021x.state = 'Disabled';
|
|
386
|
+
i8021x.protocol = 'Not defined';
|
|
387
|
+
} else if (state8021x.includes('Enabled')) {
|
|
388
|
+
const protocol8021x = arrayIface8021xInfo.find((element) => {
|
|
389
|
+
return element.includes('EAP');
|
|
390
|
+
});
|
|
391
|
+
i8021x.protocol = protocol8021x.split(':').pop();
|
|
392
|
+
i8021x.state = 'Enabled';
|
|
393
|
+
}
|
|
394
|
+
} catch (error) {
|
|
395
|
+
// console.log('Error getting wired information:', error);
|
|
396
|
+
return i8021x;
|
|
397
|
+
}
|
|
398
|
+
} else if (connectionType == 'wireless') {
|
|
399
|
+
|
|
400
|
+
let i8021xState = '';
|
|
401
|
+
let i8021xProtocol = '';
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
try {
|
|
406
|
+
const SSID = getWindowsWirelessIfaceSSID(iface);
|
|
407
|
+
if (SSID !== 'Unknown') {
|
|
408
|
+
i8021xState = execSync(`netsh wlan show profiles "${SSID}" | findstr "802.1X"`, util.execOptsWin);
|
|
409
|
+
i8021xProtocol = execSync(`netsh wlan show profiles "${SSID}" | findstr "EAP"`, util.execOptsWin);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
if (i8021xState.includes(':') && i8021xProtocol.includes(':')) {
|
|
413
|
+
i8021x.state = i8021xState.split(':').pop();
|
|
414
|
+
i8021x.protocol = i8021xProtocol.split(':').pop();
|
|
415
|
+
}
|
|
416
|
+
} catch (error) {
|
|
417
|
+
// console.log('Error getting wireless information:', error);
|
|
418
|
+
if (error.status === 1 && error.stdout.includes('AutoConfig')) {
|
|
419
|
+
i8021x.state = 'Disabled';
|
|
420
|
+
i8021x.protocol = 'Not defined';
|
|
421
|
+
}
|
|
422
|
+
return i8021x;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
return i8021x;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
function splitSectionsNics(lines) {
|
|
430
|
+
const result = [];
|
|
431
|
+
let section = [];
|
|
432
|
+
lines.forEach(function (line) {
|
|
433
|
+
if (!line.startsWith('\t') && !line.startsWith(' ')) {
|
|
434
|
+
if (section.length) {
|
|
435
|
+
result.push(section);
|
|
436
|
+
section = [];
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
section.push(line);
|
|
440
|
+
});
|
|
441
|
+
if (section.length) {
|
|
442
|
+
result.push(section);
|
|
443
|
+
}
|
|
444
|
+
return result;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
function parseLinesDarwinNics(sections) {
|
|
448
|
+
let nics = [];
|
|
449
|
+
sections.forEach(section => {
|
|
450
|
+
let nic = {
|
|
451
|
+
iface: '',
|
|
452
|
+
mtu: null,
|
|
453
|
+
mac: '',
|
|
454
|
+
ip6: '',
|
|
455
|
+
ip4: '',
|
|
456
|
+
speed: null,
|
|
457
|
+
type: '',
|
|
458
|
+
operstate: '',
|
|
459
|
+
duplex: '',
|
|
460
|
+
internal: false
|
|
461
|
+
};
|
|
462
|
+
const first = section[0];
|
|
463
|
+
nic.iface = first.split(':')[0].trim();
|
|
464
|
+
let parts = first.split('> mtu');
|
|
465
|
+
nic.mtu = parts.length > 1 ? parseInt(parts[1], 10) : null;
|
|
466
|
+
if (isNaN(nic.mtu)) {
|
|
467
|
+
nic.mtu = null;
|
|
468
|
+
}
|
|
469
|
+
nic.internal = parts[0].toLowerCase().indexOf('loopback') > -1;
|
|
470
|
+
section.forEach(line => {
|
|
471
|
+
if (line.trim().startsWith('ether ')) {
|
|
472
|
+
nic.mac = line.split('ether ')[1].toLowerCase().trim();
|
|
473
|
+
}
|
|
474
|
+
if (line.trim().startsWith('inet6 ') && !nic.ip6) {
|
|
475
|
+
nic.ip6 = line.split('inet6 ')[1].toLowerCase().split('%')[0].split(' ')[0];
|
|
476
|
+
}
|
|
477
|
+
if (line.trim().startsWith('inet ') && !nic.ip4) {
|
|
478
|
+
nic.ip4 = line.split('inet ')[1].toLowerCase().split(' ')[0];
|
|
479
|
+
}
|
|
480
|
+
});
|
|
481
|
+
let speed = util.getValue(section, 'link rate');
|
|
482
|
+
nic.speed = speed ? parseFloat(speed) : null;
|
|
483
|
+
if (nic.speed === null) {
|
|
484
|
+
speed = util.getValue(section, 'uplink rate');
|
|
485
|
+
nic.speed = speed ? parseFloat(speed) : null;
|
|
486
|
+
if (nic.speed !== null && speed.toLowerCase().indexOf('gbps') >= 0) {
|
|
487
|
+
nic.speed = nic.speed * 1000;
|
|
488
|
+
}
|
|
489
|
+
} else {
|
|
490
|
+
if (speed.toLowerCase().indexOf('gbps') >= 0) {
|
|
491
|
+
nic.speed = nic.speed * 1000;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
nic.type = util.getValue(section, 'type').toLowerCase().indexOf('wi-fi') > -1 ? 'wireless' : 'wired';
|
|
495
|
+
nic.operstate = util.getValue(section, 'status').toLowerCase().indexOf('active') > -1 ? 'up' : 'down';
|
|
496
|
+
nic.duplex = util.getValue(section, 'media').toLowerCase().indexOf('half-duplex') > -1 ? 'half' : 'full';
|
|
497
|
+
if (nic.ip6 || nic.ip4 || nic.mac) {
|
|
498
|
+
nics.push(nic);
|
|
499
|
+
}
|
|
500
|
+
});
|
|
501
|
+
return nics;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
function getDarwinNics() {
|
|
505
|
+
const cmd = '/sbin/ifconfig -v';
|
|
506
|
+
try {
|
|
507
|
+
const lines = execSync(cmd, { maxBuffer: 1024 * 20000 }).toString().split('\n');
|
|
508
|
+
const nsections = splitSectionsNics(lines);
|
|
509
|
+
return (parseLinesDarwinNics(nsections));
|
|
510
|
+
} catch (e) {
|
|
511
|
+
return [];
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
function getLinuxIfaceConnectionName(interfaceName) {
|
|
516
|
+
const cmd = `nmcli device status 2>/dev/null | grep ${interfaceName}`;
|
|
517
|
+
|
|
518
|
+
try {
|
|
519
|
+
const result = execSync(cmd).toString();
|
|
520
|
+
const resultFormat = result.replace(/\s+/g, ' ').trim();
|
|
521
|
+
const connectionNameLines = resultFormat.split(' ').slice(3);
|
|
522
|
+
const connectionName = connectionNameLines.join(' ');
|
|
523
|
+
return connectionName != '--' ? connectionName : '';
|
|
524
|
+
} catch (e) {
|
|
525
|
+
return '';
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
function checkLinuxDCHPInterfaces(file) {
|
|
530
|
+
let result = [];
|
|
531
|
+
try {
|
|
532
|
+
let cmd = `cat ${file} 2> /dev/null | grep 'iface\\|source'`;
|
|
533
|
+
const lines = execSync(cmd, { maxBuffer: 1024 * 20000 }).toString().split('\n');
|
|
534
|
+
|
|
535
|
+
lines.forEach(line => {
|
|
536
|
+
const parts = line.replace(/\s+/g, ' ').trim().split(' ');
|
|
537
|
+
if (parts.length >= 4) {
|
|
538
|
+
if (line.toLowerCase().indexOf(' inet ') >= 0 && line.toLowerCase().indexOf('dhcp') >= 0) {
|
|
539
|
+
result.push(parts[1]);
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
if (line.toLowerCase().includes('source')) {
|
|
543
|
+
let file = line.split(' ')[1];
|
|
544
|
+
result = result.concat(checkLinuxDCHPInterfaces(file));
|
|
545
|
+
}
|
|
546
|
+
});
|
|
547
|
+
} catch (e) {
|
|
548
|
+
util.noop();
|
|
549
|
+
}
|
|
550
|
+
return result;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
function getLinuxDHCPNics() {
|
|
554
|
+
// alternate methods getting interfaces using DHCP
|
|
555
|
+
let cmd = 'ip a 2> /dev/null';
|
|
556
|
+
let result = [];
|
|
557
|
+
try {
|
|
558
|
+
const lines = execSync(cmd, { maxBuffer: 1024 * 20000 }).toString().split('\n');
|
|
559
|
+
const nsections = splitSectionsNics(lines);
|
|
560
|
+
result = (parseLinuxDHCPNics(nsections));
|
|
561
|
+
} catch (e) {
|
|
562
|
+
util.noop();
|
|
563
|
+
}
|
|
564
|
+
try {
|
|
565
|
+
result = checkLinuxDCHPInterfaces('/etc/network/interfaces');
|
|
566
|
+
} catch (e) {
|
|
567
|
+
util.noop();
|
|
568
|
+
}
|
|
569
|
+
return result;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
function parseLinuxDHCPNics(sections) {
|
|
573
|
+
const result = [];
|
|
574
|
+
if (sections && sections.length) {
|
|
575
|
+
sections.forEach(lines => {
|
|
576
|
+
if (lines && lines.length) {
|
|
577
|
+
const parts = lines[0].split(':');
|
|
578
|
+
if (parts.length > 2) {
|
|
579
|
+
for (let line of lines) {
|
|
580
|
+
if (line.indexOf(' inet ') >= 0 && line.indexOf(' dynamic ') >= 0) {
|
|
581
|
+
const parts2 = line.split(' ');
|
|
582
|
+
const nic = parts2[parts2.length - 1].trim();
|
|
583
|
+
result.push(nic);
|
|
584
|
+
break;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
});
|
|
590
|
+
}
|
|
591
|
+
return result;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
function getLinuxIfaceDHCPstatus(iface, connectionName, DHCPNics) {
|
|
595
|
+
let result = false;
|
|
596
|
+
if (connectionName) {
|
|
597
|
+
const cmd = `nmcli connection show "${connectionName}" 2>/dev/null | grep ipv4.method;`;
|
|
598
|
+
try {
|
|
599
|
+
const lines = execSync(cmd).toString();
|
|
600
|
+
const resultFormat = lines.replace(/\s+/g, ' ').trim();
|
|
601
|
+
|
|
602
|
+
let dhcStatus = resultFormat.split(' ').slice(1).toString();
|
|
603
|
+
switch (dhcStatus) {
|
|
604
|
+
case 'auto':
|
|
605
|
+
result = true;
|
|
606
|
+
break;
|
|
607
|
+
|
|
608
|
+
default:
|
|
609
|
+
result = false;
|
|
610
|
+
break;
|
|
611
|
+
}
|
|
612
|
+
return result;
|
|
613
|
+
} catch (e) {
|
|
614
|
+
return (DHCPNics.indexOf(iface) >= 0);
|
|
615
|
+
}
|
|
616
|
+
} else {
|
|
617
|
+
return (DHCPNics.indexOf(iface) >= 0);
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
function getDarwinIfaceDHCPstatus(iface) {
|
|
622
|
+
let result = false;
|
|
623
|
+
const cmd = `ipconfig getpacket "${iface}" 2>/dev/null | grep lease_time;`;
|
|
624
|
+
try {
|
|
625
|
+
const lines = execSync(cmd).toString().split('\n');
|
|
626
|
+
if (lines.length && lines[0].startsWith('lease_time')) {
|
|
627
|
+
result = true;
|
|
628
|
+
}
|
|
629
|
+
} catch (e) {
|
|
630
|
+
util.noop();
|
|
631
|
+
}
|
|
632
|
+
return result;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
function getLinuxIfaceDNSsuffix(connectionName) {
|
|
636
|
+
if (connectionName) {
|
|
637
|
+
const cmd = `nmcli connection show "${connectionName}" 2>/dev/null | grep ipv4.dns-search;`;
|
|
638
|
+
try {
|
|
639
|
+
const result = execSync(cmd).toString();
|
|
640
|
+
const resultFormat = result.replace(/\s+/g, ' ').trim();
|
|
641
|
+
const dnsSuffix = resultFormat.split(' ').slice(1).toString();
|
|
642
|
+
return dnsSuffix == '--' ? 'Not defined' : dnsSuffix;
|
|
643
|
+
} catch (e) {
|
|
644
|
+
return 'Unknown';
|
|
645
|
+
}
|
|
646
|
+
} else {
|
|
647
|
+
return 'Unknown';
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
function getLinuxIfaceIEEE8021xAuth(connectionName) {
|
|
652
|
+
if (connectionName) {
|
|
653
|
+
const cmd = `nmcli connection show "${connectionName}" 2>/dev/null | grep 802-1x.eap;`;
|
|
654
|
+
try {
|
|
655
|
+
const result = execSync(cmd).toString();
|
|
656
|
+
const resultFormat = result.replace(/\s+/g, ' ').trim();
|
|
657
|
+
const authenticationProtocol = resultFormat.split(' ').slice(1).toString();
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
return authenticationProtocol == '--' ? '' : authenticationProtocol;
|
|
661
|
+
} catch (e) {
|
|
662
|
+
return 'Not defined';
|
|
663
|
+
}
|
|
664
|
+
} else {
|
|
665
|
+
return 'Not defined';
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
function getLinuxIfaceIEEE8021xState(authenticationProtocol) {
|
|
670
|
+
if (authenticationProtocol) {
|
|
671
|
+
if (authenticationProtocol == 'Not defined') {
|
|
672
|
+
return 'Disabled';
|
|
673
|
+
}
|
|
674
|
+
return 'Enabled';
|
|
675
|
+
} else {
|
|
676
|
+
return 'Unknown';
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
function testVirtualNic(iface, ifaceName, mac) {
|
|
681
|
+
const virtualMacs = ['00:00:00:00:00:00', '00:03:FF', '00:05:69', '00:0C:29', '00:0F:4B', '00:0F:4B', '00:13:07', '00:13:BE', '00:15:5d', '00:16:3E', '00:1C:42', '00:21:F6', '00:21:F6', '00:24:0B', '00:24:0B', '00:50:56', '00:A0:B1', '00:E0:C8', '08:00:27', '0A:00:27', '18:92:2C', '16:DF:49', '3C:F3:92', '54:52:00', 'FC:15:97'];
|
|
682
|
+
if (mac) {
|
|
683
|
+
return virtualMacs.filter(item => { return mac.toUpperCase().toUpperCase().startsWith(item.substr(0, mac.length)); }).length > 0 ||
|
|
684
|
+
iface.toLowerCase().indexOf(' virtual ') > -1 ||
|
|
685
|
+
ifaceName.toLowerCase().indexOf(' virtual ') > -1 ||
|
|
686
|
+
iface.toLowerCase().indexOf('vethernet ') > -1 ||
|
|
687
|
+
ifaceName.toLowerCase().indexOf('vethernet ') > -1 ||
|
|
688
|
+
iface.toLowerCase().startsWith('veth') ||
|
|
689
|
+
ifaceName.toLowerCase().startsWith('veth') ||
|
|
690
|
+
iface.toLowerCase().startsWith('vboxnet') ||
|
|
691
|
+
ifaceName.toLowerCase().startsWith('vboxnet');
|
|
692
|
+
} else { return false; }
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
function networkInterfaces(callback, rescan, defaultString) {
|
|
696
|
+
|
|
697
|
+
if (typeof callback === 'string') {
|
|
698
|
+
defaultString = callback;
|
|
699
|
+
rescan = true;
|
|
700
|
+
callback = null;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
if (typeof callback === 'boolean') {
|
|
704
|
+
rescan = callback;
|
|
705
|
+
callback = null;
|
|
706
|
+
defaultString = '';
|
|
707
|
+
}
|
|
708
|
+
if (typeof rescan === 'undefined') {
|
|
709
|
+
rescan = true;
|
|
710
|
+
}
|
|
711
|
+
defaultString = defaultString || '';
|
|
712
|
+
defaultString = '' + defaultString;
|
|
713
|
+
|
|
714
|
+
return new Promise((resolve) => {
|
|
715
|
+
process.nextTick(() => {
|
|
716
|
+
const defaultInterface = getDefaultNetworkInterface();
|
|
717
|
+
|
|
718
|
+
let ifaces = os.networkInterfaces();
|
|
719
|
+
|
|
720
|
+
let result = [];
|
|
721
|
+
let nics = [];
|
|
722
|
+
let dnsSuffixes = [];
|
|
723
|
+
let nics8021xInfo = [];
|
|
724
|
+
// seperate handling in OSX
|
|
725
|
+
if (_darwin || _freebsd || _openbsd || _netbsd) {
|
|
726
|
+
nics = getDarwinNics();
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
nics.forEach(nic => {
|
|
730
|
+
|
|
731
|
+
if ({}.hasOwnProperty.call(ifaces, nic.iface)) {
|
|
732
|
+
ifaces[nic.iface].forEach(function (details) {
|
|
733
|
+
if (details.family === 'IPv4') {
|
|
734
|
+
nic.ip4subnet = details.netmask;
|
|
735
|
+
}
|
|
736
|
+
if (details.family === 'IPv6') {
|
|
737
|
+
nic.ip6subnet = details.netmask;
|
|
738
|
+
}
|
|
739
|
+
});
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
result.push({
|
|
743
|
+
iface: nic.iface,
|
|
744
|
+
ifaceName: nic.iface,
|
|
745
|
+
default: nic.iface === defaultInterface,
|
|
746
|
+
ip4: nic.ip4,
|
|
747
|
+
ip4subnet: nic.ip4subnet || '',
|
|
748
|
+
ip6: nic.ip6,
|
|
749
|
+
ip6subnet: nic.ip6subnet || '',
|
|
750
|
+
mac: nic.mac,
|
|
751
|
+
internal: nic.internal,
|
|
752
|
+
virtual: nic.internal ? false : testVirtualNic(nic.iface, nic.iface, nic.mac),
|
|
753
|
+
operstate: nic.operstate,
|
|
754
|
+
type: nic.type,
|
|
755
|
+
duplex: nic.duplex,
|
|
756
|
+
mtu: nic.mtu,
|
|
757
|
+
speed: nic.speed,
|
|
758
|
+
dhcp: getDarwinIfaceDHCPstatus(nic.iface),
|
|
759
|
+
dnsSuffix: '',
|
|
760
|
+
ieee8021xAuth: '',
|
|
761
|
+
ieee8021xState: '',
|
|
762
|
+
carrierChanges: 0
|
|
763
|
+
});
|
|
764
|
+
});
|
|
765
|
+
_networkInterfaces = result;
|
|
766
|
+
if (defaultString.toLowerCase().indexOf('default') >= 0) {
|
|
767
|
+
result = result.filter(item => item.default);
|
|
768
|
+
if (result.length > 0) {
|
|
769
|
+
result = result[0];
|
|
770
|
+
} else {
|
|
771
|
+
result = [];
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
if (callback) { callback(result); }
|
|
775
|
+
resolve(result);
|
|
776
|
+
}
|
|
777
|
+
if (_linux) {
|
|
778
|
+
if ((JSON.stringify(ifaces) === JSON.stringify(_ifaces)) && !rescan) {
|
|
779
|
+
// no changes - just return object
|
|
780
|
+
result = _networkInterfaces;
|
|
781
|
+
|
|
782
|
+
if (callback) { callback(result); }
|
|
783
|
+
resolve(result);
|
|
784
|
+
} else {
|
|
785
|
+
_ifaces = JSON.parse(JSON.stringify(ifaces));
|
|
786
|
+
_dhcpNics = getLinuxDHCPNics();
|
|
787
|
+
for (let dev in ifaces) {
|
|
788
|
+
let ip4 = '';
|
|
789
|
+
let ip4subnet = '';
|
|
790
|
+
let ip6 = '';
|
|
791
|
+
let ip6subnet = '';
|
|
792
|
+
let mac = '';
|
|
793
|
+
let duplex = '';
|
|
794
|
+
let mtu = '';
|
|
795
|
+
let speed = null;
|
|
796
|
+
let carrierChanges = 0;
|
|
797
|
+
let dhcp = false;
|
|
798
|
+
let dnsSuffix = '';
|
|
799
|
+
let ieee8021xAuth = '';
|
|
800
|
+
let ieee8021xState = '';
|
|
801
|
+
let type = '';
|
|
802
|
+
|
|
803
|
+
if ({}.hasOwnProperty.call(ifaces, dev)) {
|
|
804
|
+
let ifaceName = dev;
|
|
805
|
+
ifaces[dev].forEach(function (details) {
|
|
806
|
+
if (details.family === 'IPv4') {
|
|
807
|
+
ip4 = details.address;
|
|
808
|
+
ip4subnet = details.netmask;
|
|
809
|
+
}
|
|
810
|
+
if (details.family === 'IPv6') {
|
|
811
|
+
if (!ip6 || ip6.match(/^fe80::/i)) {
|
|
812
|
+
ip6 = details.address;
|
|
813
|
+
ip6subnet = details.netmask;
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
mac = details.mac;
|
|
817
|
+
// fallback due to https://github.com/nodejs/node/issues/13581 (node 8.1 - node 8.2)
|
|
818
|
+
const nodeMainVersion = parseInt(process.versions.node.split('.'), 10);
|
|
819
|
+
if (mac.indexOf('00:00:0') > -1 && (_linux || _darwin) && (!details.internal) && nodeMainVersion >= 8 && nodeMainVersion <= 11) {
|
|
820
|
+
if (Object.keys(_mac).length === 0) {
|
|
821
|
+
_mac = getMacAddresses();
|
|
822
|
+
}
|
|
823
|
+
mac = _mac[dev] || '';
|
|
824
|
+
}
|
|
825
|
+
});
|
|
826
|
+
let iface = dev.split(':')[0].trim().toLowerCase();
|
|
827
|
+
const cmd = `echo -n "addr_assign_type: "; cat /sys/class/net/${iface}/addr_assign_type 2>/dev/null; echo;
|
|
828
|
+
echo -n "address: "; cat /sys/class/net/${iface}/address 2>/dev/null; echo;
|
|
829
|
+
echo -n "addr_len: "; cat /sys/class/net/${iface}/addr_len 2>/dev/null; echo;
|
|
830
|
+
echo -n "broadcast: "; cat /sys/class/net/${iface}/broadcast 2>/dev/null; echo;
|
|
831
|
+
echo -n "carrier: "; cat /sys/class/net/${iface}/carrier 2>/dev/null; echo;
|
|
832
|
+
echo -n "carrier_changes: "; cat /sys/class/net/${iface}/carrier_changes 2>/dev/null; echo;
|
|
833
|
+
echo -n "dev_id: "; cat /sys/class/net/${iface}/dev_id 2>/dev/null; echo;
|
|
834
|
+
echo -n "dev_port: "; cat /sys/class/net/${iface}/dev_port 2>/dev/null; echo;
|
|
835
|
+
echo -n "dormant: "; cat /sys/class/net/${iface}/dormant 2>/dev/null; echo;
|
|
836
|
+
echo -n "duplex: "; cat /sys/class/net/${iface}/duplex 2>/dev/null; echo;
|
|
837
|
+
echo -n "flags: "; cat /sys/class/net/${iface}/flags 2>/dev/null; echo;
|
|
838
|
+
echo -n "gro_flush_timeout: "; cat /sys/class/net/${iface}/gro_flush_timeout 2>/dev/null; echo;
|
|
839
|
+
echo -n "ifalias: "; cat /sys/class/net/${iface}/ifalias 2>/dev/null; echo;
|
|
840
|
+
echo -n "ifindex: "; cat /sys/class/net/${iface}/ifindex 2>/dev/null; echo;
|
|
841
|
+
echo -n "iflink: "; cat /sys/class/net/${iface}/iflink 2>/dev/null; echo;
|
|
842
|
+
echo -n "link_mode: "; cat /sys/class/net/${iface}/link_mode 2>/dev/null; echo;
|
|
843
|
+
echo -n "mtu: "; cat /sys/class/net/${iface}/mtu 2>/dev/null; echo;
|
|
844
|
+
echo -n "netdev_group: "; cat /sys/class/net/${iface}/netdev_group 2>/dev/null; echo;
|
|
845
|
+
echo -n "operstate: "; cat /sys/class/net/${iface}/operstate 2>/dev/null; echo;
|
|
846
|
+
echo -n "proto_down: "; cat /sys/class/net/${iface}/proto_down 2>/dev/null; echo;
|
|
847
|
+
echo -n "speed: "; cat /sys/class/net/${iface}/speed 2>/dev/null; echo;
|
|
848
|
+
echo -n "tx_queue_len: "; cat /sys/class/net/${iface}/tx_queue_len 2>/dev/null; echo;
|
|
849
|
+
echo -n "type: "; cat /sys/class/net/${iface}/type 2>/dev/null; echo;
|
|
850
|
+
echo -n "wireless: "; cat /proc/net/wireless 2>/dev/null | grep ${iface}; echo;
|
|
851
|
+
echo -n "wirelessspeed: "; iw dev ${iface} link 2>&1 | grep bitrate; echo;`;
|
|
852
|
+
|
|
853
|
+
let lines = [];
|
|
854
|
+
try {
|
|
855
|
+
lines = execSync(cmd).toString().split('\n');
|
|
856
|
+
const connectionName = getLinuxIfaceConnectionName(iface);
|
|
857
|
+
dhcp = getLinuxIfaceDHCPstatus(iface, connectionName, _dhcpNics);
|
|
858
|
+
dnsSuffix = getLinuxIfaceDNSsuffix(connectionName);
|
|
859
|
+
ieee8021xAuth = getLinuxIfaceIEEE8021xAuth(connectionName);
|
|
860
|
+
ieee8021xState = getLinuxIfaceIEEE8021xState(ieee8021xAuth);
|
|
861
|
+
} catch (e) {
|
|
862
|
+
util.noop();
|
|
863
|
+
}
|
|
864
|
+
duplex = util.getValue(lines, 'duplex');
|
|
865
|
+
duplex = duplex.startsWith('cat') ? '' : duplex;
|
|
866
|
+
mtu = parseInt(util.getValue(lines, 'mtu'), 10);
|
|
867
|
+
let myspeed = parseInt(util.getValue(lines, 'speed'), 10);
|
|
868
|
+
speed = isNaN(myspeed) ? null : myspeed;
|
|
869
|
+
let wirelessspeed = util.getValue(lines, 'wirelessspeed').split('tx bitrate: ');
|
|
870
|
+
if (speed === null && wirelessspeed.length === 2) {
|
|
871
|
+
myspeed = parseFloat(wirelessspeed[1]);
|
|
872
|
+
speed = isNaN(myspeed) ? null : myspeed;
|
|
873
|
+
}
|
|
874
|
+
carrierChanges = parseInt(util.getValue(lines, 'carrier_changes'), 10);
|
|
875
|
+
const operstate = util.getValue(lines, 'operstate');
|
|
876
|
+
type = operstate === 'up' ? (util.getValue(lines, 'wireless').trim() ? 'wireless' : 'wired') : 'unknown';
|
|
877
|
+
if (iface === 'lo' || iface.startsWith('bond')) { type = 'virtual'; }
|
|
878
|
+
|
|
879
|
+
let internal = (ifaces[dev] && ifaces[dev][0]) ? ifaces[dev][0].internal : false;
|
|
880
|
+
if (dev.toLowerCase().indexOf('loopback') > -1 || ifaceName.toLowerCase().indexOf('loopback') > -1) {
|
|
881
|
+
internal = true;
|
|
882
|
+
}
|
|
883
|
+
const virtual = internal ? false : testVirtualNic(dev, ifaceName, mac);
|
|
884
|
+
result.push({
|
|
885
|
+
iface,
|
|
886
|
+
ifaceName,
|
|
887
|
+
default: iface === defaultInterface,
|
|
888
|
+
ip4,
|
|
889
|
+
ip4subnet,
|
|
890
|
+
ip6,
|
|
891
|
+
ip6subnet,
|
|
892
|
+
mac,
|
|
893
|
+
internal,
|
|
894
|
+
virtual,
|
|
895
|
+
operstate,
|
|
896
|
+
type,
|
|
897
|
+
duplex,
|
|
898
|
+
mtu,
|
|
899
|
+
speed,
|
|
900
|
+
dhcp,
|
|
901
|
+
dnsSuffix,
|
|
902
|
+
ieee8021xAuth,
|
|
903
|
+
ieee8021xState,
|
|
904
|
+
carrierChanges,
|
|
905
|
+
});
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
_networkInterfaces = result;
|
|
909
|
+
if (defaultString.toLowerCase().indexOf('default') >= 0) {
|
|
910
|
+
result = result.filter(item => item.default);
|
|
911
|
+
if (result.length > 0) {
|
|
912
|
+
result = result[0];
|
|
913
|
+
} else {
|
|
914
|
+
result = [];
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
if (callback) { callback(result); }
|
|
918
|
+
resolve(result);
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
if (_windows) {
|
|
922
|
+
if ((JSON.stringify(ifaces) === JSON.stringify(_ifaces)) && !rescan) {
|
|
923
|
+
// no changes - just return object
|
|
924
|
+
result = _networkInterfaces;
|
|
925
|
+
|
|
926
|
+
if (callback) { callback(result); }
|
|
927
|
+
resolve(result);
|
|
928
|
+
} else {
|
|
929
|
+
_ifaces = JSON.parse(JSON.stringify(ifaces));
|
|
930
|
+
|
|
931
|
+
getWindowsNics().then(function (nics) {
|
|
932
|
+
nics.forEach(nic => {
|
|
933
|
+
let found = false;
|
|
934
|
+
Object.keys(ifaces).forEach(key => {
|
|
935
|
+
if (!found) {
|
|
936
|
+
ifaces[key].forEach(value => {
|
|
937
|
+
if (Object.keys(value).indexOf('mac') >= 0) {
|
|
938
|
+
found = value['mac'] === nic.mac;
|
|
939
|
+
}
|
|
940
|
+
});
|
|
941
|
+
}
|
|
942
|
+
});
|
|
943
|
+
|
|
944
|
+
if (!found) {
|
|
945
|
+
ifaces[nic.name] = [{ mac: nic.mac }];
|
|
946
|
+
}
|
|
947
|
+
});
|
|
948
|
+
nics8021xInfo = getWindowsWiredProfilesInformation();
|
|
949
|
+
dnsSuffixes = getWindowsDNSsuffixes();
|
|
950
|
+
for (let dev in ifaces) {
|
|
951
|
+
let iface = dev;
|
|
952
|
+
let ip4 = '';
|
|
953
|
+
let ip4subnet = '';
|
|
954
|
+
let ip6 = '';
|
|
955
|
+
let ip6subnet = '';
|
|
956
|
+
let mac = '';
|
|
957
|
+
let duplex = '';
|
|
958
|
+
let mtu = '';
|
|
959
|
+
let speed = null;
|
|
960
|
+
let carrierChanges = 0;
|
|
961
|
+
let operstate = 'down';
|
|
962
|
+
let dhcp = false;
|
|
963
|
+
let dnsSuffix = '';
|
|
964
|
+
let ieee8021xAuth = '';
|
|
965
|
+
let ieee8021xState = '';
|
|
966
|
+
let type = '';
|
|
967
|
+
|
|
968
|
+
if ({}.hasOwnProperty.call(ifaces, dev)) {
|
|
969
|
+
let ifaceName = dev;
|
|
970
|
+
ifaces[dev].forEach(function (details) {
|
|
971
|
+
if (details.family === 'IPv4') {
|
|
972
|
+
ip4 = details.address;
|
|
973
|
+
ip4subnet = details.netmask;
|
|
974
|
+
}
|
|
975
|
+
if (details.family === 'IPv6') {
|
|
976
|
+
if (!ip6 || ip6.match(/^fe80::/i)) {
|
|
977
|
+
ip6 = details.address;
|
|
978
|
+
ip6subnet = details.netmask;
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
mac = details.mac;
|
|
982
|
+
// fallback due to https://github.com/nodejs/node/issues/13581 (node 8.1 - node 8.2)
|
|
983
|
+
const nodeMainVersion = parseInt(process.versions.node.split('.'), 10);
|
|
984
|
+
if (mac.indexOf('00:00:0') > -1 && (_linux || _darwin) && (!details.internal) && nodeMainVersion >= 8 && nodeMainVersion <= 11) {
|
|
985
|
+
if (Object.keys(_mac).length === 0) {
|
|
986
|
+
_mac = getMacAddresses();
|
|
987
|
+
}
|
|
988
|
+
mac = _mac[dev] || '';
|
|
989
|
+
}
|
|
990
|
+
});
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
dnsSuffix = getWindowsIfaceDNSsuffix(dnsSuffixes.ifaces, dev);
|
|
995
|
+
let foundFirst = false;
|
|
996
|
+
nics.forEach(detail => {
|
|
997
|
+
if (detail.mac === mac && !foundFirst) {
|
|
998
|
+
iface = detail.iface || iface;
|
|
999
|
+
ifaceName = detail.name;
|
|
1000
|
+
dhcp = detail.dhcp;
|
|
1001
|
+
operstate = detail.operstate;
|
|
1002
|
+
speed = detail.speed;
|
|
1003
|
+
type = detail.type;
|
|
1004
|
+
foundFirst = true;
|
|
1005
|
+
}
|
|
1006
|
+
});
|
|
1007
|
+
|
|
1008
|
+
if (dev.toLowerCase().indexOf('wlan') >= 0 || ifaceName.toLowerCase().indexOf('wlan') >= 0 || ifaceName.toLowerCase().indexOf('802.11n') >= 0 || ifaceName.toLowerCase().indexOf('wireless') >= 0 || ifaceName.toLowerCase().indexOf('wi-fi') >= 0 || ifaceName.toLowerCase().indexOf('wifi') >= 0) {
|
|
1009
|
+
type = 'wireless';
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
const IEEE8021x = getWindowsIEEE8021x(type, dev, nics8021xInfo);
|
|
1013
|
+
ieee8021xAuth = IEEE8021x.protocol;
|
|
1014
|
+
ieee8021xState = IEEE8021x.state;
|
|
1015
|
+
let internal = (ifaces[dev] && ifaces[dev][0]) ? ifaces[dev][0].internal : false;
|
|
1016
|
+
if (dev.toLowerCase().indexOf('loopback') > -1 || ifaceName.toLowerCase().indexOf('loopback') > -1) {
|
|
1017
|
+
internal = true;
|
|
1018
|
+
}
|
|
1019
|
+
const virtual = internal ? false : testVirtualNic(dev, ifaceName, mac);
|
|
1020
|
+
result.push({
|
|
1021
|
+
iface,
|
|
1022
|
+
ifaceName,
|
|
1023
|
+
default: iface === defaultInterface,
|
|
1024
|
+
ip4,
|
|
1025
|
+
ip4subnet,
|
|
1026
|
+
ip6,
|
|
1027
|
+
ip6subnet,
|
|
1028
|
+
mac,
|
|
1029
|
+
internal,
|
|
1030
|
+
virtual,
|
|
1031
|
+
operstate,
|
|
1032
|
+
type,
|
|
1033
|
+
duplex,
|
|
1034
|
+
mtu,
|
|
1035
|
+
speed,
|
|
1036
|
+
dhcp,
|
|
1037
|
+
dnsSuffix,
|
|
1038
|
+
ieee8021xAuth,
|
|
1039
|
+
ieee8021xState,
|
|
1040
|
+
carrierChanges,
|
|
1041
|
+
});
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
_networkInterfaces = result;
|
|
1045
|
+
if (defaultString.toLowerCase().indexOf('default') >= 0) {
|
|
1046
|
+
result = result.filter(item => item.default);
|
|
1047
|
+
if (result.length > 0) {
|
|
1048
|
+
result = result[0];
|
|
1049
|
+
} else {
|
|
1050
|
+
result = [];
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
if (callback) { callback(result); }
|
|
1054
|
+
resolve(result);
|
|
1055
|
+
});
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
});
|
|
1059
|
+
});
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
exports.networkInterfaces = networkInterfaces;
|
|
1063
|
+
|
|
1064
|
+
// --------------------------
|
|
1065
|
+
// NET - Speed
|
|
1066
|
+
|
|
1067
|
+
function calcNetworkSpeed(iface, rx_bytes, tx_bytes, operstate, rx_dropped, rx_errors, tx_dropped, tx_errors) {
|
|
1068
|
+
let result = {
|
|
1069
|
+
iface,
|
|
1070
|
+
operstate,
|
|
1071
|
+
rx_bytes,
|
|
1072
|
+
rx_dropped,
|
|
1073
|
+
rx_errors,
|
|
1074
|
+
tx_bytes,
|
|
1075
|
+
tx_dropped,
|
|
1076
|
+
tx_errors,
|
|
1077
|
+
rx_sec: null,
|
|
1078
|
+
tx_sec: null,
|
|
1079
|
+
ms: 0
|
|
1080
|
+
};
|
|
1081
|
+
|
|
1082
|
+
if (_network[iface] && _network[iface].ms) {
|
|
1083
|
+
result.ms = Date.now() - _network[iface].ms;
|
|
1084
|
+
result.rx_sec = (rx_bytes - _network[iface].rx_bytes) >= 0 ? (rx_bytes - _network[iface].rx_bytes) / (result.ms / 1000) : 0;
|
|
1085
|
+
result.tx_sec = (tx_bytes - _network[iface].tx_bytes) >= 0 ? (tx_bytes - _network[iface].tx_bytes) / (result.ms / 1000) : 0;
|
|
1086
|
+
_network[iface].rx_bytes = rx_bytes;
|
|
1087
|
+
_network[iface].tx_bytes = tx_bytes;
|
|
1088
|
+
_network[iface].rx_sec = result.rx_sec;
|
|
1089
|
+
_network[iface].tx_sec = result.tx_sec;
|
|
1090
|
+
_network[iface].ms = Date.now();
|
|
1091
|
+
_network[iface].last_ms = result.ms;
|
|
1092
|
+
_network[iface].operstate = operstate;
|
|
1093
|
+
} else {
|
|
1094
|
+
if (!_network[iface]) { _network[iface] = {}; }
|
|
1095
|
+
_network[iface].rx_bytes = rx_bytes;
|
|
1096
|
+
_network[iface].tx_bytes = tx_bytes;
|
|
1097
|
+
_network[iface].rx_sec = null;
|
|
1098
|
+
_network[iface].tx_sec = null;
|
|
1099
|
+
_network[iface].ms = Date.now();
|
|
1100
|
+
_network[iface].last_ms = 0;
|
|
1101
|
+
_network[iface].operstate = operstate;
|
|
1102
|
+
}
|
|
1103
|
+
return result;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
function networkStats(ifaces, callback) {
|
|
1107
|
+
|
|
1108
|
+
let ifacesArray = [];
|
|
1109
|
+
|
|
1110
|
+
return new Promise((resolve) => {
|
|
1111
|
+
process.nextTick(() => {
|
|
1112
|
+
|
|
1113
|
+
// fallback - if only callback is given
|
|
1114
|
+
if (util.isFunction(ifaces) && !callback) {
|
|
1115
|
+
callback = ifaces;
|
|
1116
|
+
ifacesArray = [getDefaultNetworkInterface()];
|
|
1117
|
+
} else {
|
|
1118
|
+
if (typeof ifaces !== 'string' && ifaces !== undefined) {
|
|
1119
|
+
if (callback) { callback([]); }
|
|
1120
|
+
return resolve([]);
|
|
1121
|
+
}
|
|
1122
|
+
ifaces = ifaces || getDefaultNetworkInterface();
|
|
1123
|
+
|
|
1124
|
+
ifaces.__proto__.toLowerCase = util.stringToLower;
|
|
1125
|
+
ifaces.__proto__.replace = util.stringReplace;
|
|
1126
|
+
ifaces.__proto__.trim = util.stringTrim;
|
|
1127
|
+
|
|
1128
|
+
ifaces = ifaces.trim().toLowerCase().replace(/,+/g, '|');
|
|
1129
|
+
ifacesArray = ifaces.split('|');
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
const result = [];
|
|
1133
|
+
|
|
1134
|
+
const workload = [];
|
|
1135
|
+
if (ifacesArray.length && ifacesArray[0].trim() === '*') {
|
|
1136
|
+
ifacesArray = [];
|
|
1137
|
+
networkInterfaces(false).then(allIFaces => {
|
|
1138
|
+
for (let iface of allIFaces) {
|
|
1139
|
+
ifacesArray.push(iface.iface);
|
|
1140
|
+
}
|
|
1141
|
+
networkStats(ifacesArray.join(',')).then(result => {
|
|
1142
|
+
if (callback) { callback(result); }
|
|
1143
|
+
resolve(result);
|
|
1144
|
+
});
|
|
1145
|
+
});
|
|
1146
|
+
} else {
|
|
1147
|
+
for (let iface of ifacesArray) {
|
|
1148
|
+
workload.push(networkStatsSingle(iface.trim()));
|
|
1149
|
+
}
|
|
1150
|
+
if (workload.length) {
|
|
1151
|
+
Promise.all(
|
|
1152
|
+
workload
|
|
1153
|
+
).then(data => {
|
|
1154
|
+
if (callback) { callback(data); }
|
|
1155
|
+
resolve(data);
|
|
1156
|
+
});
|
|
1157
|
+
} else {
|
|
1158
|
+
if (callback) { callback(result); }
|
|
1159
|
+
resolve(result);
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
});
|
|
1163
|
+
});
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
function networkStatsSingle(iface) {
|
|
1167
|
+
|
|
1168
|
+
function parseLinesWindowsPerfData(sections) {
|
|
1169
|
+
let perfData = [];
|
|
1170
|
+
for (let i in sections) {
|
|
1171
|
+
if ({}.hasOwnProperty.call(sections, i)) {
|
|
1172
|
+
if (sections[i].trim() !== '') {
|
|
1173
|
+
let lines = sections[i].trim().split('\r\n');
|
|
1174
|
+
perfData.push({
|
|
1175
|
+
name: util.getValue(lines, 'Name', ':').replace(/[()[\] ]+/g, '').replace('#', '_').toLowerCase(),
|
|
1176
|
+
rx_bytes: parseInt(util.getValue(lines, 'BytesReceivedPersec', ':'), 10),
|
|
1177
|
+
rx_errors: parseInt(util.getValue(lines, 'PacketsReceivedErrors', ':'), 10),
|
|
1178
|
+
rx_dropped: parseInt(util.getValue(lines, 'PacketsReceivedDiscarded', ':'), 10),
|
|
1179
|
+
tx_bytes: parseInt(util.getValue(lines, 'BytesSentPersec', ':'), 10),
|
|
1180
|
+
tx_errors: parseInt(util.getValue(lines, 'PacketsOutboundErrors', ':'), 10),
|
|
1181
|
+
tx_dropped: parseInt(util.getValue(lines, 'PacketsOutboundDiscarded', ':'), 10)
|
|
1182
|
+
});
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
return perfData;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
return new Promise((resolve) => {
|
|
1190
|
+
process.nextTick(() => {
|
|
1191
|
+
let ifaceSanitized = '';
|
|
1192
|
+
const s = util.isPrototypePolluted() ? '---' : util.sanitizeShellString(iface);
|
|
1193
|
+
for (let i = 0; i <= util.mathMin(s.length, 2000); i++) {
|
|
1194
|
+
if (!(s[i] === undefined)) {
|
|
1195
|
+
ifaceSanitized = ifaceSanitized + s[i];
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
let result = {
|
|
1200
|
+
iface: ifaceSanitized,
|
|
1201
|
+
operstate: 'unknown',
|
|
1202
|
+
rx_bytes: 0,
|
|
1203
|
+
rx_dropped: 0,
|
|
1204
|
+
rx_errors: 0,
|
|
1205
|
+
tx_bytes: 0,
|
|
1206
|
+
tx_dropped: 0,
|
|
1207
|
+
tx_errors: 0,
|
|
1208
|
+
rx_sec: null,
|
|
1209
|
+
tx_sec: null,
|
|
1210
|
+
ms: 0
|
|
1211
|
+
};
|
|
1212
|
+
|
|
1213
|
+
let operstate = 'unknown';
|
|
1214
|
+
let rx_bytes = 0;
|
|
1215
|
+
let tx_bytes = 0;
|
|
1216
|
+
let rx_dropped = 0;
|
|
1217
|
+
let rx_errors = 0;
|
|
1218
|
+
let tx_dropped = 0;
|
|
1219
|
+
let tx_errors = 0;
|
|
1220
|
+
|
|
1221
|
+
let cmd, lines, stats;
|
|
1222
|
+
if (!_network[ifaceSanitized] || (_network[ifaceSanitized] && !_network[ifaceSanitized].ms) || (_network[ifaceSanitized] && _network[ifaceSanitized].ms && Date.now() - _network[ifaceSanitized].ms >= 500)) {
|
|
1223
|
+
if (_linux) {
|
|
1224
|
+
if (fs.existsSync('/sys/class/net/' + ifaceSanitized)) {
|
|
1225
|
+
cmd =
|
|
1226
|
+
'cat /sys/class/net/' + ifaceSanitized + '/operstate; ' +
|
|
1227
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/rx_bytes; ' +
|
|
1228
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/tx_bytes; ' +
|
|
1229
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/rx_dropped; ' +
|
|
1230
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/rx_errors; ' +
|
|
1231
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/tx_dropped; ' +
|
|
1232
|
+
'cat /sys/class/net/' + ifaceSanitized + '/statistics/tx_errors; ';
|
|
1233
|
+
exec(cmd, function (error, stdout) {
|
|
1234
|
+
if (!error) {
|
|
1235
|
+
lines = stdout.toString().split('\n');
|
|
1236
|
+
operstate = lines[0].trim();
|
|
1237
|
+
rx_bytes = parseInt(lines[1], 10);
|
|
1238
|
+
tx_bytes = parseInt(lines[2], 10);
|
|
1239
|
+
rx_dropped = parseInt(lines[3], 10);
|
|
1240
|
+
rx_errors = parseInt(lines[4], 10);
|
|
1241
|
+
tx_dropped = parseInt(lines[5], 10);
|
|
1242
|
+
tx_errors = parseInt(lines[6], 10);
|
|
1243
|
+
|
|
1244
|
+
result = calcNetworkSpeed(ifaceSanitized, rx_bytes, tx_bytes, operstate, rx_dropped, rx_errors, tx_dropped, tx_errors);
|
|
1245
|
+
|
|
1246
|
+
}
|
|
1247
|
+
resolve(result);
|
|
1248
|
+
});
|
|
1249
|
+
} else {
|
|
1250
|
+
resolve(result);
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
if (_freebsd || _openbsd || _netbsd) {
|
|
1254
|
+
cmd = 'netstat -ibndI ' + ifaceSanitized; // lgtm [js/shell-command-constructed-from-input]
|
|
1255
|
+
exec(cmd, function (error, stdout) {
|
|
1256
|
+
if (!error) {
|
|
1257
|
+
lines = stdout.toString().split('\n');
|
|
1258
|
+
for (let i = 1; i < lines.length; i++) {
|
|
1259
|
+
const line = lines[i].replace(/ +/g, ' ').split(' ');
|
|
1260
|
+
if (line && line[0] && line[7] && line[10]) {
|
|
1261
|
+
rx_bytes = rx_bytes + parseInt(line[7]);
|
|
1262
|
+
if (line[6].trim() !== '-') { rx_dropped = rx_dropped + parseInt(line[6]); }
|
|
1263
|
+
if (line[5].trim() !== '-') { rx_errors = rx_errors + parseInt(line[5]); }
|
|
1264
|
+
tx_bytes = tx_bytes + parseInt(line[10]);
|
|
1265
|
+
if (line[12].trim() !== '-') { tx_dropped = tx_dropped + parseInt(line[12]); }
|
|
1266
|
+
if (line[9].trim() !== '-') { tx_errors = tx_errors + parseInt(line[9]); }
|
|
1267
|
+
operstate = 'up';
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
result = calcNetworkSpeed(ifaceSanitized, rx_bytes, tx_bytes, operstate, rx_dropped, rx_errors, tx_dropped, tx_errors);
|
|
1271
|
+
}
|
|
1272
|
+
resolve(result);
|
|
1273
|
+
});
|
|
1274
|
+
}
|
|
1275
|
+
if (_darwin) {
|
|
1276
|
+
cmd = 'ifconfig ' + ifaceSanitized + ' | grep "status"'; // lgtm [js/shell-command-constructed-from-input]
|
|
1277
|
+
exec(cmd, function (error, stdout) {
|
|
1278
|
+
result.operstate = (stdout.toString().split(':')[1] || '').trim();
|
|
1279
|
+
result.operstate = (result.operstate || '').toLowerCase();
|
|
1280
|
+
result.operstate = (result.operstate === 'active' ? 'up' : (result.operstate === 'inactive' ? 'down' : 'unknown'));
|
|
1281
|
+
cmd = 'netstat -bdI ' + ifaceSanitized; // lgtm [js/shell-command-constructed-from-input]
|
|
1282
|
+
exec(cmd, function (error, stdout) {
|
|
1283
|
+
if (!error) {
|
|
1284
|
+
lines = stdout.toString().split('\n');
|
|
1285
|
+
// if there is less than 2 lines, no information for this interface was found
|
|
1286
|
+
if (lines.length > 1 && lines[1].trim() !== '') {
|
|
1287
|
+
// skip header line
|
|
1288
|
+
// use the second line because it is tied to the NIC instead of the ipv4 or ipv6 address
|
|
1289
|
+
stats = lines[1].replace(/ +/g, ' ').split(' ');
|
|
1290
|
+
const offset = stats.length > 11 ? 1 : 0;
|
|
1291
|
+
rx_bytes = parseInt(stats[offset + 5]);
|
|
1292
|
+
rx_dropped = parseInt(stats[offset + 10]);
|
|
1293
|
+
rx_errors = parseInt(stats[offset + 4]);
|
|
1294
|
+
tx_bytes = parseInt(stats[offset + 8]);
|
|
1295
|
+
tx_dropped = parseInt(stats[offset + 10]);
|
|
1296
|
+
tx_errors = parseInt(stats[offset + 7]);
|
|
1297
|
+
result = calcNetworkSpeed(ifaceSanitized, rx_bytes, tx_bytes, result.operstate, rx_dropped, rx_errors, tx_dropped, tx_errors);
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
resolve(result);
|
|
1301
|
+
});
|
|
1302
|
+
});
|
|
1303
|
+
}
|
|
1304
|
+
if (_windows) {
|
|
1305
|
+
let perfData = [];
|
|
1306
|
+
let ifaceName = ifaceSanitized;
|
|
1307
|
+
|
|
1308
|
+
// Performance Data
|
|
1309
|
+
util.powerShell('Get-WmiObject Win32_PerfRawData_Tcpip_NetworkInterface | select Name,BytesReceivedPersec,PacketsReceivedErrors,PacketsReceivedDiscarded,BytesSentPersec,PacketsOutboundErrors,PacketsOutboundDiscarded | fl').then((stdout, error) => {
|
|
1310
|
+
if (!error) {
|
|
1311
|
+
const psections = stdout.toString().split(/\n\s*\n/);
|
|
1312
|
+
perfData = parseLinesWindowsPerfData(psections);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
// Network Interfaces
|
|
1316
|
+
networkInterfaces(false).then(interfaces => {
|
|
1317
|
+
// get bytes sent, received from perfData by name
|
|
1318
|
+
rx_bytes = 0;
|
|
1319
|
+
tx_bytes = 0;
|
|
1320
|
+
perfData.forEach(detail => {
|
|
1321
|
+
interfaces.forEach(det => {
|
|
1322
|
+
if ((det.iface.toLowerCase() === ifaceSanitized.toLowerCase() ||
|
|
1323
|
+
det.mac.toLowerCase() === ifaceSanitized.toLowerCase() ||
|
|
1324
|
+
det.ip4.toLowerCase() === ifaceSanitized.toLowerCase() ||
|
|
1325
|
+
det.ip6.toLowerCase() === ifaceSanitized.toLowerCase() ||
|
|
1326
|
+
det.ifaceName.replace(/[()[\] ]+/g, '').replace('#', '_').toLowerCase() === ifaceSanitized.replace(/[()[\] ]+/g, '').replace('#', '_').toLowerCase()) &&
|
|
1327
|
+
(det.ifaceName.replace(/[()[\] ]+/g, '').replace('#', '_').toLowerCase() === detail.name)) {
|
|
1328
|
+
ifaceName = det.iface;
|
|
1329
|
+
rx_bytes = detail.rx_bytes;
|
|
1330
|
+
rx_dropped = detail.rx_dropped;
|
|
1331
|
+
rx_errors = detail.rx_errors;
|
|
1332
|
+
tx_bytes = detail.tx_bytes;
|
|
1333
|
+
tx_dropped = detail.tx_dropped;
|
|
1334
|
+
tx_errors = detail.tx_errors;
|
|
1335
|
+
operstate = det.operstate;
|
|
1336
|
+
}
|
|
1337
|
+
});
|
|
1338
|
+
});
|
|
1339
|
+
if (rx_bytes && tx_bytes) {
|
|
1340
|
+
result = calcNetworkSpeed(ifaceName, parseInt(rx_bytes), parseInt(tx_bytes), operstate, rx_dropped, rx_errors, tx_dropped, tx_errors);
|
|
1341
|
+
}
|
|
1342
|
+
resolve(result);
|
|
1343
|
+
});
|
|
1344
|
+
});
|
|
1345
|
+
}
|
|
1346
|
+
} else {
|
|
1347
|
+
result.rx_bytes = _network[ifaceSanitized].rx_bytes;
|
|
1348
|
+
result.tx_bytes = _network[ifaceSanitized].tx_bytes;
|
|
1349
|
+
result.rx_sec = _network[ifaceSanitized].rx_sec;
|
|
1350
|
+
result.tx_sec = _network[ifaceSanitized].tx_sec;
|
|
1351
|
+
result.ms = _network[ifaceSanitized].last_ms;
|
|
1352
|
+
result.operstate = _network[ifaceSanitized].operstate;
|
|
1353
|
+
resolve(result);
|
|
1354
|
+
}
|
|
1355
|
+
});
|
|
1356
|
+
});
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
exports.networkStats = networkStats;
|
|
1360
|
+
|
|
1361
|
+
// --------------------------
|
|
1362
|
+
// NET - connections (sockets)
|
|
1363
|
+
|
|
1364
|
+
function networkConnections(callback) {
|
|
1365
|
+
|
|
1366
|
+
return new Promise((resolve) => {
|
|
1367
|
+
process.nextTick(() => {
|
|
1368
|
+
let result = [];
|
|
1369
|
+
if (_linux || _freebsd || _openbsd || _netbsd) {
|
|
1370
|
+
let cmd = 'export LC_ALL=C; netstat -tunap | grep "ESTABLISHED\\|SYN_SENT\\|SYN_RECV\\|FIN_WAIT1\\|FIN_WAIT2\\|TIME_WAIT\\|CLOSE\\|CLOSE_WAIT\\|LAST_ACK\\|LISTEN\\|CLOSING\\|UNKNOWN"; unset LC_ALL';
|
|
1371
|
+
if (_freebsd || _openbsd || _netbsd) { cmd = 'export LC_ALL=C; netstat -na | grep "ESTABLISHED\\|SYN_SENT\\|SYN_RECV\\|FIN_WAIT1\\|FIN_WAIT2\\|TIME_WAIT\\|CLOSE\\|CLOSE_WAIT\\|LAST_ACK\\|LISTEN\\|CLOSING\\|UNKNOWN"; unset LC_ALL'; }
|
|
1372
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1373
|
+
let lines = stdout.toString().split('\n');
|
|
1374
|
+
if (!error && (lines.length > 1 || lines[0] != '')) {
|
|
1375
|
+
lines.forEach(function (line) {
|
|
1376
|
+
line = line.replace(/ +/g, ' ').split(' ');
|
|
1377
|
+
if (line.length >= 7) {
|
|
1378
|
+
let localip = line[3];
|
|
1379
|
+
let localport = '';
|
|
1380
|
+
let localaddress = line[3].split(':');
|
|
1381
|
+
if (localaddress.length > 1) {
|
|
1382
|
+
localport = localaddress[localaddress.length - 1];
|
|
1383
|
+
localaddress.pop();
|
|
1384
|
+
localip = localaddress.join(':');
|
|
1385
|
+
}
|
|
1386
|
+
let peerip = line[4];
|
|
1387
|
+
let peerport = '';
|
|
1388
|
+
let peeraddress = line[4].split(':');
|
|
1389
|
+
if (peeraddress.length > 1) {
|
|
1390
|
+
peerport = peeraddress[peeraddress.length - 1];
|
|
1391
|
+
peeraddress.pop();
|
|
1392
|
+
peerip = peeraddress.join(':');
|
|
1393
|
+
}
|
|
1394
|
+
let connstate = line[5];
|
|
1395
|
+
// if (connstate === 'VERBUNDEN') connstate = 'ESTABLISHED';
|
|
1396
|
+
let proc = line[6].split('/');
|
|
1397
|
+
|
|
1398
|
+
if (connstate) {
|
|
1399
|
+
result.push({
|
|
1400
|
+
protocol: line[0],
|
|
1401
|
+
localAddress: localip,
|
|
1402
|
+
localPort: localport,
|
|
1403
|
+
peerAddress: peerip,
|
|
1404
|
+
peerPort: peerport,
|
|
1405
|
+
state: connstate,
|
|
1406
|
+
pid: proc[0] && proc[0] !== '-' ? parseInt(proc[0], 10) : null,
|
|
1407
|
+
process: proc[1] ? proc[1].split(' ')[0] : ''
|
|
1408
|
+
});
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
});
|
|
1412
|
+
if (callback) {
|
|
1413
|
+
callback(result);
|
|
1414
|
+
}
|
|
1415
|
+
resolve(result);
|
|
1416
|
+
} else {
|
|
1417
|
+
cmd = 'ss -tunap | grep "ESTAB\\|SYN-SENT\\|SYN-RECV\\|FIN-WAIT1\\|FIN-WAIT2\\|TIME-WAIT\\|CLOSE\\|CLOSE-WAIT\\|LAST-ACK\\|LISTEN\\|CLOSING"';
|
|
1418
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1419
|
+
|
|
1420
|
+
if (!error) {
|
|
1421
|
+
let lines = stdout.toString().split('\n');
|
|
1422
|
+
lines.forEach(function (line) {
|
|
1423
|
+
line = line.replace(/ +/g, ' ').split(' ');
|
|
1424
|
+
if (line.length >= 6) {
|
|
1425
|
+
let localip = line[4];
|
|
1426
|
+
let localport = '';
|
|
1427
|
+
let localaddress = line[4].split(':');
|
|
1428
|
+
if (localaddress.length > 1) {
|
|
1429
|
+
localport = localaddress[localaddress.length - 1];
|
|
1430
|
+
localaddress.pop();
|
|
1431
|
+
localip = localaddress.join(':');
|
|
1432
|
+
}
|
|
1433
|
+
let peerip = line[5];
|
|
1434
|
+
let peerport = '';
|
|
1435
|
+
let peeraddress = line[5].split(':');
|
|
1436
|
+
if (peeraddress.length > 1) {
|
|
1437
|
+
peerport = peeraddress[peeraddress.length - 1];
|
|
1438
|
+
peeraddress.pop();
|
|
1439
|
+
peerip = peeraddress.join(':');
|
|
1440
|
+
}
|
|
1441
|
+
let connstate = line[1];
|
|
1442
|
+
if (connstate === 'ESTAB') { connstate = 'ESTABLISHED'; }
|
|
1443
|
+
if (connstate === 'TIME-WAIT') { connstate = 'TIME_WAIT'; }
|
|
1444
|
+
let pid = null;
|
|
1445
|
+
let process = '';
|
|
1446
|
+
if (line.length >= 7 && line[6].indexOf('users:') > -1) {
|
|
1447
|
+
let proc = line[6].replace('users:(("', '').replace(/"/g, '').split(',');
|
|
1448
|
+
if (proc.length > 2) {
|
|
1449
|
+
process = proc[0].split(' ')[0];
|
|
1450
|
+
pid = parseInt(proc[1], 10);
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
if (connstate) {
|
|
1454
|
+
result.push({
|
|
1455
|
+
protocol: line[0],
|
|
1456
|
+
localAddress: localip,
|
|
1457
|
+
localPort: localport,
|
|
1458
|
+
peerAddress: peerip,
|
|
1459
|
+
peerPort: peerport,
|
|
1460
|
+
state: connstate,
|
|
1461
|
+
pid,
|
|
1462
|
+
process
|
|
1463
|
+
});
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
});
|
|
1467
|
+
}
|
|
1468
|
+
if (callback) {
|
|
1469
|
+
callback(result);
|
|
1470
|
+
}
|
|
1471
|
+
resolve(result);
|
|
1472
|
+
});
|
|
1473
|
+
}
|
|
1474
|
+
});
|
|
1475
|
+
}
|
|
1476
|
+
if (_darwin) {
|
|
1477
|
+
let cmd = 'netstat -natv | grep "ESTABLISHED\\|SYN_SENT\\|SYN_RECV\\|FIN_WAIT1\\|FIN_WAIT2\\|TIME_WAIT\\|CLOSE\\|CLOSE_WAIT\\|LAST_ACK\\|LISTEN\\|CLOSING\\|UNKNOWN"';
|
|
1478
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1479
|
+
if (!error) {
|
|
1480
|
+
|
|
1481
|
+
let lines = stdout.toString().split('\n');
|
|
1482
|
+
|
|
1483
|
+
lines.forEach(function (line) {
|
|
1484
|
+
line = line.replace(/ +/g, ' ').split(' ');
|
|
1485
|
+
if (line.length >= 8) {
|
|
1486
|
+
let localip = line[3];
|
|
1487
|
+
let localport = '';
|
|
1488
|
+
let localaddress = line[3].split('.');
|
|
1489
|
+
if (localaddress.length > 1) {
|
|
1490
|
+
localport = localaddress[localaddress.length - 1];
|
|
1491
|
+
localaddress.pop();
|
|
1492
|
+
localip = localaddress.join('.');
|
|
1493
|
+
}
|
|
1494
|
+
let peerip = line[4];
|
|
1495
|
+
let peerport = '';
|
|
1496
|
+
let peeraddress = line[4].split('.');
|
|
1497
|
+
if (peeraddress.length > 1) {
|
|
1498
|
+
peerport = peeraddress[peeraddress.length - 1];
|
|
1499
|
+
peeraddress.pop();
|
|
1500
|
+
peerip = peeraddress.join('.');
|
|
1501
|
+
}
|
|
1502
|
+
let connstate = line[5];
|
|
1503
|
+
let pid = parseInt(line[8], 10);
|
|
1504
|
+
if (connstate) {
|
|
1505
|
+
result.push({
|
|
1506
|
+
protocol: line[0],
|
|
1507
|
+
localAddress: localip,
|
|
1508
|
+
localPort: localport,
|
|
1509
|
+
peerAddress: peerip,
|
|
1510
|
+
peerPort: peerport,
|
|
1511
|
+
state: connstate,
|
|
1512
|
+
pid: pid,
|
|
1513
|
+
process: ''
|
|
1514
|
+
});
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
});
|
|
1518
|
+
if (callback) {
|
|
1519
|
+
callback(result);
|
|
1520
|
+
}
|
|
1521
|
+
resolve(result);
|
|
1522
|
+
}
|
|
1523
|
+
});
|
|
1524
|
+
}
|
|
1525
|
+
if (_windows) {
|
|
1526
|
+
let cmd = 'netstat -nao';
|
|
1527
|
+
try {
|
|
1528
|
+
exec(cmd, util.execOptsWin, function (error, stdout) {
|
|
1529
|
+
if (!error) {
|
|
1530
|
+
|
|
1531
|
+
let lines = stdout.toString().split('\r\n');
|
|
1532
|
+
|
|
1533
|
+
lines.forEach(function (line) {
|
|
1534
|
+
line = line.trim().replace(/ +/g, ' ').split(' ');
|
|
1535
|
+
if (line.length >= 4) {
|
|
1536
|
+
let localip = line[1];
|
|
1537
|
+
let localport = '';
|
|
1538
|
+
let localaddress = line[1].split(':');
|
|
1539
|
+
if (localaddress.length > 1) {
|
|
1540
|
+
localport = localaddress[localaddress.length - 1];
|
|
1541
|
+
localaddress.pop();
|
|
1542
|
+
localip = localaddress.join(':');
|
|
1543
|
+
}
|
|
1544
|
+
let peerip = line[2];
|
|
1545
|
+
let peerport = '';
|
|
1546
|
+
let peeraddress = line[2].split(':');
|
|
1547
|
+
if (peeraddress.length > 1) {
|
|
1548
|
+
peerport = peeraddress[peeraddress.length - 1];
|
|
1549
|
+
peeraddress.pop();
|
|
1550
|
+
peerip = peeraddress.join(':');
|
|
1551
|
+
}
|
|
1552
|
+
let pid = util.toInt(line[4]);
|
|
1553
|
+
let connstate = line[3];
|
|
1554
|
+
if (connstate === 'HERGESTELLT') { connstate = 'ESTABLISHED'; }
|
|
1555
|
+
if (connstate.startsWith('ABH')) { connstate = 'LISTEN'; }
|
|
1556
|
+
if (connstate === 'SCHLIESSEN_WARTEN') { connstate = 'CLOSE_WAIT'; }
|
|
1557
|
+
if (connstate === 'WARTEND') { connstate = 'TIME_WAIT'; }
|
|
1558
|
+
if (connstate === 'SYN_GESENDET') { connstate = 'SYN_SENT'; }
|
|
1559
|
+
|
|
1560
|
+
if (connstate === 'LISTENING') { connstate = 'LISTEN'; }
|
|
1561
|
+
if (connstate === 'SYN_RECEIVED') { connstate = 'SYN_RECV'; }
|
|
1562
|
+
if (connstate === 'FIN_WAIT_1') { connstate = 'FIN_WAIT1'; }
|
|
1563
|
+
if (connstate === 'FIN_WAIT_2') { connstate = 'FIN_WAIT2'; }
|
|
1564
|
+
if (connstate) {
|
|
1565
|
+
result.push({
|
|
1566
|
+
protocol: line[0].toLowerCase(),
|
|
1567
|
+
localAddress: localip,
|
|
1568
|
+
localPort: localport,
|
|
1569
|
+
peerAddress: peerip,
|
|
1570
|
+
peerPort: peerport,
|
|
1571
|
+
state: connstate,
|
|
1572
|
+
pid,
|
|
1573
|
+
process: ''
|
|
1574
|
+
});
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
});
|
|
1578
|
+
if (callback) {
|
|
1579
|
+
callback(result);
|
|
1580
|
+
}
|
|
1581
|
+
resolve(result);
|
|
1582
|
+
}
|
|
1583
|
+
});
|
|
1584
|
+
} catch (e) {
|
|
1585
|
+
if (callback) { callback(result); }
|
|
1586
|
+
resolve(result);
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
});
|
|
1590
|
+
});
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
exports.networkConnections = networkConnections;
|
|
1594
|
+
|
|
1595
|
+
function networkGatewayDefault(callback) {
|
|
1596
|
+
|
|
1597
|
+
return new Promise((resolve) => {
|
|
1598
|
+
process.nextTick(() => {
|
|
1599
|
+
let result = '';
|
|
1600
|
+
if (_linux || _freebsd || _openbsd || _netbsd) {
|
|
1601
|
+
let cmd = 'ip route get 1';
|
|
1602
|
+
try {
|
|
1603
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1604
|
+
if (!error) {
|
|
1605
|
+
let lines = stdout.toString().split('\n');
|
|
1606
|
+
const line = lines && lines[0] ? lines[0] : '';
|
|
1607
|
+
let parts = line.split(' via ');
|
|
1608
|
+
if (parts && parts[1]) {
|
|
1609
|
+
parts = parts[1].split(' ');
|
|
1610
|
+
result = parts[0];
|
|
1611
|
+
}
|
|
1612
|
+
if (callback) {
|
|
1613
|
+
callback(result);
|
|
1614
|
+
}
|
|
1615
|
+
resolve(result);
|
|
1616
|
+
} else {
|
|
1617
|
+
if (callback) {
|
|
1618
|
+
callback(result);
|
|
1619
|
+
}
|
|
1620
|
+
resolve(result);
|
|
1621
|
+
}
|
|
1622
|
+
});
|
|
1623
|
+
} catch (e) {
|
|
1624
|
+
if (callback) { callback(result); }
|
|
1625
|
+
resolve(result);
|
|
1626
|
+
}
|
|
1627
|
+
}
|
|
1628
|
+
if (_darwin) {
|
|
1629
|
+
let cmd = 'route -n get default';
|
|
1630
|
+
try {
|
|
1631
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1632
|
+
if (!error) {
|
|
1633
|
+
const lines = stdout.toString().split('\n').map(line => line.trim());
|
|
1634
|
+
result = util.getValue(lines, 'gateway');
|
|
1635
|
+
}
|
|
1636
|
+
if (!result) {
|
|
1637
|
+
cmd = 'netstat -rn | awk \'/default/ {print $2}\'';
|
|
1638
|
+
exec(cmd, { maxBuffer: 1024 * 20000 }, function (error, stdout) {
|
|
1639
|
+
const lines = stdout.toString().split('\n').map(line => line.trim());
|
|
1640
|
+
result = lines.find(line => (/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/.test(line)));
|
|
1641
|
+
if (callback) {
|
|
1642
|
+
callback(result);
|
|
1643
|
+
}
|
|
1644
|
+
resolve(result);
|
|
1645
|
+
});
|
|
1646
|
+
} else {
|
|
1647
|
+
if (callback) {
|
|
1648
|
+
callback(result);
|
|
1649
|
+
}
|
|
1650
|
+
resolve(result);
|
|
1651
|
+
}
|
|
1652
|
+
});
|
|
1653
|
+
} catch (e) {
|
|
1654
|
+
if (callback) { callback(result); }
|
|
1655
|
+
resolve(result);
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
if (_windows) {
|
|
1659
|
+
try {
|
|
1660
|
+
exec('netstat -r', util.execOptsWin, function (error, stdout) {
|
|
1661
|
+
const lines = stdout.toString().split(os.EOL);
|
|
1662
|
+
lines.forEach(line => {
|
|
1663
|
+
line = line.replace(/\s+/g, ' ').trim();
|
|
1664
|
+
if (line.indexOf('0.0.0.0 0.0.0.0') > -1 && !(/[a-zA-Z]/.test(line))) {
|
|
1665
|
+
const parts = line.split(' ');
|
|
1666
|
+
if (parts.length >= 5 && (parts[parts.length - 3]).indexOf('.') > -1) {
|
|
1667
|
+
result = parts[parts.length - 3];
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
});
|
|
1671
|
+
if (!result) {
|
|
1672
|
+
util.powerShell('Get-CimInstance -ClassName Win32_IP4RouteTable | Where-Object { $_.Destination -eq \'0.0.0.0\' -and $_.Mask -eq \'0.0.0.0\' }')
|
|
1673
|
+
.then(data => {
|
|
1674
|
+
let lines = data.toString().split('\r\n');
|
|
1675
|
+
if (lines.length > 1 && !result) {
|
|
1676
|
+
result = util.getValue(lines, 'NextHop');
|
|
1677
|
+
if (callback) {
|
|
1678
|
+
callback(result);
|
|
1679
|
+
}
|
|
1680
|
+
resolve(result);
|
|
1681
|
+
// } else {
|
|
1682
|
+
// exec('ipconfig', util.execOptsWin, function (error, stdout) {
|
|
1683
|
+
// let lines = stdout.toString().split('\r\n');
|
|
1684
|
+
// lines.forEach(function (line) {
|
|
1685
|
+
// line = line.trim().replace(/\. /g, '');
|
|
1686
|
+
// line = line.trim().replace(/ +/g, '');
|
|
1687
|
+
// const parts = line.split(':');
|
|
1688
|
+
// if ((parts[0].toLowerCase().startsWith('standardgate') || parts[0].toLowerCase().indexOf('gateway') > -1 || parts[0].toLowerCase().indexOf('enlace') > -1) && parts[1]) {
|
|
1689
|
+
// result = parts[1];
|
|
1690
|
+
// }
|
|
1691
|
+
// });
|
|
1692
|
+
// if (callback) { callback(result); }
|
|
1693
|
+
// resolve(result);
|
|
1694
|
+
// });
|
|
1695
|
+
}
|
|
1696
|
+
});
|
|
1697
|
+
} else {
|
|
1698
|
+
if (callback) {
|
|
1699
|
+
callback(result);
|
|
1700
|
+
}
|
|
1701
|
+
resolve(result);
|
|
1702
|
+
}
|
|
1703
|
+
});
|
|
1704
|
+
} catch (e) {
|
|
1705
|
+
if (callback) { callback(result); }
|
|
1706
|
+
resolve(result);
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
});
|
|
1710
|
+
});
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
exports.networkGatewayDefault = networkGatewayDefault;
|