UNPKG

rsshub

Version:
104 lines (101 loc) 3.19 kB
import "./esm-shims-CzJ_djXG.mjs"; import "./config-C37vj7VH.mjs"; import { t as ViewType } from "./types-D84BRIt4.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import { t as ofetch_default } from "./ofetch-BIyrKU3Y.mjs"; import "./parse-date-BrP7mxXf.mjs"; import "./cache-Bo__VnGm.mjs"; import "./timezone-D8cuwzTY.mjs"; import { t as invalid_parameter_default } from "./invalid-parameter-rr4AgGpp.mjs"; import { n as rootUrl, t as processItems } from "./util-B5mTUIof.mjs"; import { load } from "cheerio"; //#region lib/routes/jisilu/category.ts const handler = async (ctx) => { const { id } = ctx.req.param(); if (!id) throw new invalid_parameter_default("请填入合法的分类 id,参见广场 https://www.jisilu.cn/explore/"); const limit = Number.parseInt(ctx.req.query("limit") ?? "30", 10); const targetUrl = new URL(`/category/${id}`, rootUrl).href; const $ = load(await ofetch_default(targetUrl)); const language = $("html").prop("lang") ?? "zh"; const items = await processItems($, $("div.aw-question-list"), limit); $("div.pagination").remove(); const author = $("meta[name=\"keywords\"]").prop("content").split(/,/)[0]; const feedImage = $("div.aw-logo img").prop("src"); return { title: `${$("title").text()} - ${$("li.active").slice(1).toArray().map((l) => $(l).text()).join("|")}`, description: $("meta[name=\"description\"]").prop("content"), link: targetUrl, item: items, allowEmpty: true, image: feedImage, author, language, id: targetUrl }; }; const route = { path: "/category/:id", name: "分类", url: "www.jisilu.cn", maintainers: ["nczitzk"], handler, example: "/jisilu/category/4", parameters: { id: "分类 id,可在对应分类页 URL 中找到" }, description: `::: tip 若订阅 [债券/可转债](https://www.jisilu.cn/category/4),网址为 \`https://www.jisilu.cn/category/4\`,请截取 \`https://www.jisilu.cn/category/\` 到末尾的部分 \`4\` 作为 \`id\` 参数填入,此时目标路由为 [\`/jisilu/category/4\`](https://rsshub.app/jisilu/category/4)。 ::: | 新股 | 债券/可转债 | 套利 | 其他 | 基金 | 股票 | | ---- | ----------- | ---- | ---- | ---- | ---- | | 3 | 4 | 5 | 6 | 7 | 8 | `, categories: ["finance"], features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportRadar: true, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [ { source: ["www.jisilu.cn/category/:id"], target: "/category/:id" }, { title: "新股", source: ["www.jisilu.cn/category/3"], target: "/category/3" }, { title: "债券/可转债", source: ["www.jisilu.cn/category/4"], target: "/category/4" }, { title: "套利", source: ["www.jisilu.cn/category/5"], target: "/category/5" }, { title: "其他", source: ["www.jisilu.cn/category/6"], target: "/category/6" }, { title: "基金", source: ["www.jisilu.cn/category/7"], target: "/category/7" }, { title: "股票", source: ["www.jisilu.cn/category/8"], target: "/category/8" } ], view: ViewType.Articles }; //#endregion export { handler, route };