UNPKG

rsshub

Version:
58 lines (56 loc) 1.86 kB
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 { load } from "cheerio"; //#region lib/routes/cncf/index.ts const rootURL = "https://www.cncf.io"; const route = { path: "/:cate?", categories: ["programming"], example: "/cncf", parameters: { cate: "blog by default" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, name: "Category", maintainers: ["Fatpandac"], handler, description: `| Blog | News | Announcements | Reports | | ---- | ---- | ------------- | ------- | | blog | news | announcements | reports |` }; async function handler(ctx) { const url = `${rootURL}/${ctx.req.param("cate") ?? "blog"}/`; const $ = load((await got_default(url)).data); const title = $("h1.is-style-page-title").text(); const list = $("div.post-archive__item").toArray().map((item) => ({ title: $(item).find("span.post-archive__title").text().trim(), link: $(item).find("span.post-archive__title > a").attr("href"), pubDate: parseDate($(item).find("span.post-archive__item_date").text().split("|")[0]) })); const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => { const content = load((await got_default(item.link)).data); content("div.post-author").remove(); content("div.social-share").remove(); item.description = content("article").html(); return item; }))); return { title: `CNCF - ${title}`, link: url, item: items }; } //#endregion export { route };