rsshub
Version:
Make RSS Great Again!
68 lines (66 loc) • 2.57 kB
JavaScript
import "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { load } from "cheerio";
//#region lib/routes/ulapia/index.ts
const rootUrl = "http://www.ulapia.com";
const titleMap = {
brokerage_news: "券商晨报",
stock_research: "个股研报",
industry_research: "行业研报",
strategy_research: "策略研报",
macro_research: "宏观研报",
ipo_research: "IPO研报"
};
const selectorMap = {
brokerage_news: "div.col-md-4",
stock_research: "div.col-md-6",
industry_research: "div.col-md-6",
strategy_research: "div.col-md-6",
macro_research: "div.col-md-6",
ipo_research: "div.col-md-6"
};
const route = {
path: "/reports/:category?",
categories: ["finance"],
example: "/ulapia/reports/stock_research",
parameters: { category: "频道类型,默认为券商晨报(今日晨报)" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "频道",
maintainers: ["Fatpandac"],
handler,
description: `| 个股研报 | 行业研报 | 策略研报 | 宏观研报 | 新股研报 | 券商晨报(今日晨报) |
| :-------------: | :----------------: | :----------------: | :-------------: | :-----------: | :------------------: |
| stock\_research | industry\_research | strategy\_research | macro\_research | ipo\_research | brokerage\_news |`
};
async function handler(ctx) {
const category = ctx.req.param("category") ?? "brokerage_news";
const url = `${rootUrl}/reports/${category}`;
const $ = load((await got_default.get(url)).data);
const items = $(String(selectorMap[category])).toArray().filter((item) => $(item).find("img").attr("src")).map((item) => ({
title: `${$(item).find("strong").text()} ${$(item).find("h5.mb-1").text()}`,
author: $(item).find("div.col.p-8.d-flex.px-3.py-3.flex-column.position-static > div:nth-child(4) > span:nth-child(2)").text(),
link: $(item).find("h5.mb-1 > a").attr("href"),
description: `<img src="${$(item).find("img").attr("src").split("!")[0]}">`,
pubDate: parseDate($(item).find("div.mb-0.text-muted").last().text().split(":")[1], "YYYY-MM-DD")
}));
return {
title: ` ulapia - ${titleMap[category]}`,
link: url,
item: items
};
}
//#endregion
export { route };