rsshub
Version:
Make RSS Great Again!
93 lines (91 loc) • 3.21 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 { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { t as timezone } from "./timezone-D8cuwzTY.mjs";
import { load } from "cheerio";
//#region lib/routes/udn/global/index.ts
const route = {
path: "/global/:category?",
categories: ["traditional-media"],
example: "/udn/global",
parameters: { category: "分类,见下表,默认为首頁" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["global.udn.com/global_vision/index", "global.udn.com/"] }],
name: "轉角國際 - 首頁",
maintainers: ["nczitzk"],
handler,
description: `| 首頁 | 編輯精選 | 熱門文章 |
| ---- | -------- | -------- |
| | editor | hot |`
};
async function handler(ctx) {
const category = ctx.req.param("category");
const rootUrl = "https://global.udn.com";
const currentUrl = `${rootUrl}/global_vision/index`;
const $ = load((await got_default({
method: "get",
url: currentUrl
})).data);
const categoriesConf = {
hot: {
articleSelector: ".carousel__list .carousel__item",
titleExtractor: (e) => e.attr("title").trim()
},
editor: {
articleSelector: ".list-container--featured .list-vertical__item",
titleExtractor: (e) => e.find(".list-vertical__title").text().trim()
},
default: {
articleSelector: ".list-container--index .list-vertical__item",
titleExtractor: (e) => e.find(".list-vertical__title").text().trim()
}
};
const getItems = (config) => $(config.articleSelector).toArray().map((item) => {
const a = $(item);
const rawLink = a.attr("href").split("?")[0];
return {
title: config.titleExtractor(a),
link: rawLink.startsWith("http") ? rawLink : `${rootUrl}${rawLink}`
};
});
let items;
if (category) {
const conf = categoriesConf[category];
items = getItems(conf);
} else {
const defaultItems = getItems(categoriesConf.default);
const combinedItems = [...getItems(categoriesConf.hot), ...defaultItems];
items = [...new Map(combinedItems.map((item) => [item.link, item])).values()];
}
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const content = load((await got_default({
method: "get",
url: item.link
})).data);
item.author = content(".article-content__authors-name").first().text().trim();
item.pubDate = timezone(parseDate(content("meta[property=\"article:published_time\"]").attr("content")), 8);
item.description = content(".article-content__focus").html() + content(".article-content__editor").find("p, figure, h2, .video-container").toArray().map((e) => content.html(e)).join("");
item.category = content("meta[name=\"news_keywords\"]").attr("content").split(",");
return item;
})));
return {
title: $("title").text(),
link: currentUrl,
item: items
};
}
//#endregion
export { route };