71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
import path from 'node:path';
|
|
|
|
import { load } from 'cheerio';
|
|
|
|
import type { Route } from '@/types';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
import { art } from '@/utils/render';
|
|
|
|
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,
|
|
};
|
|
}
|