@spytecgps/lambda-utils 1.0.3 → 1.0.5
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/utils/cache.d.ts +23 -0
- package/dist/utils/cache.js +58 -0
- package/dist/utils/cacheWrapper.d.ts +2 -0
- package/dist/utils/cacheWrapper.js +55 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.js +17 -0
- package/dist/utils/timeOut.d.ts +1 -0
- package/dist/utils/timeOut.js +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class LambdaCache {
|
|
2
|
+
private collectionName;
|
|
3
|
+
/**
|
|
4
|
+
* @param {String} collectionName (not required) - The collection key used to store the cache values.
|
|
5
|
+
* If not provide default collection name uses :
|
|
6
|
+
* ${process.env.AWS_LAMBDA_FUNCTION_NAME}-${process.env.AWS_LAMBDA_FUNCTION_VERSION}
|
|
7
|
+
* */
|
|
8
|
+
constructor(collectionName?: string);
|
|
9
|
+
/**
|
|
10
|
+
* @param {String} key (required) - cache key
|
|
11
|
+
* @param {Object} value (required) - cache value
|
|
12
|
+
* @param {Number} expire (required) - cache expiration time (seconds)
|
|
13
|
+
* */
|
|
14
|
+
set(key: string, value: unknown, ttl: number): void;
|
|
15
|
+
/**
|
|
16
|
+
* @param {String} key (required) - cache key to get
|
|
17
|
+
* */
|
|
18
|
+
get(key: string): unknown;
|
|
19
|
+
/**
|
|
20
|
+
* @param {String} key (required) - cache key to remove
|
|
21
|
+
* */
|
|
22
|
+
remove(key: any): void;
|
|
23
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LambdaCache = void 0;
|
|
4
|
+
var LambdaCache = /** @class */ (function () {
|
|
5
|
+
/**
|
|
6
|
+
* @param {String} collectionName (not required) - The collection key used to store the cache values.
|
|
7
|
+
* If not provide default collection name uses :
|
|
8
|
+
* ${process.env.AWS_LAMBDA_FUNCTION_NAME}-${process.env.AWS_LAMBDA_FUNCTION_VERSION}
|
|
9
|
+
* */
|
|
10
|
+
function LambdaCache(collectionName) {
|
|
11
|
+
this.collectionName = collectionName !== null && collectionName !== void 0 ? collectionName : process.env.AWS_LAMBDA_FUNCTION_NAME + "-" + process.env.AWS_LAMBDA_FUNCTION_VERSION;
|
|
12
|
+
if (!global['CACHE_STORAGE']) {
|
|
13
|
+
global['CACHE_STORAGE'] = {};
|
|
14
|
+
}
|
|
15
|
+
if (!global['CACHE_STORAGE'][this.collectionName]) {
|
|
16
|
+
global['CACHE_STORAGE'][this.collectionName] = new Map();
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @param {String} key (required) - cache key
|
|
21
|
+
* @param {Object} value (required) - cache value
|
|
22
|
+
* @param {Number} expire (required) - cache expiration time (seconds)
|
|
23
|
+
* */
|
|
24
|
+
LambdaCache.prototype.set = function (key, value, ttl) {
|
|
25
|
+
var expire = 1000 * ttl + Date.now();
|
|
26
|
+
global['CACHE_STORAGE'][this.collectionName].set(key, { value: value, expire: expire });
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @param {String} key (required) - cache key to get
|
|
30
|
+
* */
|
|
31
|
+
LambdaCache.prototype.get = function (key) {
|
|
32
|
+
if (!key) {
|
|
33
|
+
throw new Error('key is required!');
|
|
34
|
+
}
|
|
35
|
+
var record = global['CACHE_STORAGE'][this.collectionName].get(key);
|
|
36
|
+
if (!record) {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
if (!record.expire || record.expire > Date.now()) {
|
|
40
|
+
return record.value;
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
return this.remove(key);
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @param {String} key (required) - cache key to remove
|
|
48
|
+
* */
|
|
49
|
+
LambdaCache.prototype.remove = function (key) {
|
|
50
|
+
var record = global['CACHE_STORAGE'][this.collectionName].get(key);
|
|
51
|
+
if (!record) {
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
global['CACHE_STORAGE'][this.collectionName].delete(key);
|
|
55
|
+
};
|
|
56
|
+
return LambdaCache;
|
|
57
|
+
}());
|
|
58
|
+
exports.LambdaCache = LambdaCache;
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
12
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
13
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
14
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
|
+
function step(op) {
|
|
16
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
+
while (_) try {
|
|
18
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
|
+
switch (op[0]) {
|
|
21
|
+
case 0: case 1: t = op; break;
|
|
22
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
23
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
25
|
+
default:
|
|
26
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
27
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
28
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
29
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
30
|
+
if (t[2]) _.ops.pop();
|
|
31
|
+
_.trys.pop(); continue;
|
|
32
|
+
}
|
|
33
|
+
op = body.call(thisArg, _);
|
|
34
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
35
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.promiseWithCache = void 0;
|
|
40
|
+
exports.promiseWithCache = function (promise, cacheInstance, cacheKey, ttl) { return __awaiter(void 0, void 0, void 0, function () {
|
|
41
|
+
var instance;
|
|
42
|
+
return __generator(this, function (_a) {
|
|
43
|
+
switch (_a.label) {
|
|
44
|
+
case 0:
|
|
45
|
+
instance = cacheInstance.get(cacheKey);
|
|
46
|
+
if (!!instance) return [3 /*break*/, 2];
|
|
47
|
+
return [4 /*yield*/, promise()];
|
|
48
|
+
case 1:
|
|
49
|
+
instance = _a.sent();
|
|
50
|
+
cacheInstance.set(cacheKey, instance, ttl);
|
|
51
|
+
_a.label = 2;
|
|
52
|
+
case 2: return [2 /*return*/, instance];
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
}); };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.LambdaCache = void 0;
|
|
14
|
+
var cache_1 = require("./cache");
|
|
15
|
+
Object.defineProperty(exports, "LambdaCache", { enumerable: true, get: function () { return cache_1.LambdaCache; } });
|
|
16
|
+
__exportStar(require("./cacheWrapper"), exports);
|
|
17
|
+
__exportStar(require("./timeOut"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const promiseWithTimeout: <T>(promise: Promise<T>, ms: number, timeoutError?: Error) => Promise<T>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.promiseWithTimeout = void 0;
|
|
4
|
+
exports.promiseWithTimeout = function (promise, ms, timeoutError) {
|
|
5
|
+
if (timeoutError === void 0) { timeoutError = new Error('Promise timed out'); }
|
|
6
|
+
// create a promise that rejects in milliseconds
|
|
7
|
+
var timeout = new Promise(function (_, reject) {
|
|
8
|
+
setTimeout(function () {
|
|
9
|
+
reject(timeoutError);
|
|
10
|
+
}, ms);
|
|
11
|
+
});
|
|
12
|
+
// returns a race between timeout and the passed promise
|
|
13
|
+
return Promise.race([promise, timeout]);
|
|
14
|
+
};
|