rsshub
Version:
Make RSS Great Again!
72 lines (70 loc) • 2.28 kB
JavaScript
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 "./ofetch-BIyrKU3Y.mjs";
import "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import "./timezone-D8cuwzTY.mjs";
import { t as parseItem } from "./utils-D2tHMe1W.mjs";
import { load } from "cheerio";
//#region lib/routes/gelonghui/hot-article.ts
const route = {
path: "/hot-article/:type?",
categories: ["finance"],
view: ViewType.Articles,
example: "/gelonghui/hot-article",
parameters: { type: {
description: "`day` 为日排行,`week` 为周排行,默认为 `day`",
options: [{
value: "day",
label: "日排行"
}, {
value: "week",
label: "周排行"
}]
} },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{
source: ["gelonghui.com/"],
target: "/hot-article"
}],
name: "最热文章",
maintainers: ["nczitzk"],
handler,
url: "gelonghui.com/"
};
async function handler(ctx) {
const type = ctx.req.param("type") === "week" ? 1 : 0;
const baseUrl = `https://www.gelonghui.com`;
const { data: response } = await got_default(baseUrl);
const $ = load(response);
const list = $("#hot-article ul").eq(type).find("li").toArray().map((item) => {
item = $(item);
const a = item.find("a");
return {
title: a.text(),
link: `${baseUrl}${a.attr("href")}`
};
});
const items = await Promise.all(list.map((item) => parseItem(item, cache_default.tryGet)));
return {
title: `最热文章 - ${type === 0 ? "日排行" : "周排行"} - 格隆汇`,
description: "格隆汇为中国投资者出海投资及中国公司出海融资,提供海外投资,港股开户行情,科创板股票发行数据、资讯、研究、交易等一站式服务,目前业务范围主要涉及港股与美股两大市场,未来将陆续开通台湾、日本、印度、欧洲等市场.",
image: "https://cdn.gelonghui.com/static/web/www.ico.la.ico",
link: baseUrl,
item: items
};
}
//#endregion
export { route };