UNPKG

rsshub

Version:
78 lines (64 loc) 2.54 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: '/xuzhou/hrss/:category?', categories: ['government'], example: '/gov/xuzhou/hrss', parameters: { category: '分类,见下表,默认为通知公告' }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false, }, name: '徐州市人力资源和社会保障局', maintainers: ['nczitzk'], handler, description: `| 通知公告 | 要闻动态 | 县区动态 | 事业招聘 | 企业招聘 | 政声传递 | | -------- | -------- | -------- | -------- | -------- | -------- | | | 001001 | 001002 | 001004 | 001005 | 001006 |`, }; async function handler(ctx) { const category = ctx.req.param('category') ?? ''; const rootUrl = 'http://hrss.xz.gov.cn'; const currentUrl = `${rootUrl}${category ? `/001/${category}/subPage.html` : ''}`; const response = await got({ method: 'get', url: currentUrl, }); const $ = load(response.data); let items = (category ? $('.module-items a') : $('.bdl[data-target="1"]').eq(1).find('a')).toArray().map((item) => { item = $(item); const link = item.attr('href'); return { title: item.attr('title'), link: `${link.startsWith('http') ? '' : rootUrl}${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('#Zoom, .mian-cont, .ewb-article-info, #UCAP-CONTENT').html(); item.pubDate = timezone(parseDate(content('meta[name="PubDate"]').attr('content')), +8); item.category = content('meta[name="Keywords"]').attr('content')?.split(' '); return item; }) ) ); return { title: `徐州市人力资源和社会保障局 - ${category ? $('.wb-tree-items.current').text() : '通知公告'}`, link: currentUrl, item: items, }; }