rsshub
Version:
Make RSS Great Again!
67 lines (58 loc) • 2.26 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
async function getPage(id) {
const res = await got({
method: 'get',
url: `http://www.cst.zju.edu.cn/${id}/list.htm`,
});
const $ = load(res.data);
const content = $('.lm_new ul li');
return content.toArray().map((item) => {
item = $(item);
const title = item.find('a').text();
const pubDate = parseDate(item.find('.fr').text());
const link = item.find('a').attr('href');
return {
title,
pubDate,
link,
};
});
}
export const route: Route = {
path: '/cst/custom/:id',
categories: ['university'],
example: '/zju/cst/custom/36194+36241+36246',
parameters: { id: '提取出通知页面中的 `ID`,如 `http://www.cst.zju.edu.cn/36246/list.htm` 中的 `36246`,可将你想获取通知的多个页面,通过 `+` 符号来聚合。' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '软件学院',
maintainers: ['zwithz'],
handler,
description: `| 全部通知 | 招生信息 | 教务管理 | 论文管理 | 思政工作 | 评奖评优 | 实习就业 | 国际实习 | 国内合作科研 | 国际合作科研 | 校园服务 |
| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ------------ | -------- |
| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
#### 自定义聚合通知 {#zhe-jiang-da-xue-ruan-jian-xue-yuan-zi-ding-yi-ju-he-tong-zhi}`,
};
async function handler(ctx) {
const id = ctx.req.param('id').split('+');
const tasks = id.map((id) => getPage(id));
const results = await Promise.all(tasks);
let items = [];
for (const result of results) {
items = [...items, ...result];
}
return {
title: '浙江大学软件学院通知',
link: 'http://www.cst.zju.edu.cn/',
item: items,
};
}