rsshub
Version:
Make RSS Great Again!
61 lines (60 loc) • 2.23 kB
JavaScript
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs";
import { t as cache_default } from "./cache-BkqOokyU.mjs";
import { t as got_default } from "./got-BTowW50G.mjs";
import { t as timezone } from "./timezone-BBvDwS_3.mjs";
import { load } from "cheerio";
//#region lib/routes/gov/xuzhou/hrss.ts
const route = {
path: "/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 $ = load((await got_default({
method: "get",
url: currentUrl
})).data);
let items = (category ? $(".module-items a") : $(".bdl[data-target=\"1\"]").eq(1).find("a")).toArray().map((item) => {
const $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_default.tryGet(item.link, async () => {
const content = load((await got_default({
method: "get",
url: item.link
})).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
};
}
//#endregion
export { route };