Spaces:
Running
Running
File size: 19,993 Bytes
8bb3cd6 18ac9c7 8e47f93 18ac9c7 8bb3cd6 1081c21 8bb3cd6 1081c21 |
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 |
import axios from 'axios';
import cheerio from 'cheerio';
import { createRequire } from 'module';
import os from 'os';
import express from 'express';
import { promisify } from 'util';
import { fileTypeFromBuffer } from 'file-type';
import ffmpeg from 'fluent-ffmpeg';
import nodeID3 from 'node-id3';
import ytdl from 'ytdl-core';
import FormData from 'form-data';
const require = createRequire(import.meta.url);
const fs = require('fs');
const path = require('path');
const { google } = require('googleapis');
const PORT = process.env.PORT || 7860;
const app = express();
const readFileAsync = promisify(fs.readFile);
import fetch from 'node-fetch';
const puppeteer = require('puppeteer');
// Function to ping a website
async function pingWebsite() {
const browser = await puppeteer.launch({
headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox']
});
const page = await browser.newPage();
await page.setUserAgent("Mozilla/5.0 (Linux; Android 10; SM-G965U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/114.0.5735.141 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/420.0.0.32.61;]");
await page.goto('https://huggingface.co/spaces/ArashiCode/api');
console.log("ping")
await browser.close();
}
// Ping website every 5 hours
async function pingEvery5Hours() {
await pingWebsite();
setInterval(async () => {
await pingWebsite();
}, 5 * 60 * 60 * 1000); // 5 hours in milliseconds
}
// Start pinging
pingEvery5Hours();
const tempDir = path.join(os.tmpdir(), "temp");
const fss = fs.promises;
(async () => {
if (!fs.existsSync(tempDir)) {
await fss.mkdir(tempDir, { recursive: true });
}
})();
const youtube = google.youtube({ version: 'v3', auth: 'AIzaSyBPkpdJEGtAHebbaP3_CcA1_urfMFfeLLg' });
app.use('/temp', express.static(tempDir));
app.use(express.json());
app.get("/", (req, res) => {
res.type("json");
const keluaran = {
success: true,
author: "Nex",
data: {
igdl: "/igdl",
twdl: "/twdl"
},
};
res.send(keluaran);
});
const generateRandomIP = () => {
const octet = () => Math.floor(Math.random() * 256);
return `${octet()}.${octet()}.${octet()}.${octet()}`;
};
async function igdl1(url) {
const apiEndpoint = 'https://v3.igdownloader.app/api/ajaxSearch';
const requestOptions = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12; SM-S908B Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/357.0.0.23.115;]',
'Referer': 'https://igdownloader.app/en',
'X-Forwarded-For': generateRandomIP()
},
};
const postData = `recaptchaToken=&q=${encodeURIComponent(url)}&t=media&lang=en`;
try {
const response = await axios.post(apiEndpoint, postData, requestOptions);
const $ = cheerio.load(response.data.data);
const downloadLinks = $('div.download-items__btn > a');
return await Promise.all(downloadLinks.map(async (index, element) => $(element).attr('href')));
} catch (error) {
console.error('Instagram Downloader 1 - Error:', error.message);
return null;
}
}
async function igdl2(url) {
try {
const response = await axios.post('https://fastdl.app/c/', {
url: url,
lang_code: 'en',
token: ''
}, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36',
'Referer': 'https://fastdl.app/'
},
responseType: 'arraybuffer'
});
const html = response.data.toString('utf-8');
const $ = cheerio.load(html);
$('img').remove();
const links = [];
$('a').each((index, element) => links.push($(element).attr('href')));
return links;
} catch (error) {
console.error('Error downloading Instagram post:', error);
return null;
}
}
async function igdl3(url) {
const apiEndpoint = 'https://co.wuk.sh/api/json';
const requestData = { url, aFormat: 'mp3', filenamePattern: 'classic', dubLang: false, vQuality: '720' };
const headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36',
'Referer': 'https://cobalt.tools/',
};
try {
const response = await axios.post(apiEndpoint, requestData, { headers });
const array_res = [];
if (response.data.status === 'redirect') {
array_res.push(response.data.url);
} else if (response.data.status === 'picker') {
response.data.picker.forEach(item => array_res.push(item.url));
}
return array_res;
} catch (error) {
console.error('Instagram Downloader 3 - Error:', error.message);
return null;
}
}
async function igdl4(url) {
try {
const apiEndpoint = 'https://v3.saveig.app/api/ajaxSearch';
const requestOptions = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12; SM-S908B Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/357.0.0.23.115;]',
'Referer': 'https://saveig.app/en',
},
};
const postData = `recaptchaToken=&q=${encodeURIComponent(url)}&t=media&lang=en`;
const response = await axios.post(apiEndpoint, postData, requestOptions);
const $ = cheerio.load(response.data.data);
const downloadLinks = $('div.download-items__btn > a');
return await Promise.all(downloadLinks.map(async (index, element) => $(element).attr('href')));
} catch (error) {
console.error('Instagram Downloader 4 - Error:', error.message);
return null;
}
}
async function twdl1(url) {
const apiUrl = 'https://savetwitter.net/api/ajaxSearch';
const headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12; SM-S908B Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/357.0.0.23.115;]',
'Referer': 'https://x2twitter.com/id',
'X-Forwarded-For': generateRandomIP(),
};
const data = `q=${encodeURIComponent(url)}&lang=id`;
try {
const response = await axios.post(apiUrl, data, {
headers
});
if (!response.data.hasOwnProperty('data')) {
throw new Error('Data tidak ditemukan di response');
}
const $ = cheerio.load(response.data.data);
$('a[onclick="showAd()"][href="#"]').remove();
$('a[href="/"]').remove();
$('a[href="#"]').remove();
const hrefs = [];
$('.dl-action').each((index, element) => {
const firstAnchor = $(element).find('a').first();
hrefs.push(firstAnchor.attr('href'));
});
return hrefs;
} catch (error) {
throw new Error('Failed to fetch Twitter image: ' + error);
}
}
async function twdl2(url) {
const apiUrl = 'https://x2twitter.com/api/ajaxSearch';
const headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12; SM-S908B Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/357.0.0.23.115;]',
'Referer': 'https://x2twitter.com/id',
'X-Forwarded-For': generateRandomIP(),
};
const data = `q=${encodeURIComponent(url)}&lang=id`;
try {
const response = await axios.post(apiUrl, data, {
headers
});
if (!response.data.hasOwnProperty('data')) {
throw new Error('Data tidak ditemukan di response');
}
const $ = cheerio.load(response.data.data);
$('a[onclick="showAd()"][href="#"]').remove();
$('a[href="/"]').remove();
const hrefs = [];
$('.dl-action').each((index, element) => {
const firstAnchor = $(element).find('a').first();
hrefs.push(firstAnchor.attr('href'));
});
return hrefs;
} catch (error) {
throw new Error('Failed to fetch Twitter image: ' + error);
}
}
async function twdl3(url) {
const apiUrl = 'https://twtube.app/en/download?url=';
const headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': '*/*',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12; SM-S908B Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/357.0.0.23.115;]',
'Referer': 'https://savetwitter.net/id/twitter-image-downloader',
'X-Forwarded-For': generateRandomIP(),
};
try {
const response = await axios.get(apiUrl + url, {
headers
});
const $ = cheerio.load(response.data);
// Mendapatkan semua href dari elemen a dalam div dengan kelas 'square-box-btn'
const allHrefs = [];
// Menggunakan map untuk mengambil href dan mengembalikan array promise
const promises = $('.square-box-btn a').map(async (index, element) => {
let link = $(element).attr('href');
return link;
}).get();
// Menunggu semua promise selesai dan mengumpulkan hasilnya
return Promise.all(promises);
} catch (error) {
throw new Error('Failed to fetch Twitter image: ' + error);
}
}
async function DownloadFile(url) {
try {
const response = await axios.get(url, { responseType: 'arraybuffer' });
const mimeType = response.headers['content-type'];
const buffer = response.data;
const fileExtension = (await fileTypeFromBuffer(buffer)).ext;
const filename = `downloaded_file_${Date.now()}.${fileExtension}`;
const filePath = path.join(tempDir, filename);
await fss.writeFile(filePath, buffer);
console.log(`File berhasil diunduh dan disimpan sebagai: ${filePath}`);
return { mimeType, filePath };
} catch (error) {
console.error('Error saat mengunduh file:', error);
return null;
}
}
const getInstagramDownloadLinks = async (url) => {
let result = await igdl1(url);
if (!result || result.length === 0) {
result = await igdl2(url);
}
if (!result || result.length === 0) {
result = await igdl3(url);
}
if (!result || result.length === 0) {
result = await igdl4(url);
}
if (!result || result.length === 0) {
result = {
message: "all server error"
};
}
return result;
};
const Twitter = async (url) => {
let result = await twdl3(url);
if (!result || result.length === 0) {
result = await twdl2(url);
}
if (!result || result.length === 0) {
result = await twdl1(url);
}
if (!result || result.length === 0) {
result = {
message: "all server error"
};
}
return result;
};
app.get('/igdl', async (req, res) => {
try {
const { url } = req.query;
if (!url) return res.status(400).json({ error: 'Parameter url is required' });
if (!/https?:\/\/(www\.)?instagram\.com\/(p|reel|tv)/.test(url)) return res.status(400).json({ error: "Example: https://www.instagram.com/p/Cz1fTwMJFpx/?igsh=MXRrY2g4eWNucGoyZg==" });
let result = await getInstagramDownloadLinks(url);
let result_upload = {
media: []
}
for (let item of result) {
let unduh = await DownloadFile(item);
result_upload.media.push({
type: unduh.mimeType,
path: unduh.filePath,
url_path: `https://arashicode-api.hf.space/temp/${path.basename(unduh.filePath)}`
});
}
res.json(result_upload);
for (let item of result_upload.media) {
try {
await new Promise(resolve => setTimeout(resolve, 10 * 60 * 1000)); // 10 minutes
await fss.unlink(item.path);
console.log(`File ${item.path} deleted.`);
} catch (error) {
console.error(`Error deleting file ${item.path}:`, error);
}
}
} catch (error) {
console.error('Error processing request:', error);
res.status(500).json({
error: 'Failed to process request\n' + error
});
}
});
app.get('/twdl', async (req, res) => {
try {
const { url } = req.query;
if (!url) return res.status(400).json({ error: 'Parameter url is required' });
let result = await Twitter(url);
let result_upload = {
media: []
}
for (let item of result) {
let unduh = await DownloadFile(item);
result_upload.media.push({
type: unduh.mimeType,
path: unduh.filePath,
url_path: `https://arashicode-api.hf.space/temp/${path.basename(unduh.filePath)}`,
url_path2: `http://${os.hostname()}:${PORT}/temp/${path.basename(unduh.filePath)}`
});
}
res.json(result_upload);
for (let item of result_upload.media) {
try {
await new Promise(resolve => setTimeout(resolve, 10 * 60 * 1000)); // 10 minutes
await fss.unlink(item.path);
console.log(`File ${item.path} deleted.`);
} catch (error) {
console.error(`Error deleting file ${item.path}:`, error);
}
}
} catch (error) {
console.error('Error processing request:', error);
res.status(500).json({
error: 'Failed to process request\n' + error
});
}
});
/****
YTMP3
YTMP3
YTMP3
YTMP3
*****/
async function uploader(buffer) {
const { ext } = await fileTypeFromBuffer(buffer);
const bodyForm = new FormData();
bodyForm.append('file', buffer, `file.${ext}`);
const response = await fetch('https://aemt.me/api/upload.php', {
method: 'POST',
body: bodyForm,
});
return {
status: response.status,
creator: 'Nex',
result: await response.json(),
};
}
async function getHDThumbnailUrl(videoId) {
try {
const response = await youtube.videos.list({ part: 'snippet', id: videoId });
return response.data.items[0].snippet.thumbnails.maxres.url;
} catch (error) {
console.error('Error fetching HD thumbnail URL:', error.message);
return null;
}
}
async function GetId(data) {
const regex = /(?:https?:\/\/)?(?:www\.)?(?:youtu(?:be\.com\/(?:watch\?(?:v=|vi=)|v\/|vi\/)|\.be\/|be\.com\/embed\/|be\.com\/shorts\/)|youtube\.com\/\?(?:v=|vi=))([\w-]{11})/;
const res = regex.exec(data);
if (res && res[1]) return res[1];
throw new Error("Please check the URL you have entered");
}
async function addAudioTags(media, title, artist, year, imagecover) {
try {
let audioBuffer = (typeof media === 'string') ? Buffer.from((await axios.get(media, { responseType: 'arraybuffer', maxContentLength: -1 })).data) : (media instanceof Buffer) ? media : (() => { throw new Error('Media harus berupa URL string atau Buffer.'); })();
const randomFilename = generateRandomName(10) + '.mp3';
const tmpFilePath = path.join(tempDir, randomFilename);
fs.writeFileSync(tmpFilePath, audioBuffer);
const tags = { title, artist, year };
if (typeof imagecover === 'string') {
const coverBuffer = Buffer.from((await axios.get(imagecover, { responseType: 'arraybuffer' })).data);
tags.image = { mime: 'image/jpeg', type: { id: 3, name: 'Front Cover' }, description: 'Cover', imageBuffer: coverBuffer };
} else if (imagecover instanceof Buffer) {
tags.image = { mime: 'image/jpeg', type: { id: 3, name: 'Front Cover' }, description: 'Cover', imageBuffer: imagecover };
}
const success = nodeID3.write(tags, tmpFilePath);
console[success ? 'log' : 'error'](success ? 'Tag ID3 berhasil diubah!' : 'Gagal mengubah tag ID3.');
return { msg: `Audio berhasil diubah.`, path: `${tmpFilePath}` };
} catch (error) {
console.error('Terjadi kesalahan:', error);
throw new Error('Terjadi kesalahan saat mengubah audio.');
}
}
function generateRandomName(length) {
const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
let randomName = '';
for (let i = 0; i < length; i++) {
randomName += characters.charAt(Math.floor(Math.random() * characters.length));
}
return randomName;
}
async function getAudioMP3Url(videoUrl) {
try {
const info = await ytdl.getInfo(videoUrl);
const audioFormat = ytdl.chooseFormat(info.formats, { filter: 'audioonly', quality: 'highestaudio' });
const path_audio = path.join(tempDir, generateRandomName(10) + '.mp3');
let uploadResult;
await new Promise((resolve, reject) => {
ffmpeg()
.input(audioFormat.url)
.outputOptions('-f mp3')
.outputOptions('-acodec libmp3lame')
.outputOptions('-ab 128k')
.outputOptions('-ar 44100')
.on('end', async () => {
const buffer = fs.readFileSync(path_audio);
const id_video = await GetId(videoUrl);
const hd_thumbnail = await getHDThumbnailUrl(id_video);
const convert = await addAudioTags(buffer, info.videoDetails.title, info.videoDetails.ownerChannelName, 2024, hd_thumbnail);
const buffer2 = fs.readFileSync(convert.path);
uploadResult = await uploader(buffer2);
console.log('Upload result:', uploadResult);
fs.unlinkSync(path_audio);
fs.unlinkSync(convert.path);
resolve(uploadResult);
})
.on('error', (err) => {
console.error('FFmpeg conversion error:', err);
reject(err);
})
.save(path_audio);
});
return uploadResult;
} catch (error) {
console.error('Error:', error);
throw new Error('Failed to process audio URL');
}
}
app.get('/ytmp3', async (req, res) => {
try {
const { url } = req.query;
if (!url) return res.status(400).json({ error: 'Parameter url is required' });
let result = await getAudioMP3Url(url);
res.json(result);
} catch (error) {
console.error('Error processing request:', error);
res.status(500).json({
error: 'Failed to process request\n' + error
});
}
});
app.listen(PORT, () => {
console.log(`Server is running on port https://localhost:${PORT}`);
}); |