rsshub
Version:
Make RSS Great Again!
63 lines (53 loc) • 1.97 kB
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
module.exports = async (ctx) => {
const category = ctx.params.category;
const baseUrl = 'http://sci.cqu.edu.cn/';
const url = `http://sci.cqu.edu.cn/list.jsp?urltype=tree.TreeTempUrl&wbtreeid=${category}`;
const response = await got({
method: 'get',
url,
});
const data = response.data;
const $ = cheerio.load(data);
const links = $('div[class=subcontent]')
.find('a[target=_blank]', 'ul[class=subNewsList]')
.map((index, item) => ({
title: item.attribs.title,
link: baseUrl + item.attribs.href,
}))
.get();
const items = await Promise.all(
[...links].map(async ({ title, link }) => {
const item = {
title,
link,
};
const cache = await ctx.cache.get(link);
if (cache) {
return JSON.parse(cache);
}
const response = await got({
method: 'get',
url: link,
});
const newsContent = cheerio.load(response.data)('form[name=_newscontent_fromname]');
const [dateText] = newsContent
.find('div[align=center]')
.text()
.split(/\u00A0+/, 1); // \xA0+:
item.pubDate = dateText.replace(/ /, 'T') + '+08:00';
const newsText = newsContent.find('div[class=v_news_content]');
const attedText = newsText.parent().nextAll().filter('ul[style="list-style-type:none;"]');
item.description = newsText.html() + (newsContent.html(attedText).html() || '');
ctx.cache.set(item.link, JSON.stringify(item));
return item;
})
);
ctx.state.data = {
title: $('title').text(),
link: url,
description: $.title,
item: items.filter(Boolean),
};
};