rsshub
Version:
Make RSS Great Again!
103 lines (101 loc) • 3.44 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";
//#region lib/routes/cankaoxiaoxi/index.ts
init_esm_shims();
const route = {
path: ["/column/:id?", "/:id?"],
categories: ["traditional-media"],
example: "/cankaoxiaoxi/column/diyi",
parameters: { id: "栏目 id,默认为 `diyi`,即第一关注" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "栏目",
maintainers: ["yuxinliu-alex", "nczitzk"],
handler,
description: `| 栏目 | id |
| -------------- | -------- |
| 第一关注 | diyi |
| 中国 | zhongguo |
| 国际 | gj |
| 观点 | guandian |
| 锐参考 | ruick |
| 体育健康 | tiyujk |
| 科技应用 | kejiyy |
| 文化旅游 | wenhualy |
| 参考漫谈 | cankaomt |
| 研究动态 | yjdt |
| 海外智库 | hwzk |
| 业界信息・观点 | yjxx |
| 海外看中国城市 | hwkzgcs |
| 译名趣谈 | ymymqt |
| 译名发布 | ymymfb |
| 双语汇 | ymsyh |
| 参考视频 | video |
| 军事 | junshi |
| 参考人物 | cankaorw |`
};
async function handler(ctx) {
const id = ctx.req.param("id") ?? "diyi";
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit")) : 50;
const rootUrl = "https://china.cankaoxiaoxi.com";
const listApiUrl = `${rootUrl}/json/channel/${id}/list.json`;
const channelApiUrl = `${rootUrl}/json/channel/${id}.channeljson`;
const currentUrl = `${rootUrl}/#/generalColumns/${id}`;
const listResponse = await got_default({
method: "get",
url: listApiUrl
});
const channelResponse = await got_default({
method: "get",
url: channelApiUrl
});
let items = listResponse.data.list.slice(0, limit).map((item) => ({
title: item.data.title,
author: item.data.userName,
category: item.data.channelName,
pubDate: timezone(parseDate(item.data.publishTime), 8),
link: item.data.moVideoPath ? item.data.sourceUrl : `${rootUrl}/json/content/${item.data.url.match(/\/pages\/(.*?)\.html/)[1]}.detailjson`,
video: item.data.moVideoPath,
cover: item.data.mCoverImg
}));
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
if (item.video) item.description = art(path.join(__dirname, "templates/description-5183a709.art"), {
video: item.video,
cover: item.cover
});
else {
const data = (await got_default({
method: "get",
url: item.link
})).data;
item.link = `${rootUrl}/#/detailsPage/${id}/${data.id}/1/${data.publishTime.split(" ")[0]}`;
item.description = data.txt;
}
return item;
})));
return {
title: `参考消息 - ${channelResponse.data.name}`,
link: currentUrl,
description: "参考消息",
language: "zh-cn",
item: items
};
}
//#endregion
export { route };