rsshub
Version:
Make RSS Great Again!
88 lines (76 loc) • 2.42 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import timezone from '@/utils/timezone';
import { parseDate } from '@/utils/parse-date';
export const route: Route = {
path: '/news/:category?',
categories: ['new-media'],
example: '/qm120/news',
parameters: { category: '分类,见下表,默认为健康焦点' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['qm120.com/'],
},
],
name: '新闻',
maintainers: ['nczitzk'],
handler,
url: 'qm120.com/',
description: `| 健康焦点 | 行业动态 | 医学前沿 | 法规动态 |
| -------- | -------- | -------- | -------- |
| jdxw | hydt | yxqy | fgdt |
| 食品安全 | 医疗事故 | 医药会展 | 医药信息 |
| -------- | -------- | -------- | -------- |
| spaq | ylsg | yyhz | yyxx |
| 新闻专题 | 行业新闻 |
| -------- | -------- |
| zhuanti | xyxw |`,
};
async function handler(ctx) {
const category = ctx.req.param('category') ?? 'jdxw';
const rootUrl = 'http://www.qm120.com';
const currentUrl = `${rootUrl}/news/${category}`;
const response = await got({
method: 'get',
url: currentUrl,
});
const $ = load(response.data);
let items = $('.lb2boxls ul li a')
.toArray()
.map((item) => {
item = $(item);
return {
title: item.text(),
link: item.attr('href'),
};
});
items = await Promise.all(
items.map((item) =>
cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const content = load(detailResponse.data);
item.description = content('.neirong_body').html();
item.pubDate = timezone(parseDate(content('.neirong_head p span').eq(1).text()), +8);
return item;
})
)
);
return {
title: `${$('.zt_liebiao_tit').text()} - 全民健康网`,
link: currentUrl,
item: items,
};
}