rsshub
Version:
Make RSS Great Again!
69 lines (60 loc) • 2.23 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';
const baseTitle = 'NUIST ESE(南信大环科院)';
const baseUrl = 'https://sese.nuist.edu.cn';
export const route: Route = {
path: '/sese/:category?',
categories: ['university'],
example: '/nuist/sese/tzgg1',
parameters: { category: '默认为通知公告' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: 'NUIST ESE(南信大环科院)',
maintainers: ['gylidian'],
handler,
description: `| 通知公告 | 新闻快讯 | 学术动态 | 学生工作 | 研究生教育 | 本科教育 |
| -------- | -------- | -------- | -------- | ---------- | -------- |
| tzgg1 | xwkx | xsdt1 | xsgz1 | yjsjy1 | bkjy1 |`,
};
async function handler(ctx) {
const { category = 'tzgg1' } = ctx.req.param();
const link = `${baseUrl}/${category}.htm`;
const response = await got(link);
const $ = load(response.data);
const list = $('#ctl00_ctl00_mainbody_rightbody_listcontent_NewsList .gridline')
.toArray()
.map((item) => {
item = $(item);
return {
title: item.find('a').eq(1).text(),
link: new URL(item.find('a').eq(1).attr('href'), baseUrl).href,
category: item.find('a').eq(0).text(),
pubDate: parseDate($(item).find('.gridlinedate').text(), 'YYYY年MM月DD日'),
};
});
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const response = await got(item.link);
const $ = load(response.data);
item.description = $('#vsb_content_6').html();
return item;
})
)
);
return {
title: baseTitle + ':' + $('.lmtitle').text(),
description: $('meta[name=description]').attr('content'),
link,
item: items,
};
}