Update middleware/midware.js
Browse files- middleware/midware.js +7 -2
middleware/midware.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import { Database } from '../database/database.js';
|
2 |
import { rateLimit } from 'express-rate-limit';
|
3 |
import rateLimitMongo from "rate-limit-mongo";
|
4 |
-
import
|
5 |
|
6 |
const MongoStore = rateLimitMongo;
|
7 |
|
@@ -26,7 +26,7 @@ const authenticateApiKey = async (req, res, next) => {
|
|
26 |
|
27 |
const apiLimiter = rateLimit({
|
28 |
store: new MongoStore({
|
29 |
-
uri: dbUri,
|
30 |
collectionName: "rateLimits",
|
31 |
}),
|
32 |
windowMs: 2 * 60 * 1000,
|
@@ -44,6 +44,11 @@ const apiLimiter = rateLimit({
|
|
44 |
}
|
45 |
});
|
46 |
|
|
|
|
|
|
|
|
|
|
|
47 |
class CheckMilWare {
|
48 |
constructor() {
|
49 |
this.dbClient = new Database("AkenoXJs");
|
|
|
1 |
import { Database } from '../database/database.js';
|
2 |
import { rateLimit } from 'express-rate-limit';
|
3 |
import rateLimitMongo from "rate-limit-mongo";
|
4 |
+
import * as config from '../config.js';
|
5 |
|
6 |
const MongoStore = rateLimitMongo;
|
7 |
|
|
|
26 |
|
27 |
const apiLimiter = rateLimit({
|
28 |
store: new MongoStore({
|
29 |
+
uri: config.dbUri,
|
30 |
collectionName: "rateLimits",
|
31 |
}),
|
32 |
windowMs: 2 * 60 * 1000,
|
|
|
44 |
}
|
45 |
});
|
46 |
|
47 |
+
|
48 |
+
node:1) [DEP0170] DeprecationWarning: The URL mongodb://example:[email protected]:27017,ac-obfqend-shard-00-02.1asx6h1.mongodb.net:27017,ac-obfqend-shard-00-00.1asx6h1.mongodb.net:27017/?authSource=admin&replicaSet=atlas-6abkh8-shard-0&retryWrites=true&w=majority&ssl=true is invalid. Future versions of Node.js will throw an error.
|
49 |
+
|
50 |
+
doesn't mongodb://...
|
51 |
+
|
52 |
class CheckMilWare {
|
53 |
constructor() {
|
54 |
this.dbClient = new Database("AkenoXJs");
|