update
Browse files- lib/all.js +15 -0
- plugins/alldownloader.js +40 -0
lib/all.js
CHANGED
@@ -150,6 +150,20 @@ async function YTDLDownloaderV2(url) {
|
|
150 |
}
|
151 |
}
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
export {
|
154 |
facebookdl,
|
155 |
savefrom,
|
@@ -184,4 +198,5 @@ export {
|
|
184 |
generateRandomTimestamp,
|
185 |
TwitterDownloaderV2,
|
186 |
YTDLDownloaderV2,
|
|
|
187 |
};
|
|
|
150 |
}
|
151 |
}
|
152 |
|
153 |
+
async function FBDownloaderV2(url) {
|
154 |
+
try {
|
155 |
+
const result = await lubacotscaper.default.fbdlV2(url);
|
156 |
+
if (typeof result === "object") {
|
157 |
+
result.owner = "xtdevs";
|
158 |
+
delete result.issues;
|
159 |
+
return result;
|
160 |
+
}
|
161 |
+
} catch (error) {
|
162 |
+
console.error("Error fetching data:", error.message);
|
163 |
+
return null;
|
164 |
+
}
|
165 |
+
}
|
166 |
+
|
167 |
export {
|
168 |
facebookdl,
|
169 |
savefrom,
|
|
|
198 |
generateRandomTimestamp,
|
199 |
TwitterDownloaderV2,
|
200 |
YTDLDownloaderV2,
|
201 |
+
FBDownloaderV2,
|
202 |
};
|
plugins/alldownloader.js
CHANGED
@@ -63,6 +63,46 @@ async function downloadMedia(media) {
|
|
63 |
}
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
/**
|
67 |
* @swagger
|
68 |
* /api/v1/dl/ytdl-v2:
|
|
|
63 |
}
|
64 |
}
|
65 |
|
66 |
+
/**
|
67 |
+
* @swagger
|
68 |
+
* /api/v1/dl/fb-v2:
|
69 |
+
* get:
|
70 |
+
* summary: Facebook V2 Downloader
|
71 |
+
* tags: [ALL-Downloader]
|
72 |
+
* parameters:
|
73 |
+
* - in: query
|
74 |
+
* name: url
|
75 |
+
* required: true
|
76 |
+
* description: null
|
77 |
+
* schema:
|
78 |
+
* type: string
|
79 |
+
* - in: header
|
80 |
+
* name: x-api-key
|
81 |
+
* required: true
|
82 |
+
* description: API key for authentication
|
83 |
+
* schema:
|
84 |
+
* type: string
|
85 |
+
* responses:
|
86 |
+
* 200:
|
87 |
+
* description: Success
|
88 |
+
* 400:
|
89 |
+
* description: Bad Request (e.g., missing or invalid URL)
|
90 |
+
* 401:
|
91 |
+
* description: Unauthorized (e.g., missing or invalid API key)
|
92 |
+
* 500:
|
93 |
+
* description: Internal Server Error
|
94 |
+
*/
|
95 |
+
AllDlRoutes.get('/api/v1/dl/fb-v2', async (req, res) => {
|
96 |
+
try {
|
97 |
+
const q = req.query.url;
|
98 |
+
const results = await TwitterDownloaderV2(q);
|
99 |
+
res.json({ message: results });
|
100 |
+
} catch (error) {
|
101 |
+
res.status(500).json({ error: error.message });
|
102 |
+
}
|
103 |
+
});
|
104 |
+
|
105 |
+
|
106 |
/**
|
107 |
* @swagger
|
108 |
* /api/v1/dl/ytdl-v2:
|