rsshub
Version:
Make RSS Great Again!
41 lines (36 loc) • 1.31 kB
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
const map = {
sszs: 'sszs/',
bszs: 'bszs/',
};
module.exports = async (ctx) => {
const type = ctx.params.type || 'sszs';
const base = 'http://graduate.hnust.cn/zsgz/' + (Object.hasOwn(map, type) ? map[type] : map.sszs);
const link = `${base}index.htm`;
const response = await got.get(link);
const $ = cheerio.load(response.data);
const list = $('.item ul li').slice(4);
ctx.state.data = {
title: '湖南科技大学研究生院招生工作通知',
link,
description: '湖南科技大学研究生院招生工作通知',
image: 'https://i.loli.net/2020/03/24/EAoPzbTsBxeOdjH.jpg',
item:
list &&
list
.map((index, item) => {
item = $(item);
const date = item.find('span').text();
const title = item.find('a').text();
const url = base + item.find('a').attr('href');
return {
title,
description: title,
pubDate: new Date(date).toUTCString(),
link: url,
};
})
.get(),
};
};