Skip to content

Commit

Permalink
feat(route/nudt): Add more RSS source about yjszs (#17188)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blank0120 authored Oct 18, 2024
1 parent 861b15f commit 7089945
Showing 1 changed file with 33 additions and 13 deletions.
46 changes: 33 additions & 13 deletions lib/routes/nudt/yjszs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,35 @@ import { parseDate } from '@/utils/parse-date';
import InvalidParameterError from '@/errors/types/invalid-parameter';
import timezone from '@/utils/timezone';

/* 研究生院*/
/* 研究生院 */
const host = 'http://yjszs.nudt.edu.cn';

// 目前研究生院最近仍在更新的链接
const yjszs = new Map([
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=2
// http://yjszs.nudt.edu.cn//pubweb/homePageList/searchContent.view
['tzgg', { title: '国防科技大学研究生院 - 通知公告', view: 'searchContent' }],
['2', { title: '国防科技大学研究生院 - 通知公告' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=1
['1', { title: '国防科技大学研究生院 - 首页' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=8
['8', { title: '国防科技大学研究生院 - 招生简章' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=12
['12', { title: '国防科技大学研究生院 - 学校政策' }],
// http://yjszs.nudt.edu.cn//pubweb/homePageList/recruitStudents.view?keyId=16
['sszs', { title: '国防科技大学研究生院 - 硕士招生', view: 'recruitStudents', keyId: '16' }],
['16', { title: '国防科技大学研究生院 - 硕士招生' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=17
['17', { title: '国防科技大学研究生院 - 博士招生' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=23
['23', { title: '国防科技大学研究生院 - 院所发文' }],
// http://yjszs.nudt.edu.cn/pubweb/homePageList/recruitStudents.view?keyId=25
['25', { title: '国防科技大学研究生院 - 数据统计' }],
]);

export const route: Route = {
path: '/yjszs/:type?',
path: '/yjszs/:keyId?',
categories: ['university'],
example: '/nudt/yjszs/sszs',
parameters: { type: '分类,见下表,默认为硕士招生' },
example: '/nudt/yjszs/2',
parameters: { keyId: '分类,见下表,默认为通知公告' },
features: {
requireConfig: false,
requirePuppeteer: false,
Expand All @@ -28,22 +42,28 @@ export const route: Route = {
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['yjszs.nudt.edu.cn'],
},
],
name: '研究生院',
maintainers: ['Blank0120'],
handler,
url: 'yjszs.nudt.edu.cn/',
description: `| 通知公告 | 硕士招生 |
| -------- | -------- |
| tzgg | sszs |`,
description: `| 通知公告 | 首页 | 招生简章 | 学校政策 | 硕士招生 | 博士招生 | 院所发文 | 数据统计 |
| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
| 2 | 1 | 8 | 12 | 16 | 17 | 23 | 25 |`,
};

async function handler(ctx) {
const type = ctx.req.param('type') ?? 'sszs';
const info = yjszs.get(type);
const keyId = ctx.req.param('keyId') ?? '2';
const info = yjszs.get(keyId);
if (!info) {
throw new InvalidParameterError('invalid type');
throw new InvalidParameterError('invalid keyId');
}
const link = `${host}/pubweb/homePageList/${info.view}.view?keyId=${info.keyId ?? ''}`;
let link = `${host}/pubweb/homePageList`;
link += keyId === '2' ? `/searchContent.view` : `/recruitStudents.view?keyId=${keyId}`;
const response = await got({
method: 'get',
url: link,
Expand Down

0 comments on commit 7089945

Please sign in to comment.