UNPKG

rsshub

Version:
59 lines (50 loc) 1.64 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'; import timezone from '@/utils/timezone'; export const route: Route = { path: '/jwc/:listId', radar: [ { source: ['jwc.sspu.edu.cn/jwc/:listId/list.htm'], }, ], name: 'Unknown', maintainers: ['TonyRL'], handler, }; async function handler(ctx) { const listId = ctx.req.param('listId'); const baseUrl = 'https://jwc.sspu.edu.cn'; const { data: response, url: link } = await got(`${baseUrl}/${listId}/list.htm`); const $ = load(response); const list = $('.news_list .news') .slice(0, ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 15) .toArray() .map((item) => { item = $(item); const title = item.find('.news_title a'); return { title: title.attr('title'), link: `${baseUrl}${title.attr('href')}`, }; }); const items = await Promise.all( list.map((item) => cache.tryGet(item.link, async () => { const { data: response } = await got(item.link); const $ = load(response); item.description = $('.wp_articlecontent').html(); item.pubDate = timezone(parseDate($('.arti_update').text(), 'YYYY-MM-DD HH:mm:ss'), +8); return item; }) ) ); return { title: $('head title').text(), link, item: items, }; }