rsshub
Version:
Make RSS Great Again!
65 lines (53 loc) • 1.78 kB
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
const url = require('url');
const host = 'https://www.shou.edu.cn';
async function GetDesc(link) {
const response = await got.get(link);
const $ = cheerio.load(response.data);
const description = $('.wp_articlecontent').text();
return { description };
}
const ProcessFeed = (list, caches) =>
Promise.all(
list.map(async (item) => {
const $ = cheerio.load(item);
const itemUrl = url.resolve(host, $('a').attr('href'));
const fetched = {
title: $('.col_news_title').text().trim(),
link: itemUrl,
guid: itemUrl,
pubDate: new Date($('.col_news_date').text()).toUTCString(),
};
const cached = await caches.tryGet(itemUrl, () => GetDesc(itemUrl));
return Object.assign({}, fetched, cached);
})
);
module.exports = async (ctx) => {
const type = ctx.params.type;
const dict = {
zbxx: '招标信息',
tzgg: '通知公告',
yw: '要闻',
mtjj: '媒体聚焦',
xsjz: '学术讲座',
xsqy: '科技前沿',
};
const readableType = dict[type];
const response = await got({
method: 'get',
url: `${host}/${type}/list.htm`,
headers: {
Referer: host,
},
});
const $ = cheerio.load(response.data);
const list = $('a.col_news_item').slice(0, 10).get();
const result = await ProcessFeed(list, ctx.cache);
ctx.state.data = {
title: `上海海洋大学 ${readableType}`,
link: `${host}/${type}/list.htm`,
description: '上海海洋大学 官网信息',
item: result,
};
};