mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
Co-authored-by: Tony <TonyRL@users.noreply.github.com> Co-authored-by: chen <2782772457@qq.com>
68 lines
2.7 KiB
JavaScript
68 lines
2.7 KiB
JavaScript
const got = require('@/utils/got');
|
||
const { parseDate } = require('@/utils/parse-date');
|
||
const cheerio = require('cheerio');
|
||
|
||
module.exports = async (ctx) => {
|
||
let category = ctx.params.category;
|
||
// 这里的category是个形参
|
||
const dic_html = { tzgg: 'tzgg.htm', gzdt: 'gzdt.htm' };
|
||
const dic_title = { tzgg: '通知公告', gzdt: '工作动态' };
|
||
|
||
// 设置默认值
|
||
if (dic_title[category] === undefined) {
|
||
category = 'tzgg';
|
||
}
|
||
|
||
const response = await got({
|
||
method: 'get',
|
||
url: 'http://renshichu.xaut.edu.cn/' + dic_html[category],
|
||
});
|
||
const data = response.body;
|
||
const $ = cheerio.load(data);
|
||
|
||
// 这个列表指通知公告详情列表
|
||
const list = $('.vsb-space.n_right .list .cleafix')
|
||
.map((_, item) => {
|
||
item = $(item);
|
||
// 工作动态栏目里有一些是外链,这里做个判断
|
||
const a = item.find('.list_wen a').eq(0).attr('href');
|
||
const link = a.slice(0, 4) !== 'http' ? 'http://renshichu.xaut.edu.cn/' + a : a;
|
||
// 这里jquery比较长,引几个中间变量倒是方便阅读,但是我还是觉得不需要
|
||
const title = item.find('.list_wen a.tit').text();
|
||
return {
|
||
title,
|
||
link,
|
||
};
|
||
})
|
||
.get();
|
||
ctx.state.data = {
|
||
// 源标题
|
||
title: '西安理工大学人事处-' + dic_title[category],
|
||
// 源链接
|
||
link: 'http://renshichu.xaut.edu.cn',
|
||
// 源说明
|
||
description: `西安理工大学人事处-` + dic_title[category],
|
||
// 遍历此前获取的数据
|
||
item: await Promise.all(
|
||
list.map((item) =>
|
||
ctx.cache.tryGet(item.link, async () => {
|
||
// 下面的if判断是否属于外链,使用切片的方式来判断,并不优雅,先用着吧
|
||
if (item.link.slice(0, 16) === 'http://renshichu') {
|
||
// 不属于外链
|
||
const res = await got({
|
||
method: 'get',
|
||
url: item.link,
|
||
});
|
||
const content = cheerio.load(res.body);
|
||
item.description = content('.vsb-space form[name]').html();
|
||
item.pubDate = parseDate(content('.vsb-space form[name] h3 span:contains(时间)').text().slice(3));
|
||
} else {
|
||
item.description = '这是一个外链("▔□▔)/("▔□▔)/所以你没法直接看到内容' + item.link;
|
||
}
|
||
return item;
|
||
})
|
||
)
|
||
),
|
||
};
|
||
};
|