rsshub
Version:
Make RSS Great Again!
66 lines (62 loc) • 1.87 kB
text/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';
export const route: Route = {
path: '/gs/tzgg',
categories: ['university'],
example: '/xjtu/gs/tzgg',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['gs.xjtu.edu.cn/'],
},
],
name: '研究生院通知公告',
maintainers: ['nczitzk'],
handler,
url: 'gs.xjtu.edu.cn/',
};
async function handler() {
const rootUrl = 'http://gs.xjtu.edu.cn/tzgg.htm';
const response = await got({
method: 'get',
url: rootUrl,
});
const $ = load(response.data);
const list = $('div.list_right_con ul li')
.slice(0, 10)
.toArray()
.map((item) => {
item = $(item);
const a = item.find('a');
return {
title: a.attr('title'),
link: new URL(a.attr('href'), 'http://gs.xjtu.edu.cn/').href,
pubDate: parseDate(item.find('span.time').text()),
};
});
return {
title: '西安交通大学研究生院 - 通知公告',
link: rootUrl,
item: await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const res = await got(item.link);
const content = load(res.data);
item.description = content('#vsb_content').html() + (content('form ul').length > 0 ? content('form ul').html() : '');
return item;
})
)
),
};
}