rsshub
Version:
Make RSS Great Again!
58 lines (49 loc) • 1.52 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: '/',
radar: [
{
source: ['niaogebiji.com/', 'niaogebiji.com/bulletin'],
target: '',
},
],
name: 'Unknown',
maintainers: ['WenryXu'],
handler,
url: 'niaogebiji.com/',
};
async function handler() {
const baseUrl = 'https://www.niaogebiji.com';
const { data: response } = await got(`${baseUrl}/pc/index/getMoreArticle`);
if (response.return_code !== '200') {
throw new Error(response.return_msg);
}
const postList = response.return_data.map((item) => ({
title: item.title,
description: item.summary,
author: item.author,
pubDate: parseDate(item.published_at, 'X'),
updated: parseDate(item.updated_at, 'X'),
category: [item.catname, ...item.tag_list],
link: new URL(item.link, baseUrl).href,
}));
const result = await Promise.all(
postList.map((item) =>
cache.tryGet(item.link, async () => {
const { data: response } = await got(item.link);
const $ = load(response);
item.description = $('.pc_content').html();
return item;
})
)
);
return {
title: '鸟哥笔记',
link: baseUrl,
item: result,
};
}