rsshub
Version:
Make RSS Great Again!
67 lines (58 loc) • 1.68 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
export const route: Route = {
path: '/changelog',
categories: ['program-update'],
example: '/typora/changelog',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['support.typora.io/'],
},
],
name: 'Changelog',
maintainers: ['cnzgray'],
handler,
url: 'support.typora.io/',
};
async function handler() {
const host = 'https://support.typora.io';
const { data } = await got(`${host}/store/`);
const list = Object.values(data)
.filter((i) => i.category === 'new')
.map((i) => ({
title: i.title,
author: i.author,
description: i.content,
link: `${host}${i.url}`,
}));
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const { data } = await got(item.link);
const $ = load(data);
item.pubDate = parseDate($('.post-meta time').text());
item.description = $('#post-content').html();
return item;
})
)
);
return {
title: 'Typora Changelog',
link: host,
description: 'Typora Changelog',
image: `${host}/assets/img/favicon-128.png`,
item: items,
};
}