rsshub
Version:
Make RSS Great Again!
121 lines (119 loc) • 3.79 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 { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.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 $$1 = load(item);
const title$1 = $$1("a").attr("title");
const url = baseUrl + $$1("a").attr("href");
const data$1 = await cache_default.tryGet(url, async () => {
const $$2 = load((await got_default(url)).data);
const info = $$2($$2(".ny_con p")[1]).text();
const s = info.search(/\d{4}-\d{2}-\d{2}/);
const date = info.substring(s, s + 10);
const au_start = info.indexOf("作者:") + 3;
const au_end = info.lastIndexOf("|");
const auhor = info.substring(au_start, au_end).trim();
$$2(".entry").find("span").each(function() {
const temp = $$2(this).text();
$$2(this).replaceWith(temp);
});
$$2(".entry").find("div").each(function() {
const temp = $$2(this).html();
$$2(this).replaceWith(temp);
});
$$2(".entry").find("a").remove();
$$2(".entry").find("p").each(function() {
$$2(this).removeAttr("style");
$$2(this).removeAttr("class");
});
$$2(".wp_art_adjoin").remove();
return {
description: $$2(".entry").html(),
date,
author: auhor
};
});
return {
title: title$1,
description: data$1.description,
link: url,
pubDate: parseDate(data$1.date),
author: data$1.author
};
}));
return {
title: `东北大学 医学与生物信息工程学院 ${title}`,
link: newsUrl,
item: results
};
}
//#endregion
export { route };