UNPKG

rsshub

Version:
54 lines (53 loc) 1.75 kB
import { t as parseDate } from "./parse-date-3kcy2Eau.mjs"; import { t as cache_default } from "./cache-C1Y-9qDV.mjs"; import { t as got_default } from "./got-DUpa1V3-.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 cate = ctx.req.param("cate") ?? "blog"; const url = `${rootURL}/${cate}/`; const response = await got_default(url); const $ = load(response.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("|", 1)[0]) })); const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => { const detailResponse = await got_default(item.link); const content = load(detailResponse.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 };