randydev commited on
Commit
f789b5a
·
verified ·
1 Parent(s): 753c17f

Update plugins/alldownloader.js

Browse files
Files changed (1) hide show
  1. plugins/alldownloader.js +45 -0
plugins/alldownloader.js CHANGED
@@ -20,6 +20,7 @@ import {
20
  XsearchDownloaderV2,
21
  InstagramDLV3,
22
  InstagramDLV2,
 
23
  XInfoDownloaderV2,
24
  SeachTiktok,
25
  } from '../lib/all.js';
@@ -145,6 +146,50 @@ AllDlRoutes.get('/api/v1/dl/xnxx-search-v2', authenticateApiKey, apiLimiter, asy
145
  }
146
  });
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  /**
149
  * @swagger
150
  * /api/v1/dl/instagram-v3:
 
20
  XsearchDownloaderV2,
21
  InstagramDLV3,
22
  InstagramDLV2,
23
+ InstagramDLV4,
24
  XInfoDownloaderV2,
25
  SeachTiktok,
26
  } from '../lib/all.js';
 
146
  }
147
  });
148
 
149
+ /**
150
+ * @swagger
151
+ * /api/v1/dl/instagram-v4:
152
+ * get:
153
+ * summary: Instagram V4 Downloader
154
+ * tags: [ALL-Downloader]
155
+ * parameters:
156
+ * - in: query
157
+ * name: url
158
+ * required: true
159
+ * description: null
160
+ * schema:
161
+ * type: string
162
+ * - in: header
163
+ * name: x-api-key
164
+ * required: true
165
+ * description: API key for authentication
166
+ * schema:
167
+ * type: string
168
+ * responses:
169
+ * 200:
170
+ * description: Success
171
+ * 400:
172
+ * description: Bad Request (e.g., missing or invalid URL)
173
+ * 401:
174
+ * description: Unauthorized (e.g., missing or invalid API key)
175
+ * 500:
176
+ * description: Internal Server Error
177
+ */
178
+ AllDlRoutes.get('/api/v1/dl/instagram-v4', authenticateApiKey, apiLimiter, async (req, res) => {
179
+ try {
180
+ const q = req.query.url;
181
+
182
+ if (!q) {
183
+ return res.status(400).json({ error: "URL parameter is required." });
184
+ }
185
+ const results = await InstagramDLV4(q);
186
+ res.json({ results });
187
+ } catch (error) {
188
+ res.status(500).json({ error: error.message });
189
+ }
190
+ });
191
+
192
+
193
  /**
194
  * @swagger
195
  * /api/v1/dl/instagram-v3: