feat(route/sdu): 添加山东大学研究生招生信息网路由 (#21331)

* feat(route/sdu): 添加山东大学研究生招生信息网路由

* feat(route/sdu): 更新山东大学研究生招生信息网路由信息

* feat(route/sdu): 更新研究生招生信息网名称
This commit is contained in:
niuyi
2026-03-10 23:33:45 +08:00
committed by GitHub
parent ef76633420
commit b55864eed0

84
lib/routes/sdu/yz.ts Normal file
View File

@@ -0,0 +1,84 @@
import { load } from 'cheerio';
import type { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
const host = 'https://www.yz.sdu.edu.cn';
export const route: Route = {
path: '/yz/:type?',
categories: ['university'],
example: '/sdu/yz/tzgg',
parameters: { type: '默认为`tzgg`' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '研究生招生信息网',
maintainers: ['niuyi1017'],
handler,
description: `| 通知公告 | 招生拓展 | 政策文件 |
| -------- | -------- |-------- |
| tzgg | zstz | zcwj | `,
};
async function handler(ctx) {
const type = ctx.req.param('type') ?? 'tzgg';
const pageUrl = `${host}/index/${type}.htm`;
const response = await got(pageUrl);
const $ = load(response.data);
const typeName = $('.nyrtit .tit').text() || '研究生招生信息网';
let list = $('.txtList li')
.toArray()
.map((element) => {
const $element = $(element);
let itemDate = $element.find('.times').text();
itemDate = itemDate.slice(2) + '.' + itemDate.slice(0, 2);
const aTag = $element.find('a');
const title = aTag.attr('title') || aTag.text().trim();
const itemPath = aTag.attr('href') ?? '';
const link = itemPath.startsWith('http') ? itemPath : new URL('/' + itemPath, pageUrl).href;
return {
title,
link,
pubDate: parseDate(itemDate),
};
});
list = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const response = await got(item.link);
const $ = load(response.data);
const content = $('.v_news_content');
let description = '';
if (content.length > 0) {
description = content.html()?.trim() ?? '';
}
const attachments = $('ul[style="list-style-type:none;"]');
if (attachments.length > 0) {
description += attachments.html()?.trim() ?? '';
}
return {
...item,
description,
};
})
)
);
return {
title: `山东大学研究生招生信息网 - ${typeName}`,
description: $('title').text(),
link: pageUrl,
item: list,
};
}