rsshub
Version:
Make RSS Great Again!
86 lines (84 loc) • 2.12 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 "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { load } from "cheerio";
//#region lib/routes/zcmu/yxy/index.ts
const host = "https://yxy.zcmu.edu.cn/";
const map = new Map([
[0, {
title: "药学院 -- 通知公告",
id: "index/tzgg"
}],
[1, {
title: "药学院 -- 评优评奖",
id: "xsgz/pypj"
}],
[2, {
title: "药学院 -- 文明规范",
id: "xsgz/wmgf"
}],
[3, {
title: "药学院 -- 创新创业",
id: "xsgz/cxcy"
}],
[4, {
title: "药学院 -- 校园文化",
id: "xsgz/xywh"
}],
[5, {
title: "药学院 -- 心理驿站",
id: "xsgz/xlyz"
}],
[6, {
title: "药学院 -- 日常通知",
id: "xsgz/rctz"
}]
]);
const route = {
path: "/yxy/:type?",
categories: ["university"],
example: "/zcmu/yxy/0",
parameters: { type: "模块id" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "药学院",
maintainers: ["CCraftY"],
handler,
description: `| 通知公告 | 评优评奖 | 文明规范 | 创新创业 | 校园文化 | 心理驿站 | 日常通知 |
| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
| 0 | 1 | 2 | 3 | 4 | 5 | 6 |`
};
async function handler(ctx) {
const type = Number.parseInt(ctx.req.param("type"));
const id = map.get(type).id;
const $ = load((await got_default({
method: "get",
url: `${host}/${id}.htm`
})).data);
const items = $(".lm_list li").toArray().map((item) => {
item = $(item);
return {
title: item.find("a").text(),
link: `https://yxy.zcmu.edu.cn/${item.find("a").attr("href")}`,
pubDate: parseDate(item.find("span").text().trim())
};
});
return {
title: map.get(type).title,
link: `${host}${id}`,
item: items
};
}
//#endregion
export { route };