rsshub
Version:
Make RSS Great Again!
74 lines (67 loc) • 2.36 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';
import timezone from '@/utils/timezone';
export const route: Route = {
path: '/analyst/column/:type?',
categories: ['finance'],
example: '/qianzhan/analyst/column/all',
parameters: { type: '分类,见下表' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '文章列表',
maintainers: ['moke8'],
handler,
description: `| 全部 | 研究员专栏 | 规划师专栏 | 观察家专栏 |
| ---- | ---------- | ---------- | ---------- |
| all | 220 | 627 | 329 |`,
};
async function handler(ctx) {
let rootUrl = 'https://www.qianzhan.com/analyst/';
const titles = {
all: '最新文章',
220: '研究员专栏',
627: '规划师专栏',
329: '观察家专栏',
};
const { type = 'all' } = ctx.req.param();
if (type !== 'all') {
rootUrl = rootUrl + 'list/' + type + '.html';
}
const response = await got(rootUrl);
const $ = load(response.data);
const links = $('.ptb30.bb1e.clf .f22 a').map((_, item) => $(item).attr('href'));
const items = await Promise.all(
links.map((_, item) =>
cache.tryGet(item, async () => {
const detailResponse = await got(item);
const $ = load(detailResponse.data);
const description = $('#divArtBody').html();
const title = $('#h_title').text();
const pubDate = timezone(parseDate($('#pubtime_baidu').text().split('• ')[1], 'YYYY-MM-DD HH:mm:ss'), +8);
const author = $('.bljjxue').text().match(/\S+/)[0];
return {
title,
link: item,
description,
pubDate,
author,
category: $('meta[name="Keywords"]').attr('content').split(','),
};
})
)
);
return {
title: `前瞻经济学人 - ${titles[type]}`,
link: rootUrl,
item: items,
};
}