rsshub
Version:
Make RSS Great Again!
61 lines (60 loc) • 1.95 kB
JavaScript
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs";
import { t as cache_default } from "./cache-BkqOokyU.mjs";
import { t as got_default } from "./got-BTowW50G.mjs";
import { load } from "cheerio";
//#region lib/routes/seu/yzb/index.ts
const route = {
path: "/yzb/:type",
categories: ["university"],
example: "/seu/yzb/6676",
parameters: { type: "分类名,见下表" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["yzb.seu.edu.cn/:type/list.htm"] }],
name: "研究生招生网通知公告",
maintainers: ["fuzy112"],
handler,
description: `| 硕士招生 | 博士招生 | 港澳台及中外合作办学 |
| -------- | -------- | -------------------- |
| 6676 | 6677 | 6679 |`
};
async function handler(ctx) {
const host = "https://yzb.seu.edu.cn";
const map = {
6676: { id: 1 },
6677: { id: 2 },
6679: { id: 3 }
};
const type = ctx.req.param("type");
const id = type.length === 1 ? Object.keys(map).find((key) => map[key].id === Number.parseInt(type)) : Number.parseInt(type);
const url = new URL(`${id}/list.htm`, host).href;
const { data: response } = await got_default(url);
const $ = load(response);
const list = $("#wp_news_w3 td tbody tr").toArray().map((elem) => {
const $elem = $(elem);
const a = $elem.find("td a");
return {
title: a.attr("title"),
link: new URL(a.attr("href"), host).href,
pubDate: parseDate($elem.find("td div").text())
};
});
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const { data: response } = await got_default(item.link);
item.description = load(response)(".Article_Content").html();
return item;
})));
return {
link: url,
title: `东南大学研究生招生网 -- ${$("head title").text()}`,
item: items
};
}
//#endregion
export { route };