rsshub
Version:
Make RSS Great Again!
73 lines (71 loc) • 2.43 kB
JavaScript
import "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { t as timezone } from "./timezone-D8cuwzTY.mjs";
import { load } from "cheerio";
//#region lib/routes/gov/moj/lfyjzj.ts
const DOMAIN = "www.moj.gov.cn";
const route = {
path: "/moj/lfyjzj",
categories: ["government"],
example: "/gov/moj/lfyjzj",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["www.moj.gov.cn/lfyjzj/lflfyjzj/*", "www.moj.gov.cn/pub/sfbgw/lfyjzj/lflfyjzj/*"] }],
name: "立法意见征集",
maintainers: ["la3rence"],
handler,
url: "www.moj.gov.cn/lfyjzj/lflfyjzj/*"
};
async function handler() {
const rootUrl = `https://${DOMAIN}`;
const currentUrl = `${rootUrl}/lfyjzj/lflfyjzj/index.html`;
const { data: response } = await got_default(currentUrl);
const $ = load(response);
const siteName = $("title:first").text();
const theme = $("div.list_title").text();
const description = `${siteName} - ${theme}`;
const icon = new URL("/images/sfbgw_favicon.ico", rootUrl).href;
const indexes = $("ul.newsMsgList_zzy li").toArray().map((li) => {
const a = $(li).find("a");
const pubDate = $(li).find("div.rightData").text();
const href = a.prop("href");
const link = href.startsWith("http") ? href : new URL(href, currentUrl).href;
return {
title: a.text(),
link,
pubDate: timezone(parseDate(pubDate), 8)
};
});
return {
item: await Promise.all(indexes.map((item) => cache_default.tryGet(`gov:mof:${item.link}`, async () => {
const { data: detailResponse } = await got_default(item.link);
const content = load(detailResponse);
item.description = content("div.TRS_Editor").html();
item.author = content("div.sT_left span:first").text().split(":")[1];
const pubDate = content("div.sT_left span:last").text().split(":")[1];
item.pubDate = pubDate ? timezone(parseDate(pubDate), 8) : item.pubDate;
return item;
}))),
title: theme,
link: currentUrl,
description,
author: siteName,
icon
};
}
//#endregion
export { route };