randydev commited on
Commit
e2bfdcd
·
verified ·
1 Parent(s): ecedcb6

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +3 -21
index.js CHANGED
@@ -198,24 +198,6 @@ app.post("/api/v1/debug/connect", async (req, res) => {
198
  }
199
  });
200
 
201
- app.delete("/api/v2/delete-key", authenticateApiKey, apiLimiter, async (req, res) => {
202
- const apiKey = req.query.api_key;
203
- if (!apiKey) {
204
- return res.status(400).json({ error: "Missing 'api_key' parameter" });
205
- }
206
-
207
- try {
208
- const DocsKey = await ApiKey.deleteOne({ key: apiKey });
209
- if (DocsKey.deletedCount > 0) {
210
- res.json({ message: "API key has been successfully deleted" });
211
- } else {
212
- res.status(404).json({ message: "API key not found" });
213
- }
214
- } catch (err) {
215
- res.status(500).json({ error: `Key deletion failed: ${err.message}` });
216
- }
217
- });
218
-
219
  app.delete("/api/v1/key/api-key-delete", authenticateApiKey, apiLimiter, async (req, res) => {
220
  const dbClient = new Database("AkenoXJs");
221
  const collection = dbClient.collection("api_keys");
@@ -306,7 +288,7 @@ app.post("/api/v2/key/upgrade-key", authenticateApiKey, apiLimiter, async (req,
306
  );
307
 
308
  res.json({
309
- apiKey: existingUser.key,
310
  createdAt: existingUser.createdAt,
311
  expiresAt: expirationDate,
312
  owner: userIdNumber,
@@ -330,7 +312,7 @@ app.post('/api/v2/key/generate-key', authenticateApiKey, apiLimiter, async (req,
330
  const existingUser = await ApiKey.findOne({ owner: userIdNumber });
331
  if (existingUser) {
332
  return res.status(200).json({
333
- apiKey: existingUser.key,
334
  createdAt: existingUser.createdAt,
335
  is_banned: existingUser.is_banned || false,
336
  expiresAt: existingUser.expiresAt,
@@ -343,7 +325,7 @@ app.post('/api/v2/key/generate-key', authenticateApiKey, apiLimiter, async (req,
343
  expirationDate.setDate(expirationDate.getDate() + 30);
344
 
345
  const userDocument = new ApiKey({
346
- key: newKey,
347
  createdAt: new Date(),
348
  expiresAt: expirationDate,
349
  owner: userIdNumber,
 
198
  }
199
  });
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  app.delete("/api/v1/key/api-key-delete", authenticateApiKey, apiLimiter, async (req, res) => {
202
  const dbClient = new Database("AkenoXJs");
203
  const collection = dbClient.collection("api_keys");
 
288
  );
289
 
290
  res.json({
291
+ apiKey: existingUser.api_keys,
292
  createdAt: existingUser.createdAt,
293
  expiresAt: expirationDate,
294
  owner: userIdNumber,
 
312
  const existingUser = await ApiKey.findOne({ owner: userIdNumber });
313
  if (existingUser) {
314
  return res.status(200).json({
315
+ apiKey: existingUser.api_keys,
316
  createdAt: existingUser.createdAt,
317
  is_banned: existingUser.is_banned || false,
318
  expiresAt: existingUser.expiresAt,
 
325
  expirationDate.setDate(expirationDate.getDate() + 30);
326
 
327
  const userDocument = new ApiKey({
328
+ api_keys: newKey,
329
  createdAt: new Date(),
330
  expiresAt: expirationDate,
331
  owner: userIdNumber,