Files
RSSHub/lib/v2/domp4/utils.js

90 lines
2.4 KiB
JavaScript

const baseUrl = 'https://www.mp4kan.com';
/**
* trackers from https://www.domp4.cc/Style/2020/js/base.js?v=2
*/
const magnetTrackers = [
'https://tracker.iriseden.fr:443/announce',
'https://tr.highstar.shop:443/announce',
'https://tr.fuckbitcoin.xyz:443/announce',
'https://tr.doogh.club:443/announce',
'https://tr.burnabyhighstar.com:443/announce',
'https://t.btcland.xyz:443/announce',
'http://vps02.net.orel.ru:80/announce',
'https://tracker.kuroy.me:443/announce',
'http://tr.cili001.com:8070/announce',
'http://t.overflow.biz:6969/announce',
'http://t.nyaatracker.com:80/announce',
'http://open.acgnxtracker.com:80/announce',
'http://nyaa.tracker.wf:7777/announce',
'http://home.yxgz.vip:6969/announce',
'http://buny.uk:6969/announce',
'https://tracker.tamersunion.org:443/announce',
'https://tracker.nanoha.org:443/announce',
'https://tracker.loligirl.cn:443/announce',
'udp://bubu.mapfactor.com:6969/announce',
'http://share.camoe.cn:8080/announce',
'udp://movies.zsw.ca:6969/announce',
'udp://ipv4.tracker.harry.lu:80/announce',
'udp://tracker.sylphix.com:6969/announce',
'http://95.216.22.207:9001/announce',
];
/**
* compose magnet url with trackers
*/
function composeMagnetUrl(magnet, trackers = magnetTrackers) {
return `${magnet}&tr=${trackers.join('&tr=')}`;
}
/**
* method for download url type
*/
function getUrlType(url) {
if (url.startsWith('magnet:')) {
return 'magnet';
}
if (url.startsWith('ed2k:')) {
return 'ed2k';
}
return '';
}
/**
* method for generating magnet url
* from the detail page source
*/
function decodeCipherText(p, a, c, k, e, d) {
e = function (c) {
return (c < a ? '' : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36));
};
if (!''.replace(/^/, String)) {
while (c--) {
d[e(c)] = k[c] || e(c);
}
k = [
function (e) {
return d[e];
},
];
e = function () {
return '\\w+';
};
c = 1;
}
while (c--) {
if (k[c]) {
p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]);
}
}
return p;
}
module.exports = {
baseUrl,
magnetTrackers,
getUrlType,
composeMagnetUrl,
decodeCipherText,
};