@sphereon/ssi-sdk.anomaly-detection 0.33.0 → 0.33.1-feature.vcdm2.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.
@@ -1,89 +1,73 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.AnomalyDetection = exports.anomalyDetectionMethods = void 0;
13
- const ssi_sdk_agent_config_1 = require("@sphereon/ssi-sdk.agent-config");
14
- const mmdb_lib_1 = require("mmdb-lib");
15
- const index_1 = require("../index");
16
- exports.anomalyDetectionMethods = ['lookupLocation'];
1
+ import { contextHasPlugin } from '@sphereon/ssi-sdk.agent-config';
2
+ import { Reader } from 'mmdb-lib';
3
+ import { schema } from '../index';
4
+ export const anomalyDetectionMethods = ['lookupLocation'];
17
5
  /**
18
6
  * {@inheritDoc IAnomalyDetection}
19
7
  */
20
- class AnomalyDetection {
8
+ export class AnomalyDetection {
9
+ schema = schema.IAnomalyDetection;
10
+ db;
11
+ dnsLookup;
12
+ methods = {
13
+ anomalyDetectionLookupLocation: this.anomalyDetectionLookupLocation.bind(this),
14
+ };
21
15
  constructor(args) {
22
- this.schema = index_1.schema.IAnomalyDetection;
23
- this.methods = {
24
- anomalyDetectionLookupLocation: this.anomalyDetectionLookupLocation.bind(this),
25
- };
26
- const { geoIpDB, dnsLookupCallback } = Object.assign({}, args);
16
+ const { geoIpDB, dnsLookupCallback } = { ...args };
27
17
  if (geoIpDB === undefined || geoIpDB === null) {
28
18
  throw new Error('The geoIpDB argument is required');
29
19
  }
30
20
  this.db = geoIpDB;
31
21
  this.dnsLookup = dnsLookupCallback;
32
22
  }
33
- anomalyDetectionLookupLocation(args, context) {
34
- return __awaiter(this, void 0, void 0, function* () {
35
- var _a, _b;
36
- const { ipOrHostname, storeId, namespace } = Object.assign({}, args);
37
- const reader = new mmdb_lib_1.Reader(this.db);
38
- const ipv4Reg = '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])';
39
- const ipv6Reg = '(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))';
40
- let result;
41
- if (!new RegExp(ipv4Reg).test(ipOrHostname) && !new RegExp(ipv6Reg).test(ipOrHostname)) {
42
- const ip = yield this.resolveDns(ipOrHostname);
43
- result = reader.get(ip);
44
- }
45
- else {
46
- result = reader.get(ipOrHostname);
47
- }
48
- const lookupResult = {
49
- continent: (_a = result === null || result === void 0 ? void 0 : result.continent) === null || _a === void 0 ? void 0 : _a.code,
50
- country: (_b = result === null || result === void 0 ? void 0 : result.country) === null || _b === void 0 ? void 0 : _b.iso_code,
51
- };
52
- if ((0, ssi_sdk_agent_config_1.contextHasPlugin)(context, 'geolocationStorePersistLocation'))
53
- yield context.agent.geolocationStorePersistLocation({
54
- namespace,
55
- storeId,
56
- ipOrHostname,
57
- locationArgs: lookupResult,
58
- });
59
- return Promise.resolve(lookupResult);
60
- });
23
+ async anomalyDetectionLookupLocation(args, context) {
24
+ const { ipOrHostname, storeId, namespace } = { ...args };
25
+ const reader = new Reader(this.db);
26
+ const ipv4Reg = '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])';
27
+ const ipv6Reg = '(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))';
28
+ let result;
29
+ if (!new RegExp(ipv4Reg).test(ipOrHostname) && !new RegExp(ipv6Reg).test(ipOrHostname)) {
30
+ const ip = await this.resolveDns(ipOrHostname);
31
+ result = reader.get(ip);
32
+ }
33
+ else {
34
+ result = reader.get(ipOrHostname);
35
+ }
36
+ const lookupResult = {
37
+ continent: result?.continent?.code,
38
+ country: result?.country?.iso_code,
39
+ };
40
+ if (contextHasPlugin(context, 'geolocationStorePersistLocation'))
41
+ await context.agent.geolocationStorePersistLocation({
42
+ namespace,
43
+ storeId,
44
+ ipOrHostname,
45
+ locationArgs: lookupResult,
46
+ });
47
+ return Promise.resolve(lookupResult);
61
48
  }
62
- resolveDns(hostname) {
63
- return __awaiter(this, void 0, void 0, function* () {
64
- if (this.dnsLookup) {
65
- return this.dnsLookup(hostname);
66
- }
67
- // Fallback to Node.js dns
68
- let dns;
69
- try {
70
- dns = eval('require("dns")');
71
- }
72
- catch (e) {
73
- console.error(e);
74
- throw new Error(`DNS resolution not available on this platform, use the dnsLookupCallback in the AnomalyDetection constructor to implement DNS resolution for your platform.\r\n${e.message}`);
75
- }
76
- return new Promise((resolve, reject) => {
77
- dns.lookup(hostname, (error, address, family) => {
78
- if (error) {
79
- reject(error);
80
- return;
81
- }
82
- resolve(address);
83
- });
49
+ async resolveDns(hostname) {
50
+ if (this.dnsLookup) {
51
+ return this.dnsLookup(hostname);
52
+ }
53
+ // Fallback to Node.js dns
54
+ let dns;
55
+ try {
56
+ dns = eval('require("dns")');
57
+ }
58
+ catch (e) {
59
+ console.error(e);
60
+ throw new Error(`DNS resolution not available on this platform, use the dnsLookupCallback in the AnomalyDetection constructor to implement DNS resolution for your platform.\r\n${e.message}`);
61
+ }
62
+ return new Promise((resolve, reject) => {
63
+ dns.lookup(hostname, (error, address, family) => {
64
+ if (error) {
65
+ reject(error);
66
+ return;
67
+ }
68
+ resolve(address);
84
69
  });
85
70
  });
86
71
  }
87
72
  }
88
- exports.AnomalyDetection = AnomalyDetection;
89
73
  //# sourceMappingURL=AnomalyDetection.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"AnomalyDetection.js","sourceRoot":"","sources":["../../src/agent/AnomalyDetection.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AnomalyDetection.js","sourceRoot":"","sources":["../../src/agent/AnomalyDetection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAEjE,OAAO,EAAmB,MAAM,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAiH,MAAM,EAAE,MAAM,UAAU,CAAA;AAIhJ,MAAM,CAAC,MAAM,uBAAuB,GAAkB,CAAC,gBAAgB,CAAC,CAAA;AAExE;;GAEG;AACH,MAAM,OAAO,gBAAgB;IAClB,MAAM,GAAG,MAAM,CAAC,iBAAiB,CAAA;IACzB,EAAE,CAAQ;IACV,SAAS,CAAc;IAC/B,OAAO,GAAsB;QACpC,8BAA8B,EAAE,IAAI,CAAC,8BAA8B,CAAC,IAAI,CAAC,IAAI,CAAC;KAC/E,CAAA;IAED,YAAY,IAA0D;QACpE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,CAAA;QAClD,IAAI,OAAO,KAAK,SAAS,IAAI,OAAO,KAAK,IAAI,EAAE,CAAC;YAC9C,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAA;QACrD,CAAC;QACD,IAAI,CAAC,EAAE,GAAG,OAAO,CAAA;QACjB,IAAI,CAAC,SAAS,GAAG,iBAAiB,CAAA;IACpC,CAAC;IAEO,KAAK,CAAC,8BAA8B,CAC1C,IAAwC,EACxC,OAAyB;QAEzB,MAAM,EAAE,YAAY,EAAE,OAAO,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,CAAA;QACxD,MAAM,MAAM,GAAG,IAAI,MAAM,CAAkB,IAAI,CAAC,EAAE,CAAC,CAAA;QACnD,MAAM,OAAO,GAAG,8GAA8G,CAAA;QAC9H,MAAM,OAAO,GACX,upBAAupB,CAAA;QACzpB,IAAI,MAA8B,CAAA;QAElC,IAAI,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACvF,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,CAAA;YAC9C,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACzB,CAAC;aAAM,CAAC;YACN,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAA;QACnC,CAAC;QAED,MAAM,YAAY,GAAG;YACnB,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI;YAClC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ;SACnC,CAAA;QAED,IAAI,gBAAgB,CAAC,OAAO,EAAE,iCAAiC,CAAC;YAC9D,MAAM,OAAO,CAAC,KAAK,CAAC,+BAA+B,CAAC;gBAClD,SAAS;gBACT,OAAO;gBACP,YAAY;gBACZ,YAAY,EAAE,YAAY;aAC3B,CAAC,CAAA;QACJ,OAAO,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,CAAA;IACtC,CAAC;IAEO,KAAK,CAAC,UAAU,CAAC,QAAgB;QACvC,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACnB,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAA;QACjC,CAAC;QAED,0BAA0B;QAC1B,IAAI,GAAG,CAAA;QACP,IAAI,CAAC;YACH,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAA;QAC9B,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;YAChB,MAAM,IAAI,KAAK,CACb,kKAAkK,CAAC,CAAC,OAAO,EAAE,CAC9K,CAAA;QACH,CAAC;QAED,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,GAAG,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,KAAmC,EAAE,OAAe,EAAE,MAAc,EAAE,EAAE;gBAC5F,IAAI,KAAK,EAAE,CAAC;oBACV,MAAM,CAAC,KAAK,CAAC,CAAA;oBACb,OAAM;gBACR,CAAC;gBACD,OAAO,CAAC,OAAO,CAAC,CAAA;YAClB,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;IACJ,CAAC;CACF"}
package/dist/index.js CHANGED
@@ -1,27 +1,8 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.anomalyDetectionMethods = exports.AnomalyDetection = exports.schema = void 0;
18
1
  /**
19
2
  * @public
20
3
  */
21
4
  const schema = require('../plugin.schema.json');
22
- exports.schema = schema;
23
- var AnomalyDetection_1 = require("./agent/AnomalyDetection");
24
- Object.defineProperty(exports, "AnomalyDetection", { enumerable: true, get: function () { return AnomalyDetection_1.AnomalyDetection; } });
25
- Object.defineProperty(exports, "anomalyDetectionMethods", { enumerable: true, get: function () { return AnomalyDetection_1.anomalyDetectionMethods; } });
26
- __exportStar(require("./types/IAnomalyDetection"), exports);
5
+ export { schema };
6
+ export { AnomalyDetection, anomalyDetectionMethods } from './agent/AnomalyDetection';
7
+ export * from './types/IAnomalyDetection';
27
8
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,MAAM,MAAM,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAA;AACtC,wBAAM;AACf,6DAAoF;AAA3E,oHAAA,gBAAgB,OAAA;AAAE,2HAAA,uBAAuB,OAAA;AAClD,4DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAA;AAC/C,OAAO,EAAE,MAAM,EAAE,CAAA;AACjB,OAAO,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAA;AACpF,cAAc,2BAA2B,CAAA"}
@@ -1,3 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
3
2
  //# sourceMappingURL=IAnomalyDetection.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk.anomaly-detection",
3
- "version": "0.33.0",
3
+ "version": "0.33.1-feature.vcdm2.4+9f634bdb",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,8 +15,8 @@
15
15
  "generate-plugin-schema": "ts-node ../../packages/dev/bin/sphereon.js dev generate-plugin-schema"
16
16
  },
17
17
  "dependencies": {
18
- "@sphereon/ssi-sdk.geolocation-store": "0.33.0",
19
- "@sphereon/ssi-sdk.kv-store-temp": "0.33.0",
18
+ "@sphereon/ssi-sdk.geolocation-store": "0.33.1-feature.vcdm2.4+9f634bdb",
19
+ "@sphereon/ssi-sdk.kv-store-temp": "0.33.1-feature.vcdm2.4+9f634bdb",
20
20
  "cross-fetch": "^3.1.8",
21
21
  "debug": "^4.3.5",
22
22
  "dns-query": "^0.11.2",
@@ -24,7 +24,7 @@
24
24
  "typeorm": "^0.3.21"
25
25
  },
26
26
  "devDependencies": {
27
- "@sphereon/ssi-sdk.agent-config": "0.33.0",
27
+ "@sphereon/ssi-sdk.agent-config": "0.33.1-feature.vcdm2.4+9f634bdb",
28
28
  "@types/node": "^20.17.1",
29
29
  "@veramo/remote-client": "4.2.0",
30
30
  "@veramo/remote-server": "4.2.0"
@@ -50,5 +50,5 @@
50
50
  "Anomaly Detection"
51
51
  ],
52
52
  "nx": {},
53
- "gitHead": "c575bdd6642bda761881f0152e0a70ddc82d7f61"
53
+ "gitHead": "9f634bdb714061141e277508c124b08d626f6036"
54
54
  }