rsshub
Version:
Make RSS Great Again!
45 lines (44 loc) • 1.71 kB
JavaScript
import { t as rofetch } from "./ofetch-W1aeTHCo.mjs";
import { t as parseDate } from "./parse-date-CjhZE69i.mjs";
import { t as cache_default } from "./cache-CiDoUSLo.mjs";
import { t as timezone } from "./timezone-DE--ze1V.mjs";
import { load } from "cheerio";
//#region lib/routes/jnu/yw/index.ts
const route = {
path: "/yw/:type?",
categories: ["university"],
example: "/jnu/yw/col2",
parameters: { type: "栏目,默认为 `col2`" },
name: "暨南要闻",
maintainers: ["hang333"],
handler,
description: `| 学校要闻 | 综合新闻 | 专题报道 | 深读暨南 | 学者视角 | 学事荟萃 | 媒体暨大 | 教学科研 | 光影暨南 |
| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
| col2 | col3 | col4 | col5 | col6 | col7 | col8 | col9 | col11 |`
};
async function handler(ctx) {
const { type = "col2" } = ctx.req.param();
const link = `https://news.jnu.edu.cn/${type}.html`;
const $ = load(await rofetch(link));
const list = $("li.list_item").toArray().map((item) => {
const $item = $(item);
const a = $item.find("h4.news_title a");
return {
title: a.text(),
link: a.attr("href"),
description: $item.find(".news_abstract").text().trim(),
pubDate: timezone(parseDate($item.find(".news_time").text().replace("发布日期:", ""), "YYYY-MM-DD"), 8)
};
});
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
item.description = load(await rofetch(item.link))(".article").html() ?? item.description;
return item;
})));
return {
title: $("head title").text(),
link,
item: items
};
}
//#endregion
export { route };