Files
RSSHub/lib/v2/scut/yjs.js
Tony 8699b4c9d3 fix(route): fix namespace mess from #4283 (#12353)
* refactor: fix scut namespace

* refactor: fix gzhu namespace

* refactor: fix scnu namespace

* refactor: fix hust namespace

* refactor: fix ccnu namespace

* refactor: fix sustech namespace

* refactor: fix szu namespace

remove `/szuyjs` since it's a duplicate of `/szu/yz/:type?`

* refactor: fix tongji namespace

* refactor: fix ocu namespace

* refactor: fix upc namespace

* refactor: fix ucas namespace

* refactor: fix cas namespace

* refactor: fix cau namespace

* refactor: remove `/cucyjs` since `/cuc/yz` existed well before that

* refactor: fix bit namespace

* refactor: fix **undocumented** scau namespace

* fix: typo

* fix: code scan
2023-04-20 09:32:13 +08:00

31 lines
1008 B
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const baseUrl = 'https://www2.scut.edu.cn';
const link = `${baseUrl}/graduate/14562/list.htm`;
const response = await got(link);
const $ = cheerio.load(response.data);
const list = $('#wp_news_w4 a');
ctx.state.data = {
title: '华南理工大学研究生院',
link,
description: '华南理工大学研究生院通知公告',
item:
list &&
list.toArray().map((item) => {
item = $(item);
return {
title: item
.contents()
.filter((_, node) => node.type === 'text')
.text(),
link: `${baseUrl}${item.attr('href')}`,
pubDate: parseDate(item.find('span').text()),
};
}),
};
};