rsshub
Version:
Make RSS Great Again!
75 lines (66 loc) • 2.62 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import { fetchArticle } from '@/utils/wechat-mp';
import ofetch from '@/utils/ofetch';
const baseTitle = '上海交通大学研究生招生网招考信息';
const baseUrl = 'https://yzb.sjtu.edu.cn/index/zkxx/';
export const route: Route = {
path: '/yzb/zkxx/:type',
categories: ['university'],
example: '/sjtu/yzb/zkxx/sszs',
parameters: { type: '无默认选项' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '研究生招生网招考信息',
maintainers: ['stdrc'],
handler,
description: `| 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |
| -------- | -------- | ---------- | -------- | -------- |
| bszs | sszs | gatzs | kdxx | yxdt |`,
};
async function handler(ctx) {
const pageUrl = `${baseUrl}${ctx.req.param('type')}.htm`;
const response = await ofetch(pageUrl);
const $ = load(response);
const list = $('li[id^="line"] a')
.toArray()
.map((elem) => ({
link: new URL(elem.attribs.href, pageUrl).href,
title: $(elem).text(),
pubDate: parseDate($(elem.next?.next).text().trim()),
}));
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
if (new URL(item.link).hostname === 'mp.weixin.qq.com') {
return await fetchArticle(item.link);
} else if (new URL(item.link).hostname === 'www.shmeea.edu.cn') {
const detailResponse = await ofetch(item.link.replace('http://', 'https://'));
const content = load(detailResponse);
item.description = content('.Article_content').html();
return item;
} else if (new URL(item.link).hostname === 'yzb.sjtu.edu.cn') {
const detailResponse = await ofetch(item.link);
const content = load(detailResponse);
item.description = content('[id^=vsb_content]').html();
return item;
} else {
return item;
}
})
)
);
return {
link: pageUrl,
title: `${baseTitle} -- ${$('title').text().split('-')[0]}`,
item: items,
};
}