rsshub
Version:
Make RSS Great Again!
81 lines (79 loc) • 3.16 kB
JavaScript
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 "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.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";
import { load } from "cheerio";
import pMap from "p-map";
//#region lib/routes/tradingview/blog.ts
init_esm_shims();
const route = {
path: "/blog/:category{.+}?",
name: "Unknown",
maintainers: [],
handler
};
async function handler(ctx) {
const { category = "en" } = ctx.req.param();
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 22;
const rootUrl = "https://www.tradingview.com";
const currentUrl = new URL(`blog/${category.endsWith("/") ? category : `${category}/`}`, rootUrl).href;
const { data: response } = await got_default(currentUrl);
const $ = load(response);
const items = await pMap($("article[id]").slice(0, limit).toArray().map((item) => {
item = $(item);
const title = item.find("div.title").text();
return {
title,
link: item.find("a.articles-grid-link").prop("href"),
description: art(path.join(__dirname, "templates/description-96311549.art"), { image: {
src: item.find("div.articles-grid-img img").prop("src").replace(/-\d+x\d+\./, "."),
alt: title
} }),
category: item.find("a.section").toArray().map((c) => $(c).text()),
guid: `tradingview-blog-${category}-${item.prop("id")}`,
pubDate: parseDate(item.find("div.date").text(), "MMM D, YYYY")
};
}), (item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const content = load(detailResponse);
content("div.entry-content").find("img").each((_, e) => {
content(e).replaceWith(art(path.join(__dirname, "templates/description-96311549.art"), { image: {
src: content(e).prop("src").replace(/-\d+x\d+\./, "."),
width: content(e).prop("width"),
height: content(e).prop("height")
} }));
});
item.title = content("meta[property=\"og:title\"]").prop("content");
item.description = art(path.join(__dirname, "templates/description-96311549.art"), {
image: {
src: content("meta[property=\"og:image\"]").prop("content"),
alt: item.title
},
description: content("div.entry-content").html()
});
item.author = content("meta[property=\"og:site_name\"]").prop("content");
item.category = content("div.sections a.section").toArray().map((c) => content(c).text());
item.pubDate = parseDate(content("div.single-date").text(), "MMM D, YYYY");
return item;
}), { concurrency: 3 });
const icon = new URL($("link[rel=\"icon\"]").prop("href"), rootUrl).href;
return {
item: items,
title: $("title").text(),
link: currentUrl,
description: $("div.site-subtitle").text(),
language: $("html").prop("lang"),
icon,
logo: icon,
subtitle: $("h1.site-title").text()
};
}
//#endregion
export { route };