UNPKG

rsshub

Version:
48 lines (46 loc) 1.59 kB
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 { c as fetchData, d as rootUrl, t as apiArticleRootUrl, u as processItems } from "./util-DaV7o5tf.mjs"; //#region lib/routes/huxiu/collection.ts const route = { path: "/collection/:id", categories: ["new-media"], example: "/huxiu/collection/212", parameters: { id: "文集 id,可在对应文集页 URL 中找到" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: true, supportPodcast: true, supportScihub: false }, name: "文集", maintainers: ["AlexdanerZe", "nczitzk"], handler, description: `更多文集请参见 [文集](https://www.huxiu.com/collection)` }; async function handler(ctx) { const id = ctx.req.param("id"); const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 10; const apiUrl = new URL("web/collection/articleList", apiArticleRootUrl).href; const currentUrl = new URL(`collection/${id}.html`, rootUrl).href; const { data: response } = await got_default.post(apiUrl, { form: { platform: "www", collection_id: id } }); return { item: await processItems(response.data.datalist, limit, cache_default.tryGet), ...await fetchData(currentUrl) }; } //#endregion export { route };