feat: 新增浙江工业大学设计与建筑学院通知 (#5348)

This commit is contained in:
yikZero
2020-08-05 17:24:29 -05:00
committed by GitHub
parent 0493e87dc2
commit 2af86de724
3 changed files with 70 additions and 0 deletions

View File

@@ -1727,6 +1727,16 @@ type 列表:
</Route>
### 设计与建筑学院
<Route author="yikZero" example="/zjut/design/5" path="/zjut/design/:type" :paramsDesc="['板块id']">
| 学术科研 | 学院新闻 | 公告通知 | 学术交流 |
| ------ | -------- | -------- | -------- |
| 5 | 16 | 18 | 20 |
</Route>
## 郑州大学
### 郑州大学新闻网

View File

@@ -796,6 +796,7 @@ router.get('/buaa/news/:type', require('./routes/universities/buaa/news/index'))
// 浙江工业大学
router.get('/zjut/:type', require('./routes/universities/zjut/index'));
router.get('/zjut/design/:type', require('./routes/universities/zjut/design'));
// 上海大学
router.get('/shu/jwc/:type?', require('./routes/universities/shu/jwc'));

View File

@@ -0,0 +1,59 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const iconv = require('iconv-lite');
const host = 'http://www.design.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='title1']").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().replace('[', '').replace(']', '');
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,
};
};