UNPKG

rsshub

Version:
83 lines (82 loc) 2.83 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 { t as timezone } from "./timezone-BBvDwS_3.mjs"; import { load } from "cheerio"; import iconv from "iconv-lite"; //#region lib/routes/c114/roll.ts const handler = async (ctx) => { const { original = "false" } = ctx.req.param(); const limit = ctx.req.query("limit") ? Number(ctx.req.query("limit")) : 15; const rootUrl = "https://www.c114.com.cn"; const currentUrl = new URL(`news/roll.asp${original === "true" ? "?o=true" : ""}`, rootUrl).href; const { data: response } = await got_default(currentUrl, { responseType: "buffer" }); const $ = load(iconv.decode(response, "gbk")); const language = $("html").prop("lang"); let items = $("div.new_list_c").slice(0, limit).toArray().map((item) => { const $item = $(item); return { title: $item.find("h6 a").text(), pubDate: timezone(parseDate($item.find("div.new_list_time").text(), ["HH:mm", "M/D"]), 8), link: new URL($item.find("h6 a").prop("href"), rootUrl).href, author: $item.find("div.new_list_author").text().trim(), language }; }); items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => { const { data: detailResponse } = await got_default(item.link, { responseType: "buffer" }); const $$ = load(iconv.decode(detailResponse, "gbk")); const title = $$("h1").text(); const description = $$("div.text").html(); item.title = title; item.description = description; item.pubDate = timezone(parseDate($$("div.r_time").text(), "YYYY/M/D HH:mm"), 8); item.author = $$("div.author").first().text().trim(); item.content = { html: description, text: $$(".text").text() }; item.language = language; return item; }))); const image = new URL($("div.top2-1 a img").prop("src"), rootUrl).href; return { title: $("title").text(), description: $("meta[name=\"description\"]").prop("content"), link: currentUrl, item: items, allowEmpty: true, image, author: $("p.top1-1-1 a").first().text(), language }; }; const route = { path: "/roll/:original?", name: "滚动资讯", url: "c114.com.cn", maintainers: ["nczitzk"], handler, example: "/c114/roll", parameters: { original: "只看原创,可选 true 和 false,默认为 false" }, description: "", categories: ["new-media"], features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportRadar: true, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [{ source: ["c114.com.cn/news/roll.asp"], target: (_, url) => { const original = new URL(url).searchParams.get("o"); return `/roll${original ? `/${original}` : ""}`; } }] }; //#endregion export { handler, route };