UNPKG

rsshub

Version:
106 lines (105 loc) 3.5 kB
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 { Fragment, jsx } from "hono/jsx/jsx-runtime"; import { load } from "cheerio"; import { renderToString } from "hono/jsx/dom/server"; //#region lib/routes/luolei/index.tsx const renderDescription = ({ images, videos }) => renderToString(/* @__PURE__ */ jsx(Fragment, { children: images?.length ? images.map((image) => { if (videos?.[0]?.src || !image?.src) return null; const alt = image.height ?? image.width ?? image.alt; return /* @__PURE__ */ jsx("figure", { children: alt ? /* @__PURE__ */ jsx("img", { src: image.src, alt }) : /* @__PURE__ */ jsx("img", { src: image.src }) }); }) : null })); const unblurImages = ($) => { $("img[data-original-src]").each((_, el) => { const $el = $(el); $el.replaceWith(renderDescription({ images: [{ src: $el.prop("data-original-src") }] })); }); return $; }; const handler = async (ctx) => { const limit = ctx.req.query("limit") ? Number(ctx.req.query("limit")) : 50; const rootUrl = "https://luolei.org"; const { data: response } = await got_default(rootUrl); const $ = load(response); const language = $("html").prop("lang"); const themeEl = $("link[rel=\"modulepreload\"]").toArray().findLast((l) => /theme\..*\.js$/.test($(l).prop("href"))); const { data: themeResponse } = await got_default(themeEl ? new URL($(themeEl).prop("href"), rootUrl).href : void 0); let items = themeResponse.match(/\{"title":".*?"string":".*?"\}\}/g).slice(0, limit).map((item) => { item = JSON.parse(item.replaceAll(String.raw`\\"`, String.raw`\"`).replaceAll(String.raw`\\n`, "").replaceAll("\\`", "`")); const $$ = unblurImages(load(item.excerpt)); const title = item.title; const description = $$.html(); const image = item.cover; return { title, description, pubDate: parseDate(item.date.time, "x"), link: new URL(item.url, rootUrl).href, category: item.categories, author: item.author, content: { html: description, text: description }, image, banner: image, language }; }); items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => { if (item.description.length > 40) return item; const { data: detailResponse } = await got_default(item.link); const $$ = unblurImages(load(detailResponse)); $$("div.tweet-card").remove(); const title = $$("h2").first().text(); const description = $$("div.vp-doc").html(); item.title = title; item.description = description; item.content = { html: description, text: $$("div.vp-doc").text() }; item.language = language; return item; }))); const image = new URL($("img.logo").prop("src"), rootUrl).href; return { title: $("title").first().text(), description: $("meta[name=\"description\"]").prop("content"), link: rootUrl, item: items, allowEmpty: true, image, author: $("meta[property=\"og:title\"]").prop("content"), language }; }; const route = { path: "/", name: "罗磊的独立博客", url: "luolei.org", maintainers: ["nczitzk"], handler, example: "/luolei", description: "", categories: ["blog"], features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportRadar: true, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [{ source: ["luolei.org"], target: "/" }] }; //#endregion export { handler, route };