Files
RSSHub/lib/v2/ustc/gs.js
Zhiyang Guo f88e58b493 feat(route): 中国科学技术大学-研究生院/信息科学技术学院/电子工程与信息科学系 (#9666)
* fix(route): 中科大官网通知公告正文内容获取

* refactor: migrate to v2

* feat(route): 中国科学技术大学-研究生院/信息科学技术学院/电子工程与信息科学系

* fix: sort router

* fix: deprecated url.resolve

* fix: fulltext cache

fix: nullish coalescing

fix: data.link

fix: cache.tryGet

* fix: deepscan
2022-05-01 17:36:33 +08:00

60 lines
1.8 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
const timezone = require('@/utils/timezone');
const map = new Map([
['tzgg', { title: '中国科学技术大学研究生院 - 通知公告', id: '9' }],
['xwdt', { title: '中国科学技术大学研究生院 - 新闻动态', id: '10' }],
]);
const host = 'https://gradschool.ustc.edu.cn';
module.exports = async (ctx) => {
const type = ctx.params.type ?? 'tzgg';
const info = map.get(type);
if (!info) {
throw 'invalid type';
}
const id = info.id;
const response = await got(`${host}/column/${id}`);
const $ = cheerio.load(response.data);
let items = $('div.r-box > ul')
.find('li')
.toArray()
.map((item) => {
item = $(item);
const title = item.find('a').text().trim();
const link = item.find('a').attr('href').startsWith('/article') ? host + item.find('a').attr('href') : item.find('a').attr('href');
const pubDate = timezone(parseDate(item.find('time').text(), 'YYYY-MM-DD'), +8);
return {
title,
pubDate,
link,
};
});
items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
let desc = '';
try {
const response = await got(item.link);
desc = cheerio.load(response.data)('article.article').html();
item.description = desc;
} catch (err) {
// intranet only contents
}
return item;
})
)
);
ctx.state.data = {
title: info.title,
link: `${host}/column/${id}`,
item: items,
};
};