UNPKG

rsshub

Version:
191 lines (174 loc) 7.8 kB
import { n as init_esm_shims, t as __dirname } from "./esm-shims-CzJ_djXG.mjs"; import "./config-C37vj7VH.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import { t as ofetch_default } from "./ofetch-BIyrKU3Y.mjs"; import { t as parseDate } from "./parse-date-BrP7mxXf.mjs"; import { t as cache_default } from "./cache-Bo__VnGm.mjs"; import { t as art } from "./render-BQo6B4tL.mjs"; import { t as timezone } from "./timezone-D8cuwzTY.mjs"; import path from "node:path"; import * as cheerio from "cheerio"; //#region lib/routes/hket/index.ts init_esm_shims(); const urlMap = { srac: { baseUrl: "https://china.hket.com" }, sran: { baseUrl: "https://inews.hket.com" }, srat: { baseUrl: "https://topick.hket.com" }, sraw: { baseUrl: "https://wealth.hket.com" } }; const route = { path: "/:category?", categories: ["traditional-media"], example: "/hket/sran001", parameters: { category: "分类,默认为全部新闻,可在 URL 中找到,部分见下表" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [ { source: ["china.hket.com/:category/*"], target: "/:category" }, { source: ["inews.hket.com/:category/*"], target: "/:category" }, { source: ["topick.hket.com/:category/*"], target: "/:category" }, { source: ["wealth.hket.com/:category/*"], target: "/:category" }, { source: ["www.hket.com/"], target: "/" } ], name: "新闻", maintainers: ["TonyRL"], handler, url: "www.hket.com/", description: `香港经济日报已有提供简单 RSS,详细可前往官方网站: [https://www.hket.com/rss](https://www.hket.com/rss) 此路由主要补全官方 RSS 全文输出及完善分类输出。 <details> <summary>分类</summary> | sran001 | sran008 | sran010 | sran011 | sran012 | srat006 | | -------- | -------- | -------- | -------- | -------- | -------- | | 全部新闻 | 财经地产 | 科技信息 | 国际新闻 | 商业新闻 | 香港新闻 | | sran009 | sran009-1 | sran009-2 | sran009-3 | sran009-4 | sran009-5 | sran009-6 | | -------- | --------- | --------- | ---------- | --------- | --------- | --------- | | 即时财经 | 股市 | 新股 IPO | 新经济追踪 | 当炒股 | 宏观解读 | Hot Talk | | sran011-1 | sran011-2 | sran011-3 | | --------- | ------------ | ------------ | | 环球政治 | 环球经济金融 | 环球社会热点 | | sran016 | sran016-1 | sran016-2 | sran016-3 | sran016-4 | sran016-5 | | ---------- | ---------- | ---------- | ---------- | ---------- | -------------- | | 大湾区主页 | 大湾区发展 | 大湾区工作 | 大湾区买楼 | 大湾区消费 | 大湾区投资理财 | | srac002 | srac003 | srac004 | srac005 | | -------- | -------- | -------- | -------- | | 即时中国 | 经济脉搏 | 国情动向 | 社会热点 | | srat001 | srat008 | srat055 | srat069 | srat070 | | ------- | ------- | -------- | -------- | --------- | | 话题 | 观点 | 休闲消费 | 娱乐新闻 | TOPick TV | | srat052 | srat052-1 | srat052-2 | srat052-3 | | -------- | --------- | ---------- | --------- | | 健康主页 | 食用安全 | 医生诊症室 | 保健美颜 | | srat053 | srat053-1 | srat053-2 | srat053-3 | srat053-4 | | -------- | --------- | --------- | --------- | ---------- | | 亲子主页 | 儿童健康 | 育儿经 | 教育 | 亲子好去处 | | srat053-6 | srat053-61 | srat053-62 | srat053-63 | srat053-64 | | ----------- | ---------- | ---------- | ---------- | ---------- | | Band 1 学堂 | 幼稚园 | 中小学 | 尖子教室 | 海外升学 | | srat072-1 | srat072-2 | srat072-3 | srat072-4 | | ---------- | ---------- | ---------------- | ----------------- | | 健康身心活 | 抗癌新方向 | 「糖」「心」解密 | 风湿不再 你我自在 | | sraw007 | sraw009 | sraw010 | sraw011 | sraw012 | sraw014 | sraw018 | sraw019 | | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | | 全部博客 | Bloggers | 收息攻略 | 精明消费 | 退休规划 | 个人增值 | 财富管理 | 绿色金融 | | sraw015 | sraw015-07 | sraw015-08 | sraw015-09 | sraw015-10 | | -------- | ---------- | ---------- | ---------- | ---------- | | 移民百科 | 海外置业 | 移民攻略 | 移民点滴 | 海外理财 | | sraw020 | sraw020-1 | sraw020-2 | sraw020-3 | sraw020-4 | | -------- | ------------ | --------- | --------- | --------- | | ESG 主页 | ESG 趋势政策 | ESG 投资 | ESG 企业 | ESG 社会 | </details>` }; async function handler(ctx) { const { category = "sran001" } = ctx.req.param(); const baseUrl = urlMap[category.slice(0, 4)].baseUrl; const response = await ofetch_default(`${baseUrl}/${category}`); const $ = cheerio.load(response); const list = $(".main-listing-container div.listing-title > a").toArray().map((item) => { item = $(item); const url = item.parent().parent().find(".share-button").data("url"); return { title: item.text().trim(), link: url.startsWith("http") ? url : baseUrl + url }; }); const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => { if (item.link.startsWith("https://invest.hket.com/") || item.link.startsWith("https://ps.hket.com/")) { const data = await (item.link.startsWith("https://invest.hket.com/") ? ofetch_default("https://invest.hket.com/content-api-middleware/content", { headers: { referer: item.link }, method: "POST", body: { id: item.link.split("/").pop(), channel: "invest" } }) : ofetch_default("https://data02.hket.com/content", { headers: { referer: item.link }, query: { id: item.link.split("/").pop(), channel: "epc" } })); item.pubDate = timezone(parseDate(data.displayDate), 8); item.updated = timezone(parseDate(data.lastModifiedDate), 8); item.author = data.authors?.map((e) => e.name).join(", "); item.description = data.content.full || data.content.partial; item.category = data.contentTags?.map((e) => e.name); return item; } const response$1 = await ofetch_default(item.link); const $$1 = cheerio.load(response$1); item.category = $$1(".contentTags-container > .hotkey-container-wrapper > .hotkey-container > a").toArray().map((e) => $$1(e).text().trim()); $$1("source").remove(); $$1("p.article-detail_caption, .article-extend-button, span.click-to-enlarge").remove(); $$1(".loyalty-promotion-container, .relatedContents-container, .article-details-center-sharing-btn, .article-detail_login").remove(); $$1(".gallery-related-container, .contentTags-container").remove(); $$1(".listing-widget-126, div.template-default.hket-row.no-padding.detail-widget").remove(); $$1(".ad_MobileMain, .adunit, .native-ad").remove(); $$1("span").each((_, e) => { if ($$1(e).text().startsWith("+")) $$1(e).remove(); }); $$1("img").each((_, e) => { e = $$1(e); e.replaceWith(art(path.join(__dirname, "templates/image-5e0e542d.art"), { alt: e.data("alt"), src: e.data("src") ?? e.attr("src") })); }); const ldJson = JSON.parse($$1("script[type=\"application/ld+json\"]").toArray().find((e) => $$1(e).text().includes("NewsArticle"))?.children[0].data); item.description = $$1("div.article-detail-body-container").html(); item.pubDate = parseDate(ldJson.datePublished); item.updated = parseDate(ldJson.dateModified); return item; }))); return { title: $("head meta[name=title]").attr("content")?.trim(), link: baseUrl + "/" + category, description: $("head meta[name=description]").attr("content")?.trim(), item: items, language: "zh-hk" }; } //#endregion export { route };