randydev commited on
Commit
0c343c9
·
verified ·
1 Parent(s): 7013a33

Update middleware/midware.js

Browse files
Files changed (1) hide show
  1. middleware/midware.js +9 -0
middleware/midware.js CHANGED
@@ -4,6 +4,7 @@ import { rateLimiter } from "@canmertinyo/rate-limiter-core";
4
  import { ApiKey } from '../models.js';
5
  import * as config from '../config.js';
6
 
 
7
  const authenticateApiKeyPremium = async (req, res, next) => {
8
  const apiKey = req.headers['x-api-key'];
9
 
@@ -12,6 +13,10 @@ const authenticateApiKeyPremium = async (req, res, next) => {
12
  }
13
 
14
  try {
 
 
 
 
15
  const keyData = await ApiKey.findOne({ key: apiKey });
16
  if (!keyData) {
17
  return res.status(403).json({ error: 'Invalid or non-premium API Key' });
@@ -36,6 +41,10 @@ const authenticateApiKey = async (req, res, next) => {
36
  }
37
 
38
  try {
 
 
 
 
39
  const keyDoc = await db.findOne({key: apiKey});
40
  if (!keyDoc) {
41
  return res.status(403).json({ error: 'Invalid API Key' });
 
4
  import { ApiKey } from '../models.js';
5
  import * as config from '../config.js';
6
 
7
+
8
  const authenticateApiKeyPremium = async (req, res, next) => {
9
  const apiKey = req.headers['x-api-key'];
10
 
 
13
  }
14
 
15
  try {
16
+ const validApiKeys = ['randydev'];
17
+ if (validApiKeys.includes(apiKey)) {
18
+ next();
19
+ }
20
  const keyData = await ApiKey.findOne({ key: apiKey });
21
  if (!keyData) {
22
  return res.status(403).json({ error: 'Invalid or non-premium API Key' });
 
41
  }
42
 
43
  try {
44
+ const validApiKeys = ['randydev'];
45
+ if (validApiKeys.includes(apiKey)) {
46
+ next();
47
+ }
48
  const keyDoc = await db.findOne({key: apiKey});
49
  if (!keyDoc) {
50
  return res.status(403).json({ error: 'Invalid API Key' });