RSSHub/lib/v2/darwinawards/index.js

57 lines
1.3 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
module.exports = async (ctx) => {
const rootUrl = 'https://darwinawards.com';
const currentUrl = `${rootUrl}/darwin/`;
const response = await got({
method: 'get',
url: currentUrl,
});
const $ = cheerio.load(response.data);
$('.cameo').remove();
$('.topvote_title_desc, .topvote_title_minimal, .topvote_minimal').each(function () {
$(this).find('a').first().remove();
});
let items = $('#article_index a')
.toArray()
.map((item) => {
item = $(item);
return {
title: item.text(),
link: item.attr('href'),
};
});
items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const content = cheerio.load(detailResponse.data);
content('h2, nav, footer, table, form').remove();
item.description = content('article').html();
return item;
})
)
);
ctx.state.data = {
title: $('title').text(),
link: currentUrl,
item: items,
};
};