rsshub
Version:
Make RSS Great Again!
47 lines (46 loc) • 1.47 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 { t as timezone } from "./timezone-BBvDwS_3.mjs";
import { load } from "cheerio";
//#region lib/routes/ecnu/dxb.ts
const type = (filename) => filename.split(".").pop();
const route = {
path: "/dxb",
categories: ["university"],
example: "/ecnu/dxb",
radar: [{
source: ["dxb.ecnu.edu.cn"],
target: "/dxb"
}],
name: "地球科学学部通知公告",
maintainers: [
"FrozenStarrrr",
"ChiyoYuki",
"ECNU-minus"
],
handler: async () => {
const baseUrl = "https://dxb.ecnu.edu.cn/";
const $ = load((await got_default(`${baseUrl}18277/list.htm`)).data);
const links = $("ul.news_list > li").toArray().map((el) => ({
pubDate: timezone(parseDate($(el).find(".news_meta").text()), 8),
link: new URL($(el).find("a").attr("href"), baseUrl).href,
title: $(el).find("a").text()
}));
return {
title: "地球科学学部通知公告",
link: "https://dxb.ecnu.edu.cn/18277/list.htm",
item: await Promise.all(links.map((item) => cache_default.tryGet(item.link, async () => {
if (type(item.link) === "htm") {
const { data } = await got_default(item.link);
item.description = load(data)("div.read").html();
return item;
}
item.description = "请到原网页访问";
return item;
})))
};
}
};
//#endregion
export { route };