229 lines
7.5 KiB
JavaScript
229 lines
7.5 KiB
JavaScript
const namedQueue = require('named-queue');
|
|
const options = require('./options');
|
|
const realdebrid = require('./realdebrid');
|
|
const premiumize = require('./premiumize');
|
|
const alldebrid = require('./alldebrid');
|
|
const debridlink = require('./debridlink');
|
|
const offcloud = require('./offcloud');
|
|
const putio = require('./putio');
|
|
const StaticResponse = require('./static');
|
|
const { cacheWrapResolvedUrl } = require('../lib/cache');
|
|
const { timeout } = require('../lib/promises');
|
|
const { BadTokenError, streamFilename, AccessDeniedError, enrichMeta } = require('./mochHelper');
|
|
|
|
const RESOLVE_TIMEOUT = 2 * 60 * 1000; // 2 minutes
|
|
const MIN_API_KEY_SYMBOLS = 15;
|
|
const TOKEN_BLACKLIST = [];
|
|
const RESOLVER_HOST = process.env.RESOLVER_HOST || 'http://localhost:7050';
|
|
const MOCHS = {
|
|
realdebrid: {
|
|
key: 'realdebrid',
|
|
instance: realdebrid,
|
|
name: "RealDebrid",
|
|
shortName: 'RD',
|
|
catalog: true
|
|
},
|
|
premiumize: {
|
|
key: 'premiumize',
|
|
instance: premiumize,
|
|
name: 'Premiumize',
|
|
shortName: 'PM',
|
|
catalog: true
|
|
},
|
|
alldebrid: {
|
|
key: 'alldebrid',
|
|
instance: alldebrid,
|
|
name: 'AllDebrid',
|
|
shortName: 'AD',
|
|
catalog: true
|
|
},
|
|
debridlink: {
|
|
key: 'debridlink',
|
|
instance: debridlink,
|
|
name: 'DebridLink',
|
|
shortName: 'DL',
|
|
catalog: true
|
|
},
|
|
offcloud: {
|
|
key: 'offcloud',
|
|
instance: offcloud,
|
|
name: 'Offcloud',
|
|
shortName: 'OC',
|
|
catalog: true
|
|
},
|
|
putio: {
|
|
key: 'putio',
|
|
instance: putio,
|
|
name: 'Put.io',
|
|
shortName: 'Putio',
|
|
catalog: false
|
|
}
|
|
};
|
|
|
|
const unrestrictQueue = new namedQueue((task, callback) => task.method()
|
|
.then(result => callback(false, result))
|
|
.catch((error => callback(error))), 20);
|
|
|
|
function hasMochConfigured(config) {
|
|
return Object.keys(MOCHS).find(moch => config && config[moch])
|
|
}
|
|
|
|
async function applyMochs(streams, config) {
|
|
if (!streams || !streams.length || !hasMochConfigured(config)) {
|
|
return streams;
|
|
}
|
|
return Promise.all(Object.keys(config)
|
|
.filter(configKey => MOCHS[configKey])
|
|
.map(configKey => MOCHS[configKey])
|
|
.map(moch => {
|
|
if (isInvalidToken(config[moch.key], moch.key)) {
|
|
return { moch, error: BadTokenError };
|
|
}
|
|
return moch.instance.getCachedStreams(streams, config[moch.key])
|
|
.then(mochStreams => ({ moch, mochStreams }))
|
|
.catch(error => {
|
|
if (error === BadTokenError) {
|
|
blackListToken(config[moch.key], moch.key);
|
|
}
|
|
return { moch, error };
|
|
})
|
|
}))
|
|
.then(results => processMochResults(streams, config, results));
|
|
}
|
|
|
|
async function resolve(parameters) {
|
|
const moch = MOCHS[parameters.mochKey];
|
|
if (!moch) {
|
|
return Promise.reject(`Not a valid moch provider: ${parameters.mochKey}`);
|
|
}
|
|
|
|
if (!parameters.apiKey || !parameters.infoHash || !parameters.cachedEntryInfo) {
|
|
return Promise.reject("No valid parameters passed");
|
|
}
|
|
const id = `${parameters.ip}_${parameters.mochKey}_${parameters.apiKey}_${parameters.infoHash}_${parameters.fileIndex}`;
|
|
const method = () => timeout(RESOLVE_TIMEOUT, cacheWrapResolvedUrl(id, () => moch.instance.resolve(parameters)))
|
|
.catch(error => {
|
|
console.warn(error);
|
|
return StaticResponse.FAILED_UNEXPECTED;
|
|
});
|
|
return new Promise(((resolve, reject) => {
|
|
unrestrictQueue.push({ id, method }, (error, result) => result ? resolve(result) : reject(error));
|
|
}));
|
|
}
|
|
|
|
async function getMochCatalog(mochKey, config) {
|
|
const moch = MOCHS[mochKey];
|
|
if (!moch) {
|
|
return Promise.reject(`Not a valid moch provider: ${mochKey}`);
|
|
}
|
|
if (isInvalidToken(config[mochKey], mochKey)) {
|
|
return Promise.reject(`Invalid API key for moch provider: ${mochKey}`);
|
|
}
|
|
return moch.instance.getCatalog(config[moch.key], config.skip, config.ip);
|
|
}
|
|
|
|
async function getMochItemMeta(mochKey, itemId, config) {
|
|
const moch = MOCHS[mochKey];
|
|
if (!moch) {
|
|
return Promise.reject(`Not a valid moch provider: ${mochKey}`);
|
|
}
|
|
|
|
return moch.instance.getItemMeta(itemId, config[moch.key], config.ip)
|
|
.then(meta => enrichMeta(meta))
|
|
.then(meta => {
|
|
meta.videos
|
|
.map(video => video.streams)
|
|
.reduce((a, b) => a.concat(b), [])
|
|
.filter(stream => !stream.url.startsWith('http'))
|
|
.forEach(stream => stream.url = `${RESOLVER_HOST}/${moch.key}/${stream.url}`)
|
|
return meta;
|
|
});
|
|
}
|
|
|
|
function processMochResults(streams, config, results) {
|
|
const errorResults = results
|
|
.map(result => errorStreamResponse(result.moch.key, result.error))
|
|
.filter(errorResponse => errorResponse);
|
|
if (errorResults.length) {
|
|
return errorResults;
|
|
}
|
|
|
|
const includeTorrentLinks = options.includeTorrentLinks(config);
|
|
const excludeDownloadLinks = options.excludeDownloadLinks(config);
|
|
const mochResults = results.filter(result => result && result.mochStreams);
|
|
|
|
const cachedStreams = mochResults
|
|
.reduce((resultStreams, mochResult) => populateCachedLinks(resultStreams, mochResult), streams);
|
|
const resultStreams = excludeDownloadLinks ? cachedStreams : populateDownloadLinks(cachedStreams, mochResults);
|
|
return includeTorrentLinks ? resultStreams : resultStreams.filter(stream => stream.url);
|
|
}
|
|
|
|
function populateCachedLinks(streams, mochResult) {
|
|
return streams.map(stream => {
|
|
const cachedEntry = stream.infoHash && mochResult.mochStreams[stream.infoHash];
|
|
if (cachedEntry && cachedEntry.cached) {
|
|
return {
|
|
name: `[${mochResult.moch.shortName}+] ${stream.name}`,
|
|
title: stream.title,
|
|
url: `${RESOLVER_HOST}/${mochResult.moch.key}/${cachedEntry.url}/${streamFilename(stream)}`,
|
|
behaviorHints: stream.behaviorHints
|
|
};
|
|
}
|
|
return stream;
|
|
});
|
|
}
|
|
|
|
function populateDownloadLinks(streams, mochResults) {
|
|
const torrentStreams = streams.filter(stream => stream.infoHash);
|
|
torrentStreams.forEach(stream => mochResults.forEach(mochResult => {
|
|
const cachedEntry = mochResult.mochStreams[stream.infoHash];
|
|
const isCached = cachedEntry && cachedEntry.cached;
|
|
if (!isCached && isHealthyStreamForDebrid(torrentStreams, stream)) {
|
|
streams.push({
|
|
name: `[${mochResult.moch.shortName} download] ${stream.name}`,
|
|
title: stream.title,
|
|
url: `${RESOLVER_HOST}/${mochResult.moch.key}/${cachedEntry.url}/${streamFilename(stream)}`,
|
|
behaviorHints: stream.behaviorHints
|
|
})
|
|
}
|
|
}));
|
|
return streams;
|
|
}
|
|
|
|
function isHealthyStreamForDebrid(streams, stream) {
|
|
const isZeroSeeders = /👤 0\b/.test(stream.title);
|
|
const is4kStream = /\b4k\b/.test(stream.name);
|
|
const isNotEnoughOptions = streams.length <= 5;
|
|
return !isZeroSeeders || is4kStream || isNotEnoughOptions;
|
|
}
|
|
|
|
function isInvalidToken(token, mochKey) {
|
|
return token.length < MIN_API_KEY_SYMBOLS || TOKEN_BLACKLIST.includes(`${mochKey}|${token}`);
|
|
}
|
|
|
|
function blackListToken(token, mochKey) {
|
|
const tokenKey = `${mochKey}|${token}`;
|
|
console.log(`Blacklisting invalid token: ${tokenKey}`)
|
|
TOKEN_BLACKLIST.push(tokenKey);
|
|
}
|
|
|
|
function errorStreamResponse(mochKey, error) {
|
|
if (error === BadTokenError) {
|
|
return {
|
|
name: `Torrentio\n${MOCHS[mochKey].shortName} error`,
|
|
title: `Invalid ${MOCHS[mochKey].name} ApiKey/Token!`,
|
|
url: StaticResponse.FAILED_ACCESS
|
|
};
|
|
}
|
|
if (error === AccessDeniedError) {
|
|
return {
|
|
name: `Torrentio\n${MOCHS[mochKey].shortName} error`,
|
|
title: `Expired/invalid ${MOCHS[mochKey].name} subscription!`,
|
|
url: StaticResponse.FAILED_ACCESS
|
|
};
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
module.exports = { applyMochs, getMochCatalog, getMochItemMeta, resolve, hasMochConfigured, MochOptions: MOCHS }
|