rsshub
Version:
Make RSS Great Again!
68 lines (66 loc) • 2.16 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 "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import "./render-BQo6B4tL.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { i as rootUrl, r as processItems, t as apiRootUrl } from "./util-DdepA4pY.mjs";
import { load } from "cheerio";
//#region lib/routes/readhub/daily.ts
const route = {
path: "/daily",
categories: ["new-media"],
example: "/readhub/daily",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["readhub.cn/daily"] }],
name: "每日早报",
maintainers: ["nczitzk", "fashioncj"],
handler,
url: "readhub.cn/daily"
};
async function handler(ctx) {
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 11;
const currentUrl = new URL("daily", apiRootUrl).href;
const infoUrl = new URL("daily", rootUrl).href;
const { data: currentResponse } = await got_default(currentUrl);
let items = currentResponse.data.items.slice(0, limit).map((item) => ({
title: item.title,
link: new URL(`topic/${item.uid}`, rootUrl).href,
description: `<p>${item.summary}</p>`,
guid: item.uid
}));
items = await processItems(items, cache_default.tryGet);
const { data: currentHTMLResponse } = await got_default(infoUrl);
const $ = load(currentHTMLResponse);
const author = $("meta[name=\"application-name\"]").prop("content");
const subtitle = $("meta[property=\"og:title\"]").prop("content");
const image = "https://readhub.cn/icons/icon-192x192.png";
const icon = new URL($("link[rel=\"apple-touch-icon\"]").prop("href"), rootUrl);
return {
item: items,
title: `${author} - ${route.name}`,
link: currentUrl,
description: $("meta[name=\"description\"]").prop("content"),
language: "zh",
image,
icon,
logo: icon,
subtitle,
author,
allowEmpty: true
};
}
//#endregion
export { route };