rsshub
Version:
Make RSS Great Again!
90 lines (87 loc) • 2.94 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 { t as timezone } from "./timezone-D8cuwzTY.mjs";
import path from "node:path";
import { load } from "cheerio";
//#region lib/routes/focustaiwan/index.ts
init_esm_shims();
const route = {
path: "/:category?",
categories: ["new-media"],
example: "/focustaiwan",
parameters: { category: "分类,见下表,默认为 news" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "Category",
maintainers: ["nczitzk"],
handler,
description: `| Latest | Editor's Picks | Photos of the Day |
| ------ | -------------- | ----------------- |
| news | editorspicks | photos |
| Politics | Cross-strait | Business | Society | Science & Tech | Culture | Sports |
| -------- | ------------ | -------- | ------- | -------------- | ------- | ------ |
| politics | cross-strait | business | society | science & tech | culture | sports |`
};
async function handler(ctx) {
const response = await got_default({
method: "post",
url: `https://focustaiwan.tw/cna2019api/cna/FTNewsList`,
form: {
action: 4,
category: ctx.req.param("category") ?? "news",
pageidx: 2,
pagesize: 50
}
});
const list = response.data.ResultData.Items.map((item) => ({
title: item.HeadLine,
link: item.PageUrl,
category: item.ClassName,
pubDate: timezone(parseDate(item.CreateTime), 8)
}));
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const detailResponse = await got_default({
method: "get",
url: item.link
});
const content = load(detailResponse.data);
content("img").each(function() {
content(this).html(`<img src="${content(this).attr("data-src")}">`);
});
const image = content("meta[property=\"og:image\"]").attr("content");
const matches = detailResponse.data.match(/var pAudio_url = "(.*)\.mp3";/);
if (matches) {
item.enclosure_url = matches[1];
item.enclosure_type = "audio/mpeg";
item.itunes_item_image = image;
}
item.description = art(path.join(__dirname, "templates/article-46078208.art"), {
image,
description: content(".paragraph").html()
});
return item;
})));
return {
title: response.data.ResultData.MetaData.Title,
link: response.data.ResultData.MetaData.CanonicalUrl,
item: items,
itunes_author: "Focus Taiwan",
image: "https://imgcdn.cna.com.tw/Eng/website/img/default.png"
};
}
//#endregion
export { route };