rsshub
Version:
Make RSS Great Again!
68 lines (67 loc) • 2.14 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/itsec/news.ts
const currentUrl = `https://www.itsec.gov.cn/zxxw/index.html`;
const route = {
path: "/news",
categories: ["government"],
example: "/itsec/news",
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "新闻发布",
maintainers: ["ch3n4y"],
radar: [{
source: ["www.itsec.gov.cn/zxxw/index.html", "www.itsec.gov.cn/zxxw/"],
target: "/news"
}],
handler
};
async function handler() {
const { data: response } = await got_default(currentUrl);
const $ = load(response);
const list = $(".listbox .list-every li").toArray().map((item) => {
const $item = $(item);
const $link = $item.find("a");
const title = $link.text() || $link.prop("title");
const href = $link.prop("href");
const date = $item.find("span").text();
if (!title || !href) return null;
return {
title,
link: new URL(href, currentUrl).href,
pubDate: date ? timezone(parseDate(date), 8) : void 0
};
}).filter((item) => item !== null);
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const $detail = load(detailResponse);
const title = $detail(".article-tit").text() || item.title;
const date = $detail(".article .date").text();
const author = $detail(".article .from").last().text().trim();
$detail("#js_content style").remove();
const description = $detail("#js_content .TRS_Editor").html() || $detail("#js_content").html();
return {
title,
link: item.link,
description,
author,
pubDate: date ? timezone(parseDate(date), 8) : item.pubDate
};
})));
return {
title: "中国信息安全测评中心 - 新闻发布",
link: currentUrl,
item: items
};
}
//#endregion
export { route };