mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 02:28:23 +08:00
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const timezone = require('@/utils/timezone');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
const rootUrl = 'https://bad.news';
|
|
const currentUrl = `${rootUrl}${ctx.path === '/' ? '' : ctx.path}`;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: currentUrl,
|
|
});
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
$('.option, .pagination').remove();
|
|
|
|
const items = $('.entry')
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
|
|
const a = item.find('a.title');
|
|
|
|
item.find('img').each(function () {
|
|
$(this).attr('src', $(this).attr('data-echo'));
|
|
$(this).removeClass('lazy');
|
|
$(this).removeAttr('data-echo');
|
|
$(this).removeAttr('id');
|
|
});
|
|
|
|
item.find('video').each(function () {
|
|
$(this).attr('poster', $(this).attr('data-echo'));
|
|
$(this).removeAttr('data-echo');
|
|
$(this).removeAttr('onerror');
|
|
$(this).removeAttr('id');
|
|
});
|
|
|
|
return {
|
|
title: a.text(),
|
|
link: a.attr('href'),
|
|
description: item.find('.coverdiv').html(),
|
|
author: item.find('.author').text().trim(),
|
|
pubDate: timezone(parseDate(item.find('time').attr('datetime')), +8),
|
|
category: item
|
|
.find('.label')
|
|
.toArray()
|
|
.map((l) => $(l).text().trim()),
|
|
};
|
|
});
|
|
|
|
ctx.state.data = {
|
|
title: `Bad.news - ${$('.active').text()}${$('.selected').text()}`,
|
|
link: currentUrl,
|
|
item: items,
|
|
};
|
|
};
|