Files
RSSHub/lib/v2/hdu/cs/notice.js
Yuri Kiriyama 473e1135ff feat(route): add a hdu-cs route and three pku-ss route (#10107)
* add(route) add a hdu-cs route and three pku-ss route

* add(route) add the route files above

* update the old hdu route style

* optimize the file name
2022-07-03 20:09:05 +08:00

55 lines
1.6 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
const link = 'https://computer.hdu.edu.cn';
const host = 'https://computer.hdu.edu.cn/6738/list.htm';
const getSingleRecord = async () => {
const res = await got(host);
const $ = cheerio.load(res.data);
const list = $('.posts-list').find('li');
return (
list &&
list
.map((index, item) => {
item = $(item);
const dateTxt = item.find('.date').text();
const date = dateTxt.slice(1, dateTxt.length - 1);
return {
title: item.find('a').text(),
pubDate: parseDate(date),
link: link + item.find('a').attr('href'),
};
})
.get()
);
};
module.exports = async (ctx) => {
const items = await getSingleRecord();
const out = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const response = await got(item.link);
const $ = cheerio.load(response.data);
return {
title: item.title,
link: item.link,
description: $('.wp_articlecontent').html(),
pubDate: item.pubDate,
};
})
)
);
ctx.state.data = {
title: '杭电计算机-通知公告',
description: '杭州电子科技大学计算机学院-通知公告',
link: host,
item: out,
};
};