rsshub
Version:
Make RSS Great Again!
56 lines (54 loc) • 1.86 kB
JavaScript
import { n as init_esm_shims, t as __dirname } from "./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 "./helpers-DxBp0Pty.mjs";
import { t as art } from "./render-BQo6B4tL.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import path from "node:path";
//#region lib/routes/baidu/gushitong/index.ts
init_esm_shims();
const STATUS_MAP = {
up: "上涨",
down: "下跌"
};
const route = {
path: "/gushitong/index",
categories: ["finance"],
view: ViewType.Notifications,
example: "/baidu/gushitong/index",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["gushitong.baidu.com/"] }],
name: "首页指数",
maintainers: ["CaoMeiYouRen"],
handler,
url: "gushitong.baidu.com/"
};
async function handler() {
return {
title: "百度股市通",
description: "百度股市通,汇聚全球金融市场的股票、基金、外汇、期货等实时行情,7*24小时覆盖专业财经资讯,提供客观、准确、及时、全面的沪深港美上市公司股价、财务、股东、分红等信息,让用户在复杂的金融市场,更简单的获取投资信息。",
link: "https://gushitong.baidu.com/",
item: (await got_default("https://finance.pae.baidu.com/api/indexbanner?market=ab&finClientType=pc")).data.Result.map((e) => ({
title: e.name,
description: art(path.join(__dirname, "templates/gushitong-ce82c1a7.art"), {
...e,
status: STATUS_MAP[e.status],
market: e.market.toUpperCase()
}),
link: `https://gushitong.baidu.com/index/${e.market}-${e.code}`
}))
};
}
//#endregion
export { route };