Files
RSSHub/lib/v2/fishshell/index.js
x2cf c22b0c12ec feat(route): add fish shell release notes (#12139)
* feat(route): add fish shell release notes

* fix(route): fish shell release notes

* fix(route): fish shell release notes
---------
2023-03-20 23:48:43 +08:00

28 lines
1.1 KiB
JavaScript

const cheerio = require('cheerio');
const got = require('@/utils/got');
const config = require('@/config').value;
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const link = 'https://fishshell.com/docs/current/relnotes.html';
const data = await ctx.cache.tryGet(link, async () => (await got(link)).data, config.cache.contentExpire, false);
const $ = cheerio.load(data);
ctx.state.data = {
link,
title: 'Release notes — fish-shell',
language: 'en',
item: $('#release-notes > section')
.map((_, item) => {
const title = $(item).find('h2').contents().first().text();
const date = title.match(/\(released (.+?)\)/)?.[1];
return {
title,
link: new URL($(item).find('a').attr('href'), link).href,
pubDate: date ? parseDate(date, 'MMMM D, YYYY') : undefined,
description: $(item).html(),
};
})
.get(),
};
};