mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 22:19:40 +08:00
@@ -1446,6 +1446,18 @@ https://rsshub.app/**nuist**/`bulletin` 或 https://rsshub.app/**nuist**/`bullet
|
|||||||
|
|
||||||
</Route>
|
</Route>
|
||||||
|
|
||||||
|
## 浙江工业大学
|
||||||
|
|
||||||
|
### 浙江工业大学
|
||||||
|
|
||||||
|
<Route author="junbaor" example="/zjut/1" path="/zjut/:type" :paramsDesc="['板块id']">
|
||||||
|
|
||||||
|
| 公告栏 | 每周会议 | 屏峰班车 | 新闻速递 | 学术动态 |
|
||||||
|
| ------ | -------- | -------- | -------- | -------- |
|
||||||
|
| 1 | 2 | 3 | 10 | 25 |
|
||||||
|
|
||||||
|
</Route>
|
||||||
|
|
||||||
## 郑州大学
|
## 郑州大学
|
||||||
|
|
||||||
### 郑州大学新闻网
|
### 郑州大学新闻网
|
||||||
|
|||||||
@@ -740,6 +740,9 @@ router.get('/nku/jwc/:type?', require('./routes/universities/nku/jwc/index'));
|
|||||||
// 北京航空航天大学
|
// 北京航空航天大学
|
||||||
router.get('/buaa/news/:type', require('./routes/universities/buaa/news/index'));
|
router.get('/buaa/news/:type', require('./routes/universities/buaa/news/index'));
|
||||||
|
|
||||||
|
// 浙江工业大学
|
||||||
|
router.get('/zjut/:type', require('./routes/universities/zjut/index'));
|
||||||
|
|
||||||
// 上海大学
|
// 上海大学
|
||||||
router.get('/shu/jwc/:type?', require('./routes/universities/shu/jwc'));
|
router.get('/shu/jwc/:type?', require('./routes/universities/shu/jwc'));
|
||||||
|
|
||||||
|
|||||||
59
lib/routes/universities/zjut/index.js
Normal file
59
lib/routes/universities/zjut/index.js
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
const got = require('@/utils/got');
|
||||||
|
const cheerio = require('cheerio');
|
||||||
|
const iconv = require('iconv-lite');
|
||||||
|
const host = 'http://www.zjut.edu.cn';
|
||||||
|
|
||||||
|
module.exports = async (ctx) => {
|
||||||
|
const bigClassId = ctx.params.type;
|
||||||
|
const url = host + '/BigClass.jsp?bigclassid=' + bigClassId;
|
||||||
|
|
||||||
|
const response = await got({ method: 'get', url: url, responseType: 'buffer' });
|
||||||
|
response.data = iconv.decode(response.data, 'gbk');
|
||||||
|
const $ = cheerio.load(response.data);
|
||||||
|
|
||||||
|
const htmlTitle = $("span[class='lefttitle1']").text().replace('\n', '').trim();
|
||||||
|
|
||||||
|
const list = $("td[class='newstd']")
|
||||||
|
.map((i, e) => {
|
||||||
|
const element = $(e);
|
||||||
|
const title = element.find('a').text();
|
||||||
|
let link = element.find('a').attr('href');
|
||||||
|
if (!link.startsWith('http')) {
|
||||||
|
link = host + '/' + link;
|
||||||
|
}
|
||||||
|
const date = element.find("span[class='datetime']").text();
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: title,
|
||||||
|
description: '',
|
||||||
|
link: link,
|
||||||
|
pubDate: new Date(date).toUTCString(),
|
||||||
|
};
|
||||||
|
})
|
||||||
|
.get()
|
||||||
|
.slice(0, 20);
|
||||||
|
|
||||||
|
const result = await Promise.all(
|
||||||
|
list.map(async (item) => {
|
||||||
|
const link = item.link;
|
||||||
|
|
||||||
|
const cache = await ctx.cache.get(link);
|
||||||
|
if (cache) {
|
||||||
|
return Promise.resolve(JSON.parse(cache));
|
||||||
|
}
|
||||||
|
|
||||||
|
const itemReponse = await got({ method: 'get', url: link, responseType: 'buffer' });
|
||||||
|
const itemElement = cheerio.load(iconv.decode(itemReponse.data, 'gbk'));
|
||||||
|
item.description = itemElement('#jiacu').html();
|
||||||
|
|
||||||
|
ctx.cache.set(link, JSON.stringify(item));
|
||||||
|
return Promise.resolve(item);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
ctx.state.data = {
|
||||||
|
title: '浙江工业大学 - ' + htmlTitle,
|
||||||
|
link: url,
|
||||||
|
item: result,
|
||||||
|
};
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user