rsshub
Version:
Make RSS Great Again!
153 lines (141 loc) • 4.63 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/chinamoney/channels.ts
const channels = {
2834: {
title: "最新 - 外汇市场公告 - 市场公告",
urlPath: "/chinese/scgg-whscgg/"
},
2835: {
title: "市场公告通知 - 外汇市场公告 - 市场公告",
urlPath: "/chinese/scgg-whscgg/"
},
2836: {
title: "中心会员公告 - 外汇市场公告 - 市场公告",
urlPath: "/chinese/scgg-whscgg/"
},
2837: {
title: "会员信息公告 - 外汇市场公告 - 市场公告",
urlPath: "/chinese/scgg-whscgg/"
},
"2839,2840,2841": {
title: "最新 - 本币市场公告 - 市场公告",
urlPath: "/chinese/scggbbscgg/"
},
2839: {
title: "市场公告通知 - 本币市场公告 - 市场公告",
urlPath: "/chinese/scggbbscgg/"
},
2840: {
title: "中心成员公告 - 本币市场公告 - 市场公告",
urlPath: "/chinese/scggbbscgg/"
},
2841: {
title: "成员信息公告 - 本币市场公告 - 市场公告",
urlPath: "/chinese/scggbbscgg/"
},
"2845,2846": {
title: "最新 - 央行业务公告 - 市场公告",
urlPath: "/chinese/scggyhywgg/"
},
2845: {
title: "公开市场操作 - 央行业务公告 - 市场公告",
urlPath: "/chinese/scggyhywgg/"
},
2846: {
title: "中央国库现金管理 - 央行业务公告 - 市场公告",
urlPath: "/chinese/scggyhywgg/"
},
3686: {
title: "LPR市场公告 - 贷款市场报价利率 - 本币市场",
urlPath: "/chinese/bklpr/"
}
};
//#endregion
//#region lib/routes/chinamoney/notice.ts
const route = {
path: "/:channelId?",
categories: ["finance"],
example: "/chinamoney",
parameters: { channelId: "分类,见下表,默认为 `2834`" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "公告",
maintainers: ["TonyRL"],
handler,
description: `<details>
<summary>市场公告</summary>
外汇市场公告
| 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
| ---- | ------------ | ------------ | ------------ |
| 2834 | 2835 | 2836 | 2837 |
本币市场公告
| 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
| -------------- | ------------ | ------------ | ------------ |
| 2839,2840,2841 | 2839 | 2840 | 2841 |
央行业务公告
| 最新 | 公开市场操作 | 中央国库现金管理 |
| --------- | ------------ | ---------------- |
| 2845,2846 | 2845 | 2846 |
</details>
<details>
<summary>本币市场</summary>
贷款市场报价利率
| LPR 市场公告 |
| ------------ |
| 3686 |
</details>`
};
async function handler(ctx) {
const { channelId = 2834 } = ctx.req.param();
const baseUrl = "https://www.chinamoney.com.cn";
const { data: contents } = await got_default.post(`${baseUrl}/ags/ms/cm-s-notice-query/contents`, { form: {
pageNo: 1,
pageSize: 15,
channelId
} });
const list = contents.records.map((item) => ({
title: item.title,
link: `${baseUrl}${item.draftPath}`,
pubDate: timezone(parseDate(item.releaseDate, "YYYY-MM-DD"), 8),
contentId: item.contentId
}));
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const { data: response } = await got_default(item.link);
const $ = load(response);
const article = $(".article-a-body");
article.find("*").removeAttr("style");
article.find("font").each((_, ele) => {
$(ele).replaceWith($(ele).html() ?? "");
});
article.find("span").each((_, ele) => {
$(ele).replaceWith($(ele).html() ?? "");
});
article.find(".article-a-attach-body a").each((i, ele) => {
const $ele = $(ele);
if ($ele.attr("onclick")?.startsWith("location.href=encodeURI($('#fileDownUrl').val()+'fileDownLoad.do")) {
$ele.attr("href", `${baseUrl}/dqs/cm-s-notice-query/fileDownLoad.do?mode=open&contentId=${item.contentId}&priority=${i}`);
$ele.removeAttr("onclick");
}
});
item.description = article.html();
item.pubDate = timezone(parseDate($(".AC-l span").text().trim(), "YYYY-MM-DD HH:mm"), 8);
return item;
})));
return {
title: `${Object.hasOwn(channels, channelId) ? channels[channelId].title + " - " : ""}中国货币网`,
link: `${baseUrl}${channels[channelId]?.urlPath ?? ""}`,
item: items
};
}
//#endregion
export { route };