rsshub
Version:
Make RSS Great Again!
42 lines (41 loc) • 1.31 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/nuist/library/lib.ts
const baseTitle = "南京信息工程大学图书馆通知";
const route = {
path: "/lib",
categories: ["university"],
example: "/nuist/lib",
radar: [{ source: ["lib.nuist.edu.cn/", "lib.nuist.edu.cn/index/tzgg.htm"] }],
name: "图书馆",
maintainers: ["gylidian"],
handler,
url: "lib.nuist.edu.cn/"
};
async function handler() {
const link = "https://lib.nuist.edu.cn/index/tzgg.htm";
const $ = load((await got_default(link)).data);
const list = $(".list2 li").toArray().map((item) => {
const $item = $(item);
return {
title: $item.find("a").attr("title"),
category: "通知",
link: new URL($item.find("a").attr("href"), link).href
};
});
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const $ = load((await got_default(item.link)).data);
item.description = $("#vsb_content").html();
item.pubDate = parseDate($(".date").find("span").eq(0).text(), "YYYY年MM月DD日");
return item;
})));
return {
title: baseTitle,
link,
item: items
};
}
//#endregion
export { route };