rsshub
Version:
Make RSS Great Again!
114 lines (113 loc) • 3.54 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/neu/bmie.ts
const baseUrl = "http://www.bmie.neu.edu.cn";
const map = {
news: 561,
academic: 562,
talent_development: 563,
international_exchange: "gjjl3",
announcement: 564,
undergraduate_dev: 573,
postgraduate_dev: 574,
undergraduate_recruit: "bks",
postgraduate_recruit: 574,
CPC_build: 556,
CPC_work: 576,
union_work: 577,
CYL_work: "gqtgz",
security_management: 569,
alumni_style: 557
};
const route = {
path: "/bmie/:type",
categories: ["university"],
example: "/neu/bmie/news",
parameters: { type: "分类 id 见下表" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "医学与生物信息工程学院",
maintainers: ["tennousuathena"],
handler,
description: `| Id | 名称 |
| ----------------------- | ---------- |
| news | 学院新闻 |
| academic | 学术科研 |
| talent\\_development | 人才培养 |
| international\\_exchange | 国际交流 |
| announcement | 通知公告 |
| undergraduate\\_dev | 本科生培养 |
| postgraduate\\_dev | 研究生培养 |
| undergraduate\\_recruit | 本科生招募 |
| postgraduate\\_recruit | 研究生招募 |
| CPC\\_build | 党的建设 |
| CPC\\_work | 党委工作 |
| union\\_work | 工会工作 |
| CYL\\_work | 共青团工作 |
| security\\_management | 安全管理 |
| alumni\\_style | 校友风采 |`
};
async function handler(ctx) {
let type = ctx.req.param("type");
if (map[type] !== void 0) type = map[type];
const newsUrl = `${baseUrl}/${type}/list.htm`;
const data = (await got_default(newsUrl)).data;
const $ = load(data);
const title = $("title").text();
const items = $("#subIndex > div.main_frame_sub > div.detail_sub > div > div > div > ul > li").slice(0, 7).toArray();
const results = await Promise.all(items.map(async (item) => {
const $ = load(item);
const title = $("a").attr("title");
const url = baseUrl + $("a").attr("href");
const data = await cache_default.tryGet(url, async () => {
const $ = load((await got_default(url)).data);
const info = $($(".ny_con p")[1]).text();
const s = info.search(/\d{4}-\d{2}-\d{2}/);
const date = info.slice(s, s + 10);
const au_start = info.indexOf("作者:") + 3;
const au_end = info.lastIndexOf("|");
const auhor = info.slice(au_start, au_end).trim();
$(".entry").find("span").each((_, el) => {
const temp = $(el).text();
$(el).replaceWith(temp);
});
$(".entry").find("div").each((_, el) => {
const temp = $(el).html();
$(el).replaceWith(temp);
});
$(".entry").find("a").remove();
$(".entry").find("p").each((_, el) => {
$(el).removeAttr("style");
$(el).removeAttr("class");
});
$(".wp_art_adjoin").remove();
return {
description: $(".entry").html(),
date,
author: auhor
};
});
return {
title,
description: data.description,
link: url,
pubDate: parseDate(data.date),
author: data.author
};
}));
return {
title: `东北大学 医学与生物信息工程学院 ${title}`,
link: newsUrl,
item: results
};
}
//#endregion
export { route };