UNPKG

rsshub

Version:
56 lines (54 loc) 1.9 kB
import "./dist-Bog6z_OM.mjs"; import "./config-MQ-7ebJ_.mjs"; import "./logger-C4avouvV.mjs"; import { t as ofetch_default } from "./ofetch-DKl_Ma9g.mjs"; import { t as parseDate } from "./parse-date-r5WDWHno.mjs"; import { t as timezone } from "./timezone-CA9Huotp.mjs"; import { load } from "cheerio"; //#region lib/routes/qiche365/recall.ts const baseUrl = "https://www.qiche365.org.cn"; const route = { path: "/recall/:channel", name: "汽车召回", example: "/qiche365/recall/1", parameters: { channel: "频道,见下表" }, description: `| 国内召回新闻 | 国内召回公告 | 国外召回新闻 | 国外召回公告 | | ------------ | ------------ | ------------ | ------------ | | 1 | 2 | 3 | 4 |`, categories: ["government"], maintainers: ["huanfe1"], handler, url: "qiche365.org.cn/index/recall/index.html" }; async function handler(ctx) { const { channel } = ctx.req.param(); const { html } = await ofetch_default(`${baseUrl}/index/recall/index/item/${channel}.html?loadmore=1`, { method: "get", headers: { "Accept-Language": "zh-CN,zh;q=0.9" } }); const $ = load(html); const items = $("li").toArray().map((item) => { const cheerioItem = $(item); return { title: cheerioItem.find("h1").text(), link: `${baseUrl}${cheerioItem.find("a").attr("href")}`, pubDate: timezone(parseDate(cheerioItem.find("h2").html().match("</i>(.*?)<b>")[1]), 8), description: cheerioItem.find("p").text().trim(), author: cheerioItem.find("h3 span").text(), image: cheerioItem.find("img").attr("src") && `${baseUrl}${cheerioItem.find("img").attr("src")}` }; }); return { title: [ "国内召回公告", "国内召回新闻", "国外召回公告", "国外召回新闻" ][channel - 1], link: `${baseUrl}/index/recall/index.html`, item: items, language: "zh-CN" }; } //#endregion export { route };