fix(route): tju oaa news and notification url (#10222)

* fix: tju oaa news and notification url

* fix: tju oaa typo

* doc: add tju oaa English doc

* feat: add `timezone` to tju oaa

* feat(route): migrate tju rss to v2

* chore: update description and doc

* chore: update

* chore: update
This commit is contained in:
SUPER 2022-07-15 20:30:43 +08:00 committed by GitHub
parent 6153347f6e
commit 5c0b7f24cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 152 additions and 76 deletions

View File

@ -46,6 +46,18 @@ Note: [Source website](https://gs.bjtu.edu.cn/) only provides articles in Chines
<RouteEn author="exuanbo" example="/polimi/news" path="/polimi/news/:language?" :paramsDesc="['English language code en']" />
## Tianjin University
### The Office of Academic Affairs
<RouteEn author="AmosChenYQ SuperPung" example="/tju/oaa/news" path="/tju/oaa/:type?" :paramsDesc="['default `news`']">
| News | Notification |
| ---- | ------------ |
| news | notification |
</RouteEn>
## UMASS Amherst
### College of Electrical and Computer Engineering

View File

@ -2387,7 +2387,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 天津大学教务处
<Route author="AmosChenYQ" example="/tjpyu/ooa/news" path="/tjpyu/ooa/:type" :paramsDesc="['默认为`news`']">
<Route author="AmosChenYQ SuperPung" example="/tju/oaa/news" path="/tju/oaa/:type?" :paramsDesc="['默认为`news`']">
| 新闻动态 | 通知公告 |
| ---- | ------------ |

View File

@ -731,8 +731,8 @@ router.get('/wzbc/:type?', lazyloadRouteHandler('./routes/universities/wzbc/news
// 河南大学
router.get('/henu/:type?', lazyloadRouteHandler('./routes/universities/henu/news'));
// 天津大学
router.get('/tjpyu/ooa/:type?', lazyloadRouteHandler('./routes/universities/tjpyu/ooa'));
// 天津大学 migrated to v2
// router.get('/tju/oaa/:type?', lazyloadRouteHandler('./routes/universities/tju/oaa'));
// 南开大学
router.get('/nku/jwc/:type?', lazyloadRouteHandler('./routes/universities/nku/jwc/index'));

View File

@ -1,73 +0,0 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const ooa_base_url = 'http://oaa.tju.edu.cn/';
const repo_url = 'https://github.com/DIYgod/RSSHub/issues';
module.exports = async (ctx) => {
const type = ctx.params && ctx.params.type;
let path, subtitle;
switch (type) {
case 'news':
subtitle = '新闻动态';
path = 'zytz';
break;
case 'notification':
subtitle = '通知公告';
path = 'zygg';
break;
default:
subtitle = '新闻动态';
path = 'zytz';
}
let response = null;
try {
response = await got({
method: 'get',
url: ooa_base_url + path,
headers: {
Referer: ooa_base_url,
},
});
} catch (e) {
// ignore error handler
// console.log(e);
}
if (response === null) {
ctx.state.data = {
title: '天津大学教务处 - ' + subtitle,
link: ooa_base_url + path,
description: '链接失效' + ooa_base_url + path,
item: [
{
title: '提示信息',
link: repo_url,
description: `<h2>请到<a href=${repo_url}>此处</a>提交Issue</h2>`,
},
],
};
} else {
const $ = cheerio.load(response.data);
const list = $('.iplan > ul > li').slice(0, 10);
ctx.state.data = {
title: '天津大学教务处 - ' + subtitle,
link: ooa_base_url + path,
description: null,
item:
list &&
list
.map((index, item) => ({
title: $('h2', item)
.text()
.replace(/(\d+)-(\d+)-(\d+)$/, ''), // remove duplicate date at the end of h2 element
pubDate: new Date($('span', item).text()).toUTCString(),
link: $('a', item).attr('href'),
description: $('p', item).text(),
}))
.get(),
};
}
};

3
lib/v2/tju/maintainer.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
'/oaa/:type?': ['AmosChenYQ', 'SuperPung'],
};

112
lib/v2/tju/oaa/index.js Normal file
View File

@ -0,0 +1,112 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { finishArticleItem } = require('@/utils/wechat-mp');
const { parseDate } = require('@/utils/parse-date');
const timezone = require('@/utils/timezone');
const oaa_base_url = 'http://oaa.tju.edu.cn/';
const repo_url = 'https://github.com/DIYgod/RSSHub/issues';
const pageType = (href) => {
if (!href.startsWith('http')) {
return 'in-site';
}
const url = new URL(href);
if (url.hostname === 'mp.weixin.qq.com') {
return 'wechat-mp';
} else if (url.hostname === 'oaa.tju.edu.cn') {
return 'tju-oaa';
} else {
return 'unknown';
}
};
module.exports = async (ctx) => {
const type = ctx.params && ctx.params.type;
let path, subtitle;
switch (type) {
case 'news':
subtitle = '新闻动态';
path = 'xwdt.htm';
break;
case 'notification':
subtitle = '通知公告';
path = 'tzgg.htm';
break;
default:
subtitle = '新闻动态';
path = 'xwdt.htm';
}
let response = null;
try {
response = await got(oaa_base_url + path, {
headers: {
Referer: oaa_base_url,
},
});
} catch (e) {
// ignore error handler
// console.log(e);
}
if (response === null) {
ctx.state.data = {
title: '天津大学教务处 - ' + subtitle,
link: oaa_base_url + path,
description: '链接失效' + oaa_base_url + path,
item: [
{
title: '提示信息',
link: repo_url,
description: `<h2>请到<a href=${repo_url}>此处</a>提交Issue</h2>`,
},
],
};
} else {
const $ = cheerio.load(response.data);
const list = $('.notice_l > ul > li > dl > dt')
.map((_index, item) => {
const href = $('a', item).attr('href');
const type = pageType(href);
return {
title: $('h2', item).text(),
link: type === 'in-site' ? oaa_base_url + href : href,
pubDate: timezone(parseDate($('.fl_01_r_time', item).text(), 'DDYYYY-MM'), +8),
type,
};
})
.get();
const items = await Promise.all(
list.map((item) => {
switch (item.type) {
case 'wechat-mp':
return finishArticleItem(ctx, item);
case 'tju-oaa':
case 'in-site':
return ctx.cache.tryGet(item.link, async () => {
let detailResponse = null;
try {
detailResponse = await got(item.link, { https: { rejectUnauthorized: false } });
const content = cheerio.load(detailResponse.data);
item.description = content('.v_news_content').html();
} catch (e) {
// ignore error handler
}
return item;
});
default:
return item;
}
})
);
ctx.state.data = {
title: '天津大学教务处 - ' + subtitle,
link: oaa_base_url + path,
description: null,
item: items,
};
}
};

19
lib/v2/tju/radar.js Normal file
View File

@ -0,0 +1,19 @@
module.exports = {
'tju.edu.cn': {
_name: '天津大学',
oaa: [
{
title: '教务处 - 新闻动态',
docs: 'https://docs.rsshub.app/university.html#tian-jin-da-xue',
source: ['/xwdt.htm', '/'],
target: '/tju/oaa/news',
},
{
title: '教务处 - 通知公告',
docs: 'https://docs.rsshub.app/university.html#tian-jin-da-xue',
source: ['/tzgg.htm', '/'],
target: '/tju/oaa/notification',
},
],
},
};

3
lib/v2/tju/router.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/oaa/:type?', require('./oaa'));
};