rsshub
Version:
Make RSS Great Again!
54 lines (47 loc) • 1.36 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import utils from './utils';
import { load } from 'cheerio';
import got from '@/utils/got';
export const route: Route = {
path: '/',
radar: [
{
source: ['chinafactcheck.com/'],
target: '',
},
],
name: 'Unknown',
maintainers: ['kdanfly'],
handler,
url: 'chinafactcheck.com/',
};
async function handler() {
const response = await got(utils.siteLink, {
headers: {
'user-agent': utils.trueUA,
},
});
const $ = load(response.data);
const articlesLink = $('.post-info-box .post-thumb a')
.toArray()
.map((item) => ({ link: $(item).attr('href') }));
const articles = await Promise.all(
articlesLink.map((item) =>
cache.tryGet(item.link, async () => {
const { title, author, pubDate, description, category } = await utils.getArticleDetail(item.link);
item.title = title;
item.author = author;
item.pubDate = pubDate;
item.description = description;
item.category = category;
return item;
})
)
);
return {
title: $('head title').text(),
link: utils.siteLink,
item: articles,
};
}