UNPKG

rsshub

Version:
78 lines (67 loc) 2.06 kB
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: '/headline', categories: ['new-media'], example: '/guancha/headline', parameters: {}, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false, }, radar: [ { source: ['guancha.cn/GuanChaZheTouTiao', 'guancha.cn/'], }, ], name: '头条', maintainers: ['nczitzk'], handler, url: 'guancha.cn/GuanChaZheTouTiao', }; async function handler() { const rootUrl = 'https://www.guancha.cn'; const currentUrl = `${rootUrl}/GuanChaZheTouTiao/list_1.shtml`; const response = await got({ method: 'get', url: currentUrl, }); const $ = load(response.data); let items = $('.headline-list li .content-headline h3 a') .toArray() .map((item) => { item = $(item); return { title: item.text(), description: item.parent().next().html(), link: `${rootUrl}${item.attr('href').replace(/\.shtml$/, '_s.shtml')}`, pubDate: timezone(parseDate(item.parents('div').first().find('span').text()), +8), }; }); 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('.all-txt').html(); return item; }) ) ); return { title: '观察者网 - 头条', link: currentUrl, item: items, }; }