81 lines
2.6 KiB
TypeScript
81 lines
2.6 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 { finishArticleItem } from '@/utils/wechat-mp';
|
|
|
|
const host = 'https://www.cs.sdu.edu.cn/';
|
|
const typelist = ['学院公告', '学术报告', '科技简讯'];
|
|
const urlList = ['xygg.htm', 'xsbg.htm', 'kjjx.htm'];
|
|
|
|
export const route: Route = {
|
|
path: '/cs/:type?',
|
|
categories: ['university'],
|
|
example: '/sdu/cs/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 |`,
|
|
};
|
|
|
|
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 = $('.dqlb ul li')
|
|
.map((_, e) => {
|
|
e = $(e);
|
|
const a = e.find('a');
|
|
return {
|
|
title: a.text().trim(),
|
|
link: a.attr('href').startsWith('info/') ? host + a.attr('href') : a.attr('href'),
|
|
pubDate: parseDate(e.find('.fr').text().trim(), 'YYYY-MM-DD'),
|
|
};
|
|
})
|
|
.get();
|
|
|
|
item = await Promise.all(
|
|
item.map((item) =>
|
|
cache.tryGet(item.link, async () => {
|
|
if (new URL(item.link).hostname === 'mp.weixin.qq.com') {
|
|
return finishArticleItem(item);
|
|
} else if (new URL(item.link).hostname !== 'www.cs.sdu.edu.cn') {
|
|
return item;
|
|
}
|
|
const response = await got(item.link);
|
|
const $ = load(response.data);
|
|
|
|
item.title = $('.xqnr_tit h2').text().trim();
|
|
item.author = $('.xqnr_tit span').eq(1).text().trim().replace('编辑:', '') || '山东大学计算机科学与技术学院';
|
|
$('.xqnr_tit').remove();
|
|
item.description = $('form[name=_newscontent_fromname]').html();
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
return {
|
|
title: `山东大学计算机科学与技术学院${typelist[type]}通知`,
|
|
description: $('title').text(),
|
|
link,
|
|
item,
|
|
};
|
|
}
|