rsshub
Version:
Make RSS Great Again!
33 lines (28 loc) • 893 B
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseRelativeDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const rootUrl = 'https://www.xyplorer.com';
const currentUrl = `${rootUrl}/whatsnew.php`;
const response = await got({
method: 'get',
url: currentUrl,
});
const $ = cheerio.load(response.data);
const items = $('.waznu')
.map((_, item) => {
item = $(item);
return {
link: currentUrl,
description: `<ul>${item.html()}</ul>`,
title: item.prev().prev().text(),
pubDate: parseRelativeDate(item.prev().text().replace('released ', '')),
};
})
.get();
ctx.state.data = {
title: $('title').text(),
link: currentUrl,
item: items,
};
};