@nestjs/throttler 1.1.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/dist/index.js +46 -23
- package/dist/throttler-module-options.interface.js +3 -3
- package/dist/throttler-storage.interface.js +3 -3
- package/dist/throttler.constants.js +8 -4
- package/dist/throttler.decorator.js +29 -25
- package/dist/throttler.exception.js +7 -7
- package/dist/throttler.guard.d.ts +1 -0
- package/dist/throttler.guard.js +107 -79
- package/dist/throttler.guard.js.map +1 -1
- package/dist/throttler.module.js +77 -58
- package/dist/throttler.providers.js +22 -18
- package/dist/throttler.service.js +47 -36
- package/dist/tsconfig.build.tsbuildinfo +1 -4833
- package/package.json +48 -47
- package/CHANGELOG.md +0 -94
package/README.md
CHANGED
|
@@ -31,9 +31,14 @@ For an overview of the community storage providers, see [Community Storage Provi
|
|
|
31
31
|
|
|
32
32
|
This package comes with a couple of goodies that should be mentioned, first is the `ThrottlerModule`.
|
|
33
33
|
|
|
34
|
+
## Versions
|
|
35
|
+
|
|
36
|
+
`@nestjs/throttler@^1` is compatible with Nest v7 while `@nestjs/throttler@^2` is compatible with Nest v7 and Nest v8, but it is suggested to be used with only v8 in case of breaking changes against v7 that are unseen.
|
|
37
|
+
|
|
34
38
|
## Table of Contents
|
|
35
39
|
|
|
36
40
|
- [Description](#description)
|
|
41
|
+
- [Versions](#versions)
|
|
37
42
|
- [Table of Contents](#table-of-contents)
|
|
38
43
|
- [Usage](#usage)
|
|
39
44
|
- [ThrottlerModule](#throttlermodule)
|
|
@@ -58,7 +63,7 @@ how many times an endpoint can be hit before returning a 429.
|
|
|
58
63
|
|
|
59
64
|
```ts
|
|
60
65
|
import { APP_GUARD } from '@nestjs/core';
|
|
61
|
-
import { ThrottlerGuard, ThrottlerModule } from 'nestjs
|
|
66
|
+
import { ThrottlerGuard, ThrottlerModule } from '@nestjs/throttler';
|
|
62
67
|
|
|
63
68
|
@Module({
|
|
64
69
|
imports: [
|
package/dist/index.js
CHANGED
|
@@ -1,24 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
var __createBinding =
|
|
3
|
+
(this && this.__createBinding) ||
|
|
4
|
+
(Object.create
|
|
5
|
+
? function (o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
Object.defineProperty(o, k2, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
: function (o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
o[k2] = m[k];
|
|
17
|
+
});
|
|
18
|
+
var __exportStar =
|
|
19
|
+
(this && this.__exportStar) ||
|
|
20
|
+
function (m, exports) {
|
|
21
|
+
for (var p in m)
|
|
22
|
+
if (p !== 'default' && !Object.prototype.hasOwnProperty.call(exports, p))
|
|
23
|
+
__createBinding(exports, m, p);
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
13
26
|
exports.getStorageToken = exports.getOptionsToken = void 0;
|
|
14
|
-
__exportStar(require(
|
|
15
|
-
__exportStar(require(
|
|
16
|
-
__exportStar(require(
|
|
17
|
-
__exportStar(require(
|
|
18
|
-
__exportStar(require(
|
|
19
|
-
__exportStar(require(
|
|
20
|
-
var throttler_providers_1 = require(
|
|
21
|
-
Object.defineProperty(exports,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
27
|
+
__exportStar(require('./throttler-module-options.interface'), exports);
|
|
28
|
+
__exportStar(require('./throttler-storage.interface'), exports);
|
|
29
|
+
__exportStar(require('./throttler.decorator'), exports);
|
|
30
|
+
__exportStar(require('./throttler.exception'), exports);
|
|
31
|
+
__exportStar(require('./throttler.guard'), exports);
|
|
32
|
+
__exportStar(require('./throttler.module'), exports);
|
|
33
|
+
var throttler_providers_1 = require('./throttler.providers');
|
|
34
|
+
Object.defineProperty(exports, 'getOptionsToken', {
|
|
35
|
+
enumerable: true,
|
|
36
|
+
get: function () {
|
|
37
|
+
return throttler_providers_1.getOptionsToken;
|
|
38
|
+
},
|
|
39
|
+
});
|
|
40
|
+
Object.defineProperty(exports, 'getStorageToken', {
|
|
41
|
+
enumerable: true,
|
|
42
|
+
get: function () {
|
|
43
|
+
return throttler_providers_1.getStorageToken;
|
|
44
|
+
},
|
|
45
|
+
});
|
|
46
|
+
__exportStar(require('./throttler.service'), exports);
|
|
47
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
3
|
-
//# sourceMappingURL=throttler-module-options.interface.js.map
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
|
+
//# sourceMappingURL=throttler-module-options.interface.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
3
|
exports.ThrottlerStorage = void 0;
|
|
4
4
|
exports.ThrottlerStorage = Symbol('ThrottlerStorage');
|
|
5
|
-
//# sourceMappingURL=throttler-storage.interface.js.map
|
|
5
|
+
//# sourceMappingURL=throttler-storage.interface.js.map
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
3
|
-
exports.THROTTLER_SKIP =
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
|
+
exports.THROTTLER_SKIP =
|
|
4
|
+
exports.THROTTLER_OPTIONS =
|
|
5
|
+
exports.THROTTLER_TTL =
|
|
6
|
+
exports.THROTTLER_LIMIT =
|
|
7
|
+
void 0;
|
|
4
8
|
exports.THROTTLER_LIMIT = 'THROTTLER:LIMIT';
|
|
5
9
|
exports.THROTTLER_TTL = 'THROTTLER:TTL';
|
|
6
10
|
exports.THROTTLER_OPTIONS = 'THROTTLER:MODULE_OPTIONS';
|
|
7
11
|
exports.THROTTLER_SKIP = 'THROTTLER:SKIP';
|
|
8
|
-
//# sourceMappingURL=throttler.constants.js.map
|
|
12
|
+
//# sourceMappingURL=throttler.constants.js.map
|
|
@@ -1,37 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
3
|
-
exports.InjectThrottlerStorage =
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
|
+
exports.InjectThrottlerStorage =
|
|
4
|
+
exports.InjectThrottlerOptions =
|
|
5
|
+
exports.SkipThrottle =
|
|
6
|
+
exports.Throttle =
|
|
7
|
+
void 0;
|
|
8
|
+
const common_1 = require('@nestjs/common');
|
|
9
|
+
const throttler_constants_1 = require('./throttler.constants');
|
|
10
|
+
const throttler_providers_1 = require('./throttler.providers');
|
|
7
11
|
function setThrottlerMetadata(target, limit, ttl) {
|
|
8
|
-
|
|
9
|
-
|
|
12
|
+
Reflect.defineMetadata(throttler_constants_1.THROTTLER_TTL, ttl, target);
|
|
13
|
+
Reflect.defineMetadata(throttler_constants_1.THROTTLER_LIMIT, limit, target);
|
|
10
14
|
}
|
|
11
15
|
const Throttle = (limit = 20, ttl = 60) => {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
return (target, propertyKey, descriptor) => {
|
|
17
|
+
if (descriptor) {
|
|
18
|
+
setThrottlerMetadata(descriptor.value, limit, ttl);
|
|
19
|
+
return descriptor;
|
|
20
|
+
}
|
|
21
|
+
setThrottlerMetadata(target, limit, ttl);
|
|
22
|
+
return target;
|
|
23
|
+
};
|
|
20
24
|
};
|
|
21
25
|
exports.Throttle = Throttle;
|
|
22
26
|
const SkipThrottle = (skip = true) => {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
return (target, propertyKey, descriptor) => {
|
|
28
|
+
if (descriptor) {
|
|
29
|
+
Reflect.defineMetadata(throttler_constants_1.THROTTLER_SKIP, skip, descriptor.value);
|
|
30
|
+
return descriptor;
|
|
31
|
+
}
|
|
32
|
+
Reflect.defineMetadata(throttler_constants_1.THROTTLER_SKIP, skip, target);
|
|
33
|
+
return target;
|
|
34
|
+
};
|
|
31
35
|
};
|
|
32
36
|
exports.SkipThrottle = SkipThrottle;
|
|
33
37
|
const InjectThrottlerOptions = () => common_1.Inject(throttler_providers_1.getOptionsToken());
|
|
34
38
|
exports.InjectThrottlerOptions = InjectThrottlerOptions;
|
|
35
39
|
const InjectThrottlerStorage = () => common_1.Inject(throttler_providers_1.getStorageToken());
|
|
36
40
|
exports.InjectThrottlerStorage = InjectThrottlerStorage;
|
|
37
|
-
//# sourceMappingURL=throttler.decorator.js.map
|
|
41
|
+
//# sourceMappingURL=throttler.decorator.js.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
3
|
exports.ThrottlerException = exports.throttlerMessage = void 0;
|
|
4
|
-
const common_1 = require(
|
|
4
|
+
const common_1 = require('@nestjs/common');
|
|
5
5
|
exports.throttlerMessage = 'ThrottlerException: Too Many Requests';
|
|
6
6
|
class ThrottlerException extends common_1.HttpException {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
constructor(message) {
|
|
8
|
+
super(`${message || exports.throttlerMessage}`, common_1.HttpStatus.TOO_MANY_REQUESTS);
|
|
9
|
+
}
|
|
10
10
|
}
|
|
11
11
|
exports.ThrottlerException = ThrottlerException;
|
|
12
|
-
//# sourceMappingURL=throttler.exception.js.map
|
|
12
|
+
//# sourceMappingURL=throttler.exception.js.map
|
package/dist/throttler.guard.js
CHANGED
|
@@ -1,91 +1,119 @@
|
|
|
1
|
-
|
|
2
|
-
var __decorate =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
var __decorate =
|
|
3
|
+
(this && this.__decorate) ||
|
|
4
|
+
function (decorators, target, key, desc) {
|
|
5
|
+
var c = arguments.length,
|
|
6
|
+
r =
|
|
7
|
+
c < 3
|
|
8
|
+
? target
|
|
9
|
+
: desc === null
|
|
10
|
+
? (desc = Object.getOwnPropertyDescriptor(target, key))
|
|
11
|
+
: desc,
|
|
12
|
+
d;
|
|
13
|
+
if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
|
|
14
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
15
|
+
else
|
|
16
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
17
|
+
if ((d = decorators[i]))
|
|
18
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
19
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata =
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
|
|
20
|
+
};
|
|
21
|
+
var __metadata =
|
|
22
|
+
(this && this.__metadata) ||
|
|
23
|
+
function (k, v) {
|
|
24
|
+
if (typeof Reflect === 'object' && typeof Reflect.metadata === 'function')
|
|
25
|
+
return Reflect.metadata(k, v);
|
|
26
|
+
};
|
|
27
|
+
var __param =
|
|
28
|
+
(this && this.__param) ||
|
|
29
|
+
function (paramIndex, decorator) {
|
|
30
|
+
return function (target, key) {
|
|
31
|
+
decorator(target, key, paramIndex);
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
15
35
|
exports.ThrottlerGuard = void 0;
|
|
16
|
-
const common_1 = require(
|
|
17
|
-
const core_1 = require(
|
|
18
|
-
const md5 = require(
|
|
19
|
-
const throttler_storage_interface_1 = require(
|
|
20
|
-
const throttler_constants_1 = require(
|
|
21
|
-
const throttler_decorator_1 = require(
|
|
22
|
-
const throttler_exception_1 = require(
|
|
36
|
+
const common_1 = require('@nestjs/common');
|
|
37
|
+
const core_1 = require('@nestjs/core');
|
|
38
|
+
const md5 = require('md5');
|
|
39
|
+
const throttler_storage_interface_1 = require('./throttler-storage.interface');
|
|
40
|
+
const throttler_constants_1 = require('./throttler.constants');
|
|
41
|
+
const throttler_decorator_1 = require('./throttler.decorator');
|
|
42
|
+
const throttler_exception_1 = require('./throttler.exception');
|
|
23
43
|
let ThrottlerGuard = class ThrottlerGuard {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
handler,
|
|
39
|
-
classRef,
|
|
40
|
-
]);
|
|
41
|
-
const routeOrClassTtl = this.reflector.getAllAndOverride(throttler_constants_1.THROTTLER_TTL, [
|
|
42
|
-
handler,
|
|
43
|
-
classRef,
|
|
44
|
-
]);
|
|
45
|
-
const limit = routeOrClassLimit || this.options.limit;
|
|
46
|
-
const ttl = routeOrClassTtl || this.options.ttl;
|
|
47
|
-
return this.handleRequest(context, limit, ttl);
|
|
44
|
+
constructor(options, storageService, reflector) {
|
|
45
|
+
this.options = options;
|
|
46
|
+
this.storageService = storageService;
|
|
47
|
+
this.reflector = reflector;
|
|
48
|
+
this.headerPrefix = 'X-RateLimit';
|
|
49
|
+
this.errorMessage = throttler_exception_1.throttlerMessage;
|
|
50
|
+
}
|
|
51
|
+
async canActivate(context) {
|
|
52
|
+
const handler = context.getHandler();
|
|
53
|
+
const classRef = context.getClass();
|
|
54
|
+
if (
|
|
55
|
+
this.reflector.getAllAndOverride(throttler_constants_1.THROTTLER_SKIP, [handler, classRef])
|
|
56
|
+
) {
|
|
57
|
+
return true;
|
|
48
58
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
59
|
+
const routeOrClassLimit = this.reflector.getAllAndOverride(
|
|
60
|
+
throttler_constants_1.THROTTLER_LIMIT,
|
|
61
|
+
[handler, classRef],
|
|
62
|
+
);
|
|
63
|
+
const routeOrClassTtl = this.reflector.getAllAndOverride(throttler_constants_1.THROTTLER_TTL, [
|
|
64
|
+
handler,
|
|
65
|
+
classRef,
|
|
66
|
+
]);
|
|
67
|
+
const limit = routeOrClassLimit || this.options.limit;
|
|
68
|
+
const ttl = routeOrClassTtl || this.options.ttl;
|
|
69
|
+
return this.handleRequest(context, limit, ttl);
|
|
70
|
+
}
|
|
71
|
+
async handleRequest(context, limit, ttl) {
|
|
72
|
+
const { req, res } = this.getRequestResponse(context);
|
|
73
|
+
if (Array.isArray(this.options.ignoreUserAgents)) {
|
|
74
|
+
for (const pattern of this.options.ignoreUserAgents) {
|
|
75
|
+
if (pattern.test(req.headers['user-agent'])) {
|
|
76
|
+
return true;
|
|
65
77
|
}
|
|
66
|
-
|
|
67
|
-
res.header(`${this.headerPrefix}-Remaining`, Math.max(0, limit - (ttls.length + 1)));
|
|
68
|
-
res.header(`${this.headerPrefix}-Reset`, nearestExpiryTime);
|
|
69
|
-
await this.storageService.addRecord(key, ttl);
|
|
70
|
-
return true;
|
|
71
|
-
}
|
|
72
|
-
getTracker(req) {
|
|
73
|
-
return req.ip;
|
|
74
|
-
}
|
|
75
|
-
getRequestResponse(context) {
|
|
76
|
-
const http = context.switchToHttp();
|
|
77
|
-
return { req: http.getRequest(), res: http.getResponse() };
|
|
78
|
+
}
|
|
78
79
|
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
const tracker = this.getTracker(req);
|
|
81
|
+
const key = this.generateKey(context, tracker);
|
|
82
|
+
const ttls = await this.storageService.getRecord(key);
|
|
83
|
+
const nearestExpiryTime = ttls.length > 0 ? Math.ceil((ttls[0] - Date.now()) / 1000) : 0;
|
|
84
|
+
if (ttls.length >= limit) {
|
|
85
|
+
res.header('Retry-After', nearestExpiryTime);
|
|
86
|
+
this.throwThrottlingException(context);
|
|
82
87
|
}
|
|
88
|
+
res.header(`${this.headerPrefix}-Limit`, limit);
|
|
89
|
+
res.header(`${this.headerPrefix}-Remaining`, Math.max(0, limit - (ttls.length + 1)));
|
|
90
|
+
res.header(`${this.headerPrefix}-Reset`, nearestExpiryTime);
|
|
91
|
+
await this.storageService.addRecord(key, ttl);
|
|
92
|
+
return true;
|
|
93
|
+
}
|
|
94
|
+
getTracker(req) {
|
|
95
|
+
return req.ip;
|
|
96
|
+
}
|
|
97
|
+
getRequestResponse(context) {
|
|
98
|
+
const http = context.switchToHttp();
|
|
99
|
+
return { req: http.getRequest(), res: http.getResponse() };
|
|
100
|
+
}
|
|
101
|
+
generateKey(context, suffix) {
|
|
102
|
+
const prefix = `${context.getClass().name}-${context.getHandler().name}`;
|
|
103
|
+
return md5(`${prefix}-${suffix}`);
|
|
104
|
+
}
|
|
105
|
+
throwThrottlingException(context) {
|
|
106
|
+
throw new throttler_exception_1.ThrottlerException(this.errorMessage);
|
|
107
|
+
}
|
|
83
108
|
};
|
|
84
|
-
ThrottlerGuard = __decorate(
|
|
109
|
+
ThrottlerGuard = __decorate(
|
|
110
|
+
[
|
|
85
111
|
common_1.Injectable(),
|
|
86
112
|
__param(0, throttler_decorator_1.InjectThrottlerOptions()),
|
|
87
113
|
__param(1, throttler_decorator_1.InjectThrottlerStorage()),
|
|
88
|
-
__metadata(
|
|
89
|
-
],
|
|
114
|
+
__metadata('design:paramtypes', [Object, Object, core_1.Reflector]),
|
|
115
|
+
],
|
|
116
|
+
ThrottlerGuard,
|
|
117
|
+
);
|
|
90
118
|
exports.ThrottlerGuard = ThrottlerGuard;
|
|
91
|
-
//# sourceMappingURL=throttler.guard.js.map
|
|
119
|
+
//# sourceMappingURL=throttler.guard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"throttler.guard.js","sourceRoot":"","sources":["../src/throttler.guard.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA2E;AAC3E,uCAAyC;AACzC,2BAA2B;AAE3B,+EAAiE;AACjE,+DAAuF;AACvF,+DAAuF;AACvF,+DAA6E;AAM7E,IAAa,cAAc,GAA3B,MAAa,cAAc;IAGzB,YAC+C,OAA+B,EAC/B,cAAgC,EAC1D,SAAoB;QAFM,YAAO,GAAP,OAAO,CAAwB;QAC/B,mBAAc,GAAd,cAAc,CAAkB;QAC1D,cAAS,GAAT,SAAS,CAAW;QAL/B,iBAAY,GAAG,aAAa,CAAC;QAC7B,iBAAY,GAAG,sCAAgB,CAAC;IAKvC,CAAC;IAOJ,KAAK,CAAC,WAAW,CAAC,OAAyB;QACzC,MAAM,OAAO,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;QACrC,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;QAGpC,IAAI,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAU,oCAAc,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,EAAE;YAClF,OAAO,IAAI,CAAC;SACb;QAGD,MAAM,iBAAiB,GAAG,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAS,qCAAe,EAAE;YAClF,OAAO;YACP,QAAQ;SACT,CAAC,CAAC;QACH,MAAM,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAS,mCAAa,EAAE;YAC9E,OAAO;YACP,QAAQ;SACT,CAAC,CAAC;QAGH,MAAM,KAAK,GAAG,iBAAiB,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;QACtD,MAAM,GAAG,GAAG,eAAe,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;QAChD,OAAO,IAAI,CAAC,aAAa,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IACjD,CAAC;IAQS,KAAK,CAAC,aAAa,CAC3B,OAAyB,EACzB,KAAa,EACb,GAAW;QAGX,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;QAGtD,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,EAAE;YAChD,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,gBAAgB,EAAE;gBACnD,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE;oBAC3C,OAAO,IAAI,CAAC;iBACb;aACF;SACF;QACD,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;QACrC,MAAM,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC/C,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;QACtD,MAAM,iBAAiB,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAGzF,IAAI,IAAI,CAAC,MAAM,IAAI,KAAK,EAAE;YACxB,GAAG,CAAC,MAAM,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;YAC7C,
|
|
1
|
+
{"version":3,"file":"throttler.guard.js","sourceRoot":"","sources":["../src/throttler.guard.ts"],"names":[],"mappings":"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"}
|
package/dist/throttler.module.js
CHANGED
|
@@ -1,64 +1,83 @@
|
|
|
1
|
-
|
|
2
|
-
var __decorate =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
var __decorate =
|
|
3
|
+
(this && this.__decorate) ||
|
|
4
|
+
function (decorators, target, key, desc) {
|
|
5
|
+
var c = arguments.length,
|
|
6
|
+
r =
|
|
7
|
+
c < 3
|
|
8
|
+
? target
|
|
9
|
+
: desc === null
|
|
10
|
+
? (desc = Object.getOwnPropertyDescriptor(target, key))
|
|
11
|
+
: desc,
|
|
12
|
+
d;
|
|
13
|
+
if (typeof Reflect === 'object' && typeof Reflect.decorate === 'function')
|
|
14
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
15
|
+
else
|
|
16
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
17
|
+
if ((d = decorators[i]))
|
|
18
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
19
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
20
|
+
};
|
|
8
21
|
var ThrottlerModule_1;
|
|
9
|
-
Object.defineProperty(exports,
|
|
22
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
10
23
|
exports.ThrottlerModule = void 0;
|
|
11
|
-
const common_1 = require(
|
|
12
|
-
const throttler_constants_1 = require(
|
|
13
|
-
const throttler_providers_1 = require(
|
|
14
|
-
let ThrottlerModule = ThrottlerModule_1 = class ThrottlerModule {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
24
|
+
const common_1 = require('@nestjs/common');
|
|
25
|
+
const throttler_constants_1 = require('./throttler.constants');
|
|
26
|
+
const throttler_providers_1 = require('./throttler.providers');
|
|
27
|
+
let ThrottlerModule = (ThrottlerModule_1 = class ThrottlerModule {
|
|
28
|
+
static forRoot(options = {}) {
|
|
29
|
+
const providers = [
|
|
30
|
+
...throttler_providers_1.createThrottlerProviders(options),
|
|
31
|
+
throttler_providers_1.ThrottlerStorageProvider,
|
|
32
|
+
];
|
|
33
|
+
return {
|
|
34
|
+
module: ThrottlerModule_1,
|
|
35
|
+
providers,
|
|
36
|
+
exports: providers,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
static forRootAsync(options) {
|
|
40
|
+
const providers = [
|
|
41
|
+
...this.createAsyncProviders(options),
|
|
42
|
+
throttler_providers_1.ThrottlerStorageProvider,
|
|
43
|
+
];
|
|
44
|
+
return {
|
|
45
|
+
module: ThrottlerModule_1,
|
|
46
|
+
imports: options.imports || [],
|
|
47
|
+
providers,
|
|
48
|
+
exports: providers,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static createAsyncProviders(options) {
|
|
52
|
+
if (options.useExisting || options.useFactory) {
|
|
53
|
+
return [this.createAsyncOptionsProvider(options)];
|
|
22
54
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
55
|
+
return [
|
|
56
|
+
this.createAsyncOptionsProvider(options),
|
|
57
|
+
{
|
|
58
|
+
provide: options.useClass,
|
|
59
|
+
useClass: options.useClass,
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
}
|
|
63
|
+
static createAsyncOptionsProvider(options) {
|
|
64
|
+
if (options.useFactory) {
|
|
65
|
+
return {
|
|
66
|
+
provide: throttler_constants_1.THROTTLER_OPTIONS,
|
|
67
|
+
useFactory: options.useFactory,
|
|
68
|
+
inject: options.inject || [],
|
|
69
|
+
};
|
|
31
70
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
static createAsyncOptionsProvider(options) {
|
|
45
|
-
if (options.useFactory) {
|
|
46
|
-
return {
|
|
47
|
-
provide: throttler_constants_1.THROTTLER_OPTIONS,
|
|
48
|
-
useFactory: options.useFactory,
|
|
49
|
-
inject: options.inject || [],
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
return {
|
|
53
|
-
provide: throttler_constants_1.THROTTLER_OPTIONS,
|
|
54
|
-
useFactory: async (optionsFactory) => await optionsFactory.createThrottlerOptions(),
|
|
55
|
-
inject: [options.useExisting || options.useClass],
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
};
|
|
59
|
-
ThrottlerModule = ThrottlerModule_1 = __decorate([
|
|
60
|
-
common_1.Global(),
|
|
61
|
-
common_1.Module({})
|
|
62
|
-
], ThrottlerModule);
|
|
71
|
+
return {
|
|
72
|
+
provide: throttler_constants_1.THROTTLER_OPTIONS,
|
|
73
|
+
useFactory: async (optionsFactory) => await optionsFactory.createThrottlerOptions(),
|
|
74
|
+
inject: [options.useExisting || options.useClass],
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
ThrottlerModule = ThrottlerModule_1 = __decorate(
|
|
79
|
+
[common_1.Global(), common_1.Module({})],
|
|
80
|
+
ThrottlerModule,
|
|
81
|
+
);
|
|
63
82
|
exports.ThrottlerModule = ThrottlerModule;
|
|
64
|
-
//# sourceMappingURL=throttler.module.js.map
|
|
83
|
+
//# sourceMappingURL=throttler.module.js.map
|
|
@@ -1,27 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports,
|
|
3
|
-
exports.getStorageToken =
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3
|
+
exports.getStorageToken =
|
|
4
|
+
exports.getOptionsToken =
|
|
5
|
+
exports.ThrottlerStorageProvider =
|
|
6
|
+
exports.createThrottlerProviders =
|
|
7
|
+
void 0;
|
|
8
|
+
const throttler_storage_interface_1 = require('./throttler-storage.interface');
|
|
9
|
+
const throttler_constants_1 = require('./throttler.constants');
|
|
10
|
+
const throttler_service_1 = require('./throttler.service');
|
|
7
11
|
function createThrottlerProviders(options) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
return [
|
|
13
|
+
{
|
|
14
|
+
provide: throttler_constants_1.THROTTLER_OPTIONS,
|
|
15
|
+
useValue: options,
|
|
16
|
+
},
|
|
17
|
+
];
|
|
14
18
|
}
|
|
15
19
|
exports.createThrottlerProviders = createThrottlerProviders;
|
|
16
20
|
exports.ThrottlerStorageProvider = {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
provide: throttler_storage_interface_1.ThrottlerStorage,
|
|
22
|
+
useFactory: (options) => {
|
|
23
|
+
return options.storage ? options.storage : new throttler_service_1.ThrottlerStorageService();
|
|
24
|
+
},
|
|
25
|
+
inject: [throttler_constants_1.THROTTLER_OPTIONS],
|
|
22
26
|
};
|
|
23
27
|
const getOptionsToken = () => throttler_constants_1.THROTTLER_OPTIONS;
|
|
24
28
|
exports.getOptionsToken = getOptionsToken;
|
|
25
29
|
const getStorageToken = () => throttler_storage_interface_1.ThrottlerStorage;
|
|
26
30
|
exports.getStorageToken = getStorageToken;
|
|
27
|
-
//# sourceMappingURL=throttler.providers.js.map
|
|
31
|
+
//# sourceMappingURL=throttler.providers.js.map
|