84 lines
2.8 KiB
TypeScript
84 lines
2.8 KiB
TypeScript
import { Route } from '@/types';
|
||
import cache from '@/utils/cache';
|
||
import got from '@/utils/got';
|
||
import { load } from 'cheerio';
|
||
import { parseDate } from '@/utils/parse-date';
|
||
import timezone from '@/utils/timezone';
|
||
|
||
const typelist = ['通知公告', '院所新闻', '教学信息', '学术动态', '学院简报'];
|
||
const urlList = ['xwdt/tzgg.htm', 'xwdt/ysxw.htm', 'xwdt/jxxx.htm', 'xwdt/xsdt.htm', 'xwdt/xyjb.htm'];
|
||
const host = 'https://www.mech.sdu.edu.cn/';
|
||
|
||
export const route: Route = {
|
||
path: '/mech/:type?',
|
||
categories: ['university'],
|
||
example: '/sdu/mech/0',
|
||
parameters: { type: '默认为 `0`' },
|
||
features: {
|
||
requireConfig: false,
|
||
requirePuppeteer: false,
|
||
antiCrawler: false,
|
||
supportBT: false,
|
||
supportPodcast: false,
|
||
supportScihub: false,
|
||
},
|
||
name: '机械工程学院通知',
|
||
maintainers: ['Ji4n1ng'],
|
||
handler,
|
||
description: `| 通知公告 | 院所新闻 | 教学信息 | 学术动态 | 学院简报 |
|
||
| -------- | -------- | -------- | -------- | -------- |
|
||
| 0 | 1 | 2 | 3 | 4 |`,
|
||
};
|
||
|
||
async function handler(ctx) {
|
||
const type = ctx.req.param('type') ? Number.parseInt(ctx.req.param('type')) : 0;
|
||
const link = new URL(urlList[type], host).href;
|
||
const response = await got(link);
|
||
|
||
const $ = load(response.data);
|
||
|
||
let item = $('#page_list li a')
|
||
.slice(0, 1)
|
||
.map((_, e) => {
|
||
e = $(e);
|
||
return {
|
||
title: e.attr('title'),
|
||
link: e.attr('href'),
|
||
};
|
||
})
|
||
.get();
|
||
|
||
item = await Promise.all(
|
||
item
|
||
.filter((e) => e.link.startsWith('../info') || e.link.startsWith('https://www.rd.sdu.edu.cn/'))
|
||
.map((item) => {
|
||
const isFromMech = item.link.startsWith('../info');
|
||
if (isFromMech) {
|
||
item.link = new URL(item.link.slice('3'), host).href;
|
||
}
|
||
return cache.tryGet(item.link, async () => {
|
||
const response = await got(item.link);
|
||
const $ = load(response.data);
|
||
|
||
const info = $('#show_info').text().split(/\s{4}/);
|
||
const date = info[0].split(':')[1];
|
||
|
||
item.title = $('#show_title').text().trim();
|
||
item.author = info[1].replace('作者:', '') || '山东大学机械工程学院';
|
||
$('#show_title, #show_info').remove();
|
||
item.description = $('form[name=_newscontent_fromname] div').html();
|
||
item.pubDate = timezone(parseDate(date), +8);
|
||
|
||
return item;
|
||
});
|
||
})
|
||
);
|
||
|
||
return {
|
||
title: `山东大学机械工程学院${typelist[type]}`,
|
||
description: $('title').text(),
|
||
link,
|
||
item,
|
||
};
|
||
}
|