Skip to content

Commit

Permalink
feat: 增加了国防科技大学研究生院中的硕士招生和通知公告的rss源
Browse files Browse the repository at this point in the history
  • Loading branch information
Blank0120 committed May 14, 2024
1 parent 14e7761 commit 811d0ea
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/routes/nudt/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: '中国人民解放军国防科技大学',
url: 'www.nudt.edu.cn',
};
68 changes: 68 additions & 0 deletions lib/routes/nudt/yjszs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
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/searchContent.view
['tzgg', { title: '国防科技大学研究生院 - 通知公告', view: 'searchContent' }],
// http://yjszs.nudt.edu.cn//pubweb/homePageList/recruitStudents.view?keyId=16
['sszs', { title: '国防科技大学研究生院 - 硕士招生', view: 'recruitStudents', keyId: '16' }],
]);

export const route: Route = {
path: '/yjszs/:type?',
categories: ['university'],
example: '/nudt/yjszs/sszs',
parameters: { type: '分类,见下表,默认为硕士招生' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '国防科技大学研究生院',
maintainers: ['blankTourist'],
handler,
url: 'yjszs.nudt.edu.cn/',
description: `| 通知公告 | 硕士招生 |
| -------- | -------- |
| tzgg | sszs |`,
};

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

const $ = load(response.data);
const content = $('.news-list li');
const items = content.toArray().map((elem) => {
elem = $(elem);
return {
link: new URL(elem.find('a').attr('href'), host).href,
title: elem.find('h3').text().trim(),
pubDate: timezone(parseDate(elem.find('.time').text(), 'YYYY-MM-DD'), -8),
};
});

return {
title: info.title,
link,
item: items,
};
}

0 comments on commit 811d0ea

Please sign in to comment.