UNPKG

rsshub

Version:
81 lines (79 loc) 2.82 kB
import "./esm-shims-CzJ_djXG.mjs"; import "./config-C37vj7VH.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import "./ofetch-BIyrKU3Y.mjs"; import { t as parseDate } from "./parse-date-BrP7mxXf.mjs"; import "./helpers-DxBp0Pty.mjs"; import { t as got_default } from "./got-KxxWdaxq.mjs"; import { t as timezone } from "./timezone-D8cuwzTY.mjs"; import { load } from "cheerio"; //#region lib/routes/cs/video.ts const route = { path: "/video/:category?", categories: ["finance"], example: "/cs/video/今日聚焦", parameters: { category: "分类,见下表,默认为今日聚焦" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, name: "中证视频", description: `| 今日聚焦 | 传闻求证 | 高端访谈 | 投教课堂 | 直播汇 | | -------- | -------- | -------- | -------- | ------ |`, maintainers: ["nczitzk"], handler }; async function handler(ctx) { const { category = "今日聚焦" } = ctx.req.param(); const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 50; const rootUrl = "https://video.cs.com.cn"; const apiCategoryUrl = new URL("web/api/getCategory", rootUrl).href; const apiUrl = new URL("web/api/toSecondPage", rootUrl).href; const { data: { data: categoryResponse } } = await got_default.post(apiCategoryUrl); const selected = categoryResponse.map((c) => ({ id: c.id, title: c.categoryTitle, image: c.categoryImg, sortType: c.categorySortType })).find((c) => c.title === category || c.id === category); const currentUrl = new URL(`list.html?title=${selected.title}&id=${selected.id}`, rootUrl).href; const { data: { records: response } } = await got_default.post(apiUrl, { json: { categorySortType: selected.sortType, id: selected.id, pageNum: 1, pageSize: limit } }); const items = response.slice(0, limit).map((item) => ({ title: item.contentTitle, link: new URL(item.contentUrl, rootUrl).href, description: item.contentDetails, author: item.contentSource, pubDate: timezone(parseDate(item.contentDatetime), 8), updated: timezone(parseDate(item.updateDate), 8) })); const { data: currentResponse } = await got_default(currentUrl); const $ = load(currentResponse); const title = $("title").text(); const image = selected.image; const icon = new URL($("link[rel=\"icon\"]").prop("href"), rootUrl).href; return { item: items, title: `${title} | ${selected.title}`, link: currentUrl, description: $("meta[name=\"Description\"]").prop("content"), language: $("html").prop("lang"), image, icon, logo: icon, subtitle: $("meta[name=\"Keywords\"]").prop("content"), author: title.split("-").pop().trim(), allowEmpty: true }; } //#endregion export { route };