rsshub
Version:
Make RSS Great Again!
70 lines (68 loc) • 2.58 kB
JavaScript
import "./dist-Bog6z_OM.mjs";
import "./config-MQ-7ebJ_.mjs";
import "./logger-C4avouvV.mjs";
import "./ofetch-DKl_Ma9g.mjs";
import { t as parseDate } from "./parse-date-r5WDWHno.mjs";
import "./is-worker-DESPicPc.mjs";
import { t as cache_default } from "./cache-SV6W5EPy.mjs";
import "./helpers-Bo4JQYdN.mjs";
import { t as got_default } from "./got-CO-ndVl2.mjs";
import { t as timezone } from "./timezone-CA9Huotp.mjs";
import { load } from "cheerio";
//#region lib/routes/gov/ndrc/xwdt.ts
const route = {
path: "/ndrc/xwdt/:category{.+}?",
name: "新闻动态",
example: "/gov/ndrc/xwdt",
parameters: { category: "分类,见下表,默认为新闻发布" },
maintainers: ["nczitzk"],
categories: ["government"],
handler,
radar: [{
title: "中华人民共和国国家发展和改革委员会 - 新闻动态",
source: ["ndrc.gov.cn/xwdt/:category*"],
target: (params) => {
const category = params.category;
return `/gov/ndrc/xwdt/${category ? `/${category.endsWith("/") ? category : `${category}/`}` : "/"}`;
}
}],
description: `| 新闻发布 | 通知通告 | 委领导动态 | 司局动态 | 地方动态 |
| -------- | -------- | ---------- | -------- | -------- |
| xwfb | tzgg | wlddt | sjdt | dfdt |`
};
async function handler(ctx) {
const category = ctx.req.param("category") || "xwfb";
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 25;
const rootUrl = "https://www.ndrc.gov.cn";
const currentUrl = category.includes("dt") ? `${rootUrl}/xwdt/dt/${category}` : `${rootUrl}/xwdt/${category}`;
const $ = load((await got_default({
method: "get",
url: currentUrl
})).data);
const list = $(".u-list li a").slice(0, limit).toArray().map((item) => {
item = $(item);
let link = item.attr("href");
if (link.indexOf("../../..") === 0) link = `${rootUrl}${link.replace("../../..", "")}`;
else if (link.indexOf(".") === 0) link = `${currentUrl}${link.replace(".", "")}`;
return {
title: item.text(),
link
};
});
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const content = load((await got_default({
method: "get",
url: item.link
})).data);
item.description = (content(".TRS_Editor").html() || content(".article_con").html() || "") + (content(".attachment").html() || "");
item.pubDate = timezone(parseDate(content("meta[name=\"PubDate\"]").attr("content")), 8);
return item;
})));
return {
title: $("title").text(),
link: currentUrl,
item: items
};
}
//#endregion
export { route };