rsshub
Version:
Make RSS Great Again!
70 lines (63 loc) • 1.98 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import timezone from '@/utils/timezone';
export const route: Route = {
path: '/itsc',
categories: ['university'],
example: '/nju/itsc',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['itsc.nju.edu.cn/tzgg/list.htm'],
},
],
name: 'ITSC 信息中心',
maintainers: ['ret-1'],
handler,
url: 'itsc.nju.edu.cn/tzgg/list.htm',
};
async function handler() {
const category_dict = {
tzgg: '通知公告',
};
const items = await Promise.all(
Object.keys(category_dict).map(async () => {
const response = await got(`https://itsc.nju.edu.cn/tzgg/list.htm`);
const data = response.data;
const $ = load(data);
const tmp = $('.list2')[0].children;
const infos = [];
for (const element of tmp) {
if (element.children) {
infos.push(element);
}
}
// only read first page
return infos.map((item) => {
item = $(item);
return {
title: item.find('a').attr('title'),
description: item.find('a').attr('title'),
link: 'https://itsc.nju.edu.cn' + item.find('a').attr('href'),
pubDate: timezone(parseDate(item.find('.news_meta').text(), 'YYYY-MM-DD'), +8),
category: category_dict[0],
};
});
})
);
return {
title: 'ITSC-公告通知',
link: 'https://itsc.nju.edu.cn/tzgg/list.htm',
item: items[0],
};
}