Update plugins/alldownloader.js
Browse files- plugins/alldownloader.js +45 -0
plugins/alldownloader.js
CHANGED
@@ -5,6 +5,7 @@ import { savefrom } from '../lib/savefrom/savefrom.js';
|
|
5 |
import { mediafiredl } from '../lib/mediafire/mediafire.js';
|
6 |
import { snapsave } from '../lib/snapsave/snapsave.js';
|
7 |
import { tiktokdl } from '../lib/tiktok/tiktok.js';
|
|
|
8 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
9 |
const AllDlRoutes = express.Router();
|
10 |
|
@@ -192,6 +193,50 @@ AllDlRoutes.get('/api/v1/dl/snapsave', authenticateApiKey, apiLimiter, async (re
|
|
192 |
}
|
193 |
});
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
/**
|
196 |
* @swagger
|
197 |
* /api/v1/dl/savefrom:
|
|
|
5 |
import { mediafiredl } from '../lib/mediafire/mediafire.js';
|
6 |
import { snapsave } from '../lib/snapsave/snapsave.js';
|
7 |
import { tiktokdl } from '../lib/tiktok/tiktok.js';
|
8 |
+
import { youtubedl } from '../lib/youtube/youtube.js';
|
9 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
10 |
const AllDlRoutes = express.Router();
|
11 |
|
|
|
193 |
}
|
194 |
});
|
195 |
|
196 |
+
/**
|
197 |
+
* @swagger
|
198 |
+
* /api/v1/dl/youtube:
|
199 |
+
* get:
|
200 |
+
* summary: Youtube Downloader
|
201 |
+
* tags: [ALL-Downloader]
|
202 |
+
* parameters:
|
203 |
+
* - in: query
|
204 |
+
* name: url
|
205 |
+
* required: true
|
206 |
+
* description: null
|
207 |
+
* schema:
|
208 |
+
* type: string
|
209 |
+
* - in: header
|
210 |
+
* name: x-api-key
|
211 |
+
* required: true
|
212 |
+
* description: API key for authentication
|
213 |
+
* schema:
|
214 |
+
* type: string
|
215 |
+
* responses:
|
216 |
+
* 200:
|
217 |
+
* description: Success
|
218 |
+
* 400:
|
219 |
+
* description: Bad Request (e.g., missing or invalid url)
|
220 |
+
* 401:
|
221 |
+
* description: Unauthorized (e.g., missing or invalid API key)
|
222 |
+
* 500:
|
223 |
+
* description: Internal Server Error
|
224 |
+
*/
|
225 |
+
AllDlRoutes.get('/api/v1/dl/youtube', authenticateApiKey, apiLimiter, async (req, res) => {
|
226 |
+
try {
|
227 |
+
const url = req.query.url;
|
228 |
+
|
229 |
+
if (!url) {
|
230 |
+
return res.status(400).json({ error: "url parameter is required." });
|
231 |
+
}
|
232 |
+
const results = await youtubedl(url);
|
233 |
+
res.json({ results });
|
234 |
+
} catch (error) {
|
235 |
+
res.status(500).json({ error: error.message });
|
236 |
+
}
|
237 |
+
});
|
238 |
+
|
239 |
+
|
240 |
/**
|
241 |
* @swagger
|
242 |
* /api/v1/dl/savefrom:
|