UNPKG

rsshub

Version:
94 lines (83 loc) 2.97 kB
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: '/:keyword?', categories: ['new-media'], example: '/topys', parameters: { keyword: '关键字,可在对应结果页的 URL 中找到' }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false, }, radar: [ { source: ['topys.cn/search/:keyword', 'topys.cn/'], }, ], name: '关键字', maintainers: ['nczitzk'], handler, description: `| 创意 | 设计 | 商业 | 艺术 | 文化 | 科技 | | ---- | ---- | ---- | ---- | ---- | ---- |`, }; async function handler(ctx) { const keyword = ctx.req.param('keyword') ?? ''; const rootUrl = 'https://www.topys.cn'; const currentUrl = `${rootUrl}${keyword ? `/search/${keyword}` : '/api/web/article/get_article_list'}`; const response = keyword ? await got({ method: 'get', url: currentUrl, }) : await got({ method: 'post', url: currentUrl, json: { istop_time: 0, size: ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 16, }, }); let items = keyword ? response.data.match(/id:(\d+),title:"(.*?)",keyword:"(.*?)",istop_time:(\d+),thumb/g).map((item) => { const matches = item.match(/id:(\d+),title:"(.*)",keyword:"(.*)",istop_time:(\d+),thumb/); return { title: matches[2], category: matches[3].split(','), link: `${rootUrl}/article/${matches[1]}`, pubDate: parseDate(matches[4] * 1000), }; }) : response.data.data.map((item) => ({ title: item.title, author: item.editor, category: item.keyword.split(','), link: `${rootUrl}/article/${item.id}`, pubDate: parseDate(item.istop_time * 1000), })); 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('.article-content').html(); item.author = item.author ?? content('.author-name p').first().text(); return item; }) ) ); return { title: `${keyword ? `${keyword} - ` : ''}TOPYS`, link: keyword ? currentUrl : `${rootUrl}/pick`, item: items, }; }