Update plugins/alldownloader.js
Browse files- plugins/alldownloader.js +55 -0
plugins/alldownloader.js
CHANGED
@@ -20,6 +20,7 @@ import {
|
|
20 |
XsearchDownloaderV2,
|
21 |
InstagramDLV2,
|
22 |
XInfoDownloaderV2,
|
|
|
23 |
} from '../lib/all.js';
|
24 |
|
25 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
@@ -56,6 +57,60 @@ async function downloadMedia(media) {
|
|
56 |
}
|
57 |
}
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
/**
|
60 |
* @swagger
|
61 |
* /api/v1/dl/xnxx-info-v2:
|
|
|
20 |
XsearchDownloaderV2,
|
21 |
InstagramDLV2,
|
22 |
XInfoDownloaderV2,
|
23 |
+
IzreCustom,
|
24 |
} from '../lib/all.js';
|
25 |
|
26 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
|
|
57 |
}
|
58 |
}
|
59 |
|
60 |
+
/**
|
61 |
+
* @swagger
|
62 |
+
* /api/v1/custom/endpoint:
|
63 |
+
* get:
|
64 |
+
* summary: Custom api endpoint all
|
65 |
+
* tags: [ALL-Downloader]
|
66 |
+
* parameters:
|
67 |
+
* - in: query
|
68 |
+
* name: endpoint
|
69 |
+
* required: true
|
70 |
+
* description: null
|
71 |
+
* schema:
|
72 |
+
* type: string
|
73 |
+
* parameters:
|
74 |
+
* - in: query
|
75 |
+
* name: params
|
76 |
+
* required: true
|
77 |
+
* description: null
|
78 |
+
* schema:
|
79 |
+
* type: string
|
80 |
+
* parameters:
|
81 |
+
* - in: query
|
82 |
+
* name: search
|
83 |
+
* required: true
|
84 |
+
* description: null
|
85 |
+
* schema:
|
86 |
+
* type: string
|
87 |
+
* responses:
|
88 |
+
* 200:
|
89 |
+
* description: Success
|
90 |
+
* 400:
|
91 |
+
* description: Bad Request (e.g., missing or invalid URL)
|
92 |
+
* 401:
|
93 |
+
* description: Unauthorized (e.g., missing or invalid API key)
|
94 |
+
* 500:
|
95 |
+
* description: Internal Server Error
|
96 |
+
*/
|
97 |
+
AllDlRoutes.get('/api/v1/custom/endpoint', apiLimiter, async (req, res) => {
|
98 |
+
try {
|
99 |
+
const e = req.query.endpoint;
|
100 |
+
const params = req.query.params;
|
101 |
+
const search = req.query.search;
|
102 |
+
|
103 |
+
if (!q && !params && !search) {
|
104 |
+
return res.status(400).json({ error: "parameter is required." });
|
105 |
+
}
|
106 |
+
const results = await IzreCustom(e, params, search);
|
107 |
+
res.json({ message: results });
|
108 |
+
} catch (error) {
|
109 |
+
res.status(500).json({ error: error.message });
|
110 |
+
}
|
111 |
+
});
|
112 |
+
|
113 |
+
|
114 |
/**
|
115 |
* @swagger
|
116 |
* /api/v1/dl/xnxx-info-v2:
|