mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 15:47:48 +08:00
* 添加潍坊学院及教务处通知 * 添加潍坊学院router * Create jwc.js * Create news.js * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
97 lines
3.2 KiB
JavaScript
97 lines
3.2 KiB
JavaScript
const got = require('@/utils/got');
|
||
const cheerio = require('cheerio');
|
||
const { parseDate } = require('@/utils/parse-date');
|
||
const timezone = require('@/utils/timezone');
|
||
|
||
// 参考 whu/news 武汉大学页面写成
|
||
|
||
const baseUrl = 'https://www.wfu.edu.cn';
|
||
const sizeTitle = '--潍坊学院新闻';
|
||
|
||
const catrgoryMap = {
|
||
wyyw: ['/50/list.htm', '潍院要闻'],
|
||
zhxw: ['/52/list.htm', '综合新闻'],
|
||
xszh: ['/xszh/list.htm', '学术纵横'],
|
||
};
|
||
|
||
// 专门定义一个function用于加载文章内容
|
||
async function load(link) {
|
||
let description = '';
|
||
|
||
let response;
|
||
// 如果不是 大学的站点, 直接返回简单的标题即可
|
||
// 判断 是否外站链接,如果是 则直接返回页面 不做单独的解析
|
||
const https_reg = new RegExp('https://www.wfu.edu.cn(.*)');
|
||
if (!https_reg.test(link)) {
|
||
return { description };
|
||
}
|
||
try {
|
||
// 异步请求文章
|
||
response = await got.get(link);
|
||
} catch (err) {
|
||
// 如果网络问题 直接出错
|
||
if (err.name && (err.name === 'HTTPError' || err.name === 'RequestError')) {
|
||
description = 'Page 404 Please Check!';
|
||
}
|
||
return { description };
|
||
}
|
||
// 加载文章内容
|
||
const $ = cheerio.load(response.data);
|
||
|
||
// 提取文章内容
|
||
description = $('div.wp_articlecontent').html();
|
||
// 返回解析的结果
|
||
return { description };
|
||
}
|
||
|
||
module.exports = async (ctx) => {
|
||
// 默认 潍院要闻 然后获取列表页面
|
||
const type = ctx.params.type ?? 'wyyw';
|
||
const listPageUrl = baseUrl + catrgoryMap[type][0];
|
||
const response = await got({
|
||
method: 'get',
|
||
url: listPageUrl,
|
||
headers: {
|
||
Referer: baseUrl,
|
||
},
|
||
});
|
||
const $ = cheerio.load(response.data);
|
||
|
||
// 获取当前页面的 list
|
||
const list = $('div[frag=窗口1]>ul>li');
|
||
|
||
const result = await Promise.all(
|
||
// 遍历每一篇文章
|
||
list
|
||
.map(async (item) => {
|
||
const $ = cheerio.load(list[item]); // 将列表项加载成 html
|
||
const $item_url = 'https://www.wfu.edu.cn' + $('a').attr('href'); // 获取 每一项的url
|
||
const $title = $('a>div.txt>h1').text(); // 获取每个的标题
|
||
const $pubdate = timezone(parseDate($('a>div.txt>span.date').text().split(':')[1]), +8); // 获取发布时间
|
||
|
||
// 列表上提取到的信息
|
||
// 标题 链接
|
||
const single = {
|
||
title: $title,
|
||
pubDate: $pubdate,
|
||
link: $item_url,
|
||
guid: $item_url,
|
||
};
|
||
|
||
// 对于列表的每一项, 单独获取 时间与详细内容
|
||
// eslint-disable-next-line no-return-await
|
||
const other = await ctx.cache.tryGet($item_url, async () => await load($item_url));
|
||
// 合并解析后的结果集作为该篇文章最终的输出结果
|
||
return { ...single, ...other };
|
||
})
|
||
.get()
|
||
);
|
||
|
||
ctx.state.data = {
|
||
title: catrgoryMap[type][1] + sizeTitle,
|
||
link: baseUrl,
|
||
description: catrgoryMap[type][1] + sizeTitle,
|
||
item: result,
|
||
};
|
||
};
|