forked from Udydjuhxjfsk/madarabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdl - film.js
38 lines (30 loc) · 1.31 KB
/
dl - film.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import axios from 'axios';
const MYCIMA_DOWNLOAD_API = 'https://mycima.zenonhs.store/download_servers/?url=';
let downloadHandler = async (m, { text }) => {
if (!text) {
throw '*[❗] يرجى إدخال رابط الفيلم للحصول على روابط التحميل*';
}
try {
const response = await axios.get(`${MYCIMA_DOWNLOAD_API}${encodeURIComponent(text)}`);
const downloadInfo = response.data;
if (!downloadInfo || downloadInfo.length === 0) {
m.reply(`⚠ لم يتم العثور على روابط تحميل للفيلم باستخدام الرابط: *${text}*`);
return;
}
let reply = `*روابط تحميل الفيلم:*\n`;
downloadInfo.slice(0, 5).forEach((link, index) => {
const url = link.url || 'غير متوفر';
const label = link.label || 'رابط';
reply += `*${index + 1}.* ${label} - (${url})\n`;
});
reply += `*الرابط الأصلي:* ${text}\n`;
m.reply(reply);
} catch (error) {
console.error(error);
m.reply(`⚠ حدث خطأ أثناء الحصول على روابط التحميل:\n${error.response ? error.response.data : error.message}`);
}
};
downloadHandler.help = ['تحميل'];
downloadHandler.tags = ['tools'];
downloadHandler.command = ['تحميل-فلم'];
export default downloadHandler;