rsshub
Version:
Make RSS Great Again!
61 lines (56 loc) • 1.79 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import path from 'node:path';
import { art } from '@/utils/render';
export const route: Route = {
path: '/exam',
categories: ['government'],
example: '/crac/exam',
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '考试信息',
maintainers: ['admxj'],
radar: [
{
source: ['www.crac.org.cn/*'],
target: '/exam',
},
],
handler,
};
async function handler() {
const baseUrl = 'http://82.157.138.16:8091/CRAC';
const response = await got({
method: 'post',
url: `${baseUrl}/app/exam_advice/examAdviceList`,
body: { req: { type: '0', page_no: '1', page_size: '10' } },
});
const list = response.data.res.list.map((item) => {
const id = Buffer.from(item.id).toString('base64');
const type = Buffer.from(item.type).toString('base64');
const link = `${baseUrl}/crac/pages/list_detail.html?id=${id}&type=${type}`;
return {
title: item.name,
link,
id: item.id,
author: item.exam.organizer,
pubDate: item.createDate,
updated: item.updateDate,
startDate: item.exam.signUpStartDate,
category: [item.examType],
image: item.weixin,
description: art(path.join(__dirname, 'templates/exam.art'), { item }),
};
});
return {
title: '考试信息-中国无线电协会业余无线电分会',
link: 'http://82.157.138.16:8091/CRAC/crac/pages/list_examMsg.html',
item: list,
};
}