implements horriblesubs api

This commit is contained in:
TheBeastLT
2019-03-15 13:46:17 +01:00
parent 5a122683d7
commit fa80d34883
2 changed files with 105 additions and 24 deletions

View File

@@ -18,7 +18,11 @@ server.post('/scrape', function(req, res) {
server.listen(7000, async function () {
await connect();
console.log('Scraper started');
const shows = await horribleSubs.allShows();
console.log(shows)
// const shows = await horribleSubs.allShows();
// console.log(shows);
// const showInfo = await horribleSubs.showData('/shows/one-piece');
// console.log(showInfo)
// const latestEntries = await horribleSubs.getLatestEntries();
// console.log(latestEntries);
//scrape();
});

View File

@@ -5,26 +5,9 @@ const moment = require('moment');
const defaultUrl = 'https://horriblesubs.info';
const defaultTimeout = 5000;
function _getContent(url, config = {},) {
const baseUrl = config.proxyUrl || defaultUrl;
const timeout = config.timeout || defaultTimeout;
return needle('get', `${baseUrl}${url}`, { open_timeout: timeout, follow: 2 })
.then((response) => response.body)
.then((body) => cheerio.load(body))
}
function _getAnimeId(showInfo) {
return _getContent(showInfo.url).then($ => {
const text = $('div.entry-content').find('script').html();
showInfo.id = text.match(/var hs_showid = (\d+)/)[1];
return showInfo
})
}
function allShows(config = {}) {
return _getContent('/shows', config)
.then(($) => $('div[class=\'ind-show\']')
.then(($) => $('div[class="ind-show"]')
.map((index, element) => $(element).children('a'))
.map((index, element) => ({
title: element.attr('title'),
@@ -32,11 +15,105 @@ function allShows(config = {}) {
})).get());
}
function showData(showInfo) {
return _getAnimeId(showInfo)
.then((showInfo) => )
async function showData(showInfo, config = {}) {
const showEndpoint = (showInfo.url || showInfo).match(/\/show.+/)[0];
const showId = await _getShowId(showEndpoint);
const packEntries = await _getAllEntries(showId, 'batch', config);
const singleEntries = await _getAllEntries(showId, 'show', config);
const title = showInfo.title || singleEntries[0] && singleEntries[0].title;
return {
title: title,
url: showInfo.url || showInfo,
showId: showId,
singleEpisodes: singleEntries,
packEpisodes: packEntries
};
}
module.exports = { allShows };
async function getLatestEntries(config = {}) {
return _getAllLatestEntries(config)
.then((entries) => Promise.all(entries.map((entry) => _findLatestEntry(entry, config))))
.then((entries) => entries.filter((entry) => entry))
}
function _getContent(endpoint, config = {},) {
const baseUrl = config.proxyUrl || defaultUrl;
const timeout = config.timeout || defaultTimeout;
return needle('get', `${baseUrl}${endpoint}`, { open_timeout: timeout, follow: 2 })
.then((response) => response.body)
.then((body) => cheerio.load(body));
}
function _getShowId(showEndpoint) {
return _getContent(showEndpoint)
.then($ => $('div.entry-content').find('script').html().match(/var hs_showid = (\d+)/)[1]);
}
function _getAllEntries(animeId, type, config, page = 0, autoExtend = true) {
const entriesEndpoint = `/api.php?method=getshows&type=${type}&showid=${animeId}&nextid=${page}`;
return _getEntries(entriesEndpoint, config)
.then((entries) => !autoExtend || entries.length < 12 ? entries :
_getAllEntries(animeId, type, config, page + 1)
.then((nextEntries) => entries.concat(nextEntries)))
}
function _getEntries(endpoint, config) {
return _getContent(endpoint, config)
.then(($) => $('div[class="rls-info-container"]')
.map((index, element) => ({
title: $(element).find('a[class="rls-label"]').contents()
.filter((i, el) => el.nodeType === 3).first().text().trim(),
episode: $(element).find('a[class="rls-label"]').find('strong').text(),
uploadDate: _parseDate($(element).find('a[class="rls-label"]').find('span[class="rls-date"]').text()),
mirrors: $(element).find('div[class="rls-links-container"]').children()
.map((indexLink, elementLink) => ({
resolution: $(elementLink).attr('id').match(/\d+p$/)[0],
magnetLink: $(elementLink).find('a[title="Magnet Link"]').attr('href'),
torrentLink: $(elementLink).find('a[title="Torrent Link"]').attr('href')
})).get()
})).get())
}
function _getAllLatestEntries(config, page = 0) {
const pageParam = page === 0 ? '' : `&nextid=${page}`;
const entriesEndpoint = `/api.php?method=getlatest${pageParam}`;
return _getContent(entriesEndpoint, config)
.then(($) => $('li a')
.map((index, element) => ({
urlEndpoint: $(element).attr('href'),
episode: $(element).find('strong').text()
})).get())
.then((entries) => entries.length < 12 ? entries :
_getAllLatestEntries(config, page + 1)
.then((nextEntries) => entries.concat(nextEntries)))
}
async function _findLatestEntry(entry, config) {
const showId = await _getShowId(entry.urlEndpoint);
let foundEntry;
let page = 0;
let reachedEnd = false;
while(!foundEntry && !reachedEnd) {
const allEntries = await _getAllEntries(showId, 'show', config, page,false);
foundEntry = allEntries.filter((e) => e.episode === entry.episode)[0];
page = page + 1;
reachedEnd = allEntries.length === 0;
}
return foundEntry;
}
function _parseDate(date) {
if (date.match(/today/i)) {
return moment().toDate();
} else if (date.match(/yesterday/i)) {
return moment().subtract(1, 'day').toDate();
}
return moment(date, 'MM/DD/YYYY').toDate();
}
module.exports = { allShows, showData, getLatestEntries };