rsshub
Version:
Make RSS Great Again!
70 lines (60 loc) • 1.95 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import { art } from '@/utils/render';
import path from 'node:path';
export const route: Route = {
path: '/:id',
categories: ['program-update'],
example: '/fosshub/qBittorrent',
parameters: { id: 'Software id, can be found in URL' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: 'Software Update',
maintainers: ['nczitzk'],
handler,
};
async function handler(ctx) {
const id = ctx.req.param('id') ?? '';
const rootUrl = 'https://www.fosshub.com';
const currentUrl = `${rootUrl}/${id}.html`;
const response = await got({
method: 'get',
url: currentUrl,
});
const $ = load(response.data);
const version = $('dd[itemprop="softwareVersion"]').first().text();
const items = [
{
title: version,
link: `${currentUrl}#${version}`,
description: art(path.join(__dirname, 'templates/description.art'), {
links: $('.dwn-dl')
.toArray()
.map((l) =>
$(l)
.find('.w')
.toArray()
.map((w) => ({
dt: $(w).find('dt').text(),
dd: $(w).find('dd').html(),
}))
),
changelog: $('div[itemprop="releaseNotes"]').html(),
}),
pubDate: parseDate($('.ma__upd .v').text(), 'MMM DD, YYYY'),
},
];
return {
title: `${$('#fh-ssd__hl').text()} - FossHub`,
link: currentUrl,
item: items,
};
}