mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 07:12:51 +08:00
99 lines
3.0 KiB
JavaScript
99 lines
3.0 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const timezone = require('@/utils/timezone');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const { art } = require('@/utils/render');
|
|
const path = require('path');
|
|
|
|
module.exports = async (ctx) => {
|
|
const id = ctx.params.id ?? '2';
|
|
|
|
const rootUrl = 'https://hjd2048.com';
|
|
const currentUrl = `${rootUrl}/2048/thread.php?fid-${id}.html`;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: currentUrl,
|
|
});
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
$('#shortcut').remove();
|
|
$('tr[onmouseover="this.className=\'tr3 t_two\'"]').remove();
|
|
|
|
const list = $('#ajaxtable tbody .tr2')
|
|
.last()
|
|
.nextAll('.tr3')
|
|
.map((_, item) => {
|
|
item = $(item).find('.subject');
|
|
|
|
return {
|
|
title: item.text(),
|
|
link: `${rootUrl}/2048/${item.attr('href')}`,
|
|
};
|
|
})
|
|
.get();
|
|
|
|
const items = await Promise.all(
|
|
list.map((item) =>
|
|
ctx.cache.tryGet(item.link, async () => {
|
|
const detailResponse = await got({
|
|
method: 'get',
|
|
url: item.link,
|
|
});
|
|
|
|
const content = cheerio.load(detailResponse.data);
|
|
|
|
content('.ads, .tips').remove();
|
|
|
|
content('ignore_js_op').each(function () {
|
|
content(this).replaceWith(`<img src="${content(this).find('img').attr('src')}">`);
|
|
});
|
|
|
|
item.author = content('.fl.black').text();
|
|
item.pubDate = timezone(
|
|
parseDate(
|
|
content('.fl.gray')
|
|
.text()
|
|
.replace(/发表于: /, '')
|
|
),
|
|
+8
|
|
);
|
|
|
|
const downloadLink = content('#read_tpc').first().find('a').last();
|
|
|
|
if (downloadLink.text().indexOf('elsbbus.com') > -1) {
|
|
const torrentResponse = await got({
|
|
method: 'get',
|
|
url: downloadLink.text(),
|
|
});
|
|
|
|
const torrent = cheerio.load(torrentResponse.data);
|
|
|
|
item.enclosure_type = 'application/x-bittorrent';
|
|
item.enclosure_url = `https://data.elsbbus.com/${torrent('.uk-button').last().attr('href')}`;
|
|
|
|
const magnet = torrent('.uk-button').first().attr('href');
|
|
|
|
downloadLink.replaceWith(
|
|
art(path.join(__dirname, 'templates/download.art'), {
|
|
magnet,
|
|
torrent: item.enclosure_url,
|
|
})
|
|
);
|
|
}
|
|
|
|
item.description = content('#read_tpc').first().html();
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
ctx.state.data = {
|
|
title: `${$('#main #breadCrumb a').last().text()} - 2048核基地`,
|
|
link: currentUrl,
|
|
item: items,
|
|
};
|
|
};
|