Update middleware/midware.js
Browse files- middleware/midware.js +3 -4
middleware/midware.js
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
-
import { Database
|
2 |
import { rateLimit } from 'express-rate-limit';
|
3 |
-
import * as uuid from 'uuid';
|
4 |
-
|
5 |
-
const myUUID = uuid.v4();
|
6 |
|
7 |
const authenticateApiKey = async (req, res, next) => {
|
8 |
const apiKey = req.headers['x-api-key'];
|
|
|
|
|
9 |
if (!apiKey) {
|
10 |
return res.status(401).json({ error: 'API Key required' });
|
11 |
}
|
|
|
1 |
+
import { Database } from '../database/database.js';
|
2 |
import { rateLimit } from 'express-rate-limit';
|
|
|
|
|
|
|
3 |
|
4 |
const authenticateApiKey = async (req, res, next) => {
|
5 |
const apiKey = req.headers['x-api-key'];
|
6 |
+
const dbClient = new Database("AkenoXJs", "FastJsAPI");
|
7 |
+
const db = dbClient.collection()
|
8 |
if (!apiKey) {
|
9 |
return res.status(401).json({ error: 'API Key required' });
|
10 |
}
|