rsshub
Version:
Make RSS Great Again!
107 lines (104 loc) • 3.51 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/yomiuri/news.ts
const route = {
path: "/:category?",
categories: ["traditional-media"],
example: "/yomiuri/news",
parameters: { category: "Category, `news` by default" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["www.yomiuri.co.jp/:category?"] }],
name: "News",
maintainers: ["Arracc"],
handler,
description: `Free articles only.
| Category | Parameter |
| -------------- | --------- |
| 新着・速報 | news |
| 社会 | national |
| 政治 | politics |
| 経済 | economy |
| スポーツ | sports |
| 国際 | world |
| 地域 | local |
| 科学・IT | science |
| エンタメ・文化 | culture |
| ライフ | life |
| 医療・健康 | medical |
| 教育・就活 | kyoiku |
| 選挙・世論調査 | election |
| 囲碁・将棋 | igoshougi |
| 社説 | editorial |
| 皇室 | koushitsu |`
};
async function handler(ctx) {
const { category = "news" } = ctx.req.param();
const url = `https://www.yomiuri.co.jp/${category}`;
const data = (await got_default(url)).data;
const $ = load(data);
let list;
if (category === "news") list = $(".news-top-latest__list .news-top-latest__list-item__inner").toArray().map((item) => {
item = $(item);
const a = item.find("h3 a");
return {
title: a.text(),
link: a.attr("href"),
pubDate: timezone(parseDate(item.find("time").attr("datetime")), 9),
locked: item.find(".icon-locked").length
};
});
else {
$(".p-category-reading-recommend").remove();
list = $(".layout-contents__main .c-list-title").toArray().map((item) => {
item = $(item);
const a = item.find("h3 a");
const parent = item.parent();
return {
title: a.text(),
link: a.attr("href"),
pubDate: timezone(parseDate(parent.find("time").attr("datetime")), 9),
locked: parent.find(".c-list-member-only").length
};
});
}
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
if (item.locked) return item;
const $$1 = load((await got_default(item.link)).data);
const mainContent = $$1(".p-main-contents");
mainContent.find("[class^=ev-article], svg").remove();
mainContent.find("img").each((_, img) => {
img.attribs.src = img.attribs.src.split("?")[0];
});
item.description = mainContent.html();
item.pubDate = parseDate($$1("meta[property=\"article:published_time\"]").attr("content"));
item.updated = parseDate($$1("meta[property=\"article:modified_time\"]").attr("content"));
const tag = $$1(".p-header-category-breadcrumbs li a").last().text();
item.category = tag;
item.title = `[${tag}] ${item.title}`;
return item;
})));
return {
title: $("head title").text(),
link: url,
image: "https://www.yomiuri.co.jp/apple-touch-icon.png",
item: items
};
}
//#endregion
export { route };