rsshub
Version:
Make RSS Great Again!
84 lines (76 loc) • 2.66 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
import { art } from '@/utils/render';
import path from 'node:path';
import dayjs from 'dayjs';
import localizedFormat from 'dayjs/plugin/localizedFormat.js';
import 'dayjs/locale/zh-cn.js';
dayjs.extend(localizedFormat);
const currStatusName = ['全部', '已受理', '已询问', '通过', '未通过', '提交注册', '补充审核', '注册结果', '中止', '终止'];
export const route: Route = {
path: '/renewal',
categories: ['finance'],
example: '/sse/renewal',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['kcb.sse.com.cn/home', 'kcb.sse.com.cn/'],
},
],
name: '科创板项目动态',
maintainers: ['Jeason0228'],
handler,
url: 'kcb.sse.com.cn/home',
};
async function handler() {
const pageUrl = 'https://kcb.sse.com.cn/renewal/';
const host = `https://kcb.sse.com.cn`;
const response = await got('https://query.sse.com.cn/statusAction.do', {
searchParams: {
isPagination: true,
sqlId: 'SH_XM_LB',
'pageHelp.pageSize': 20,
offerType: '',
commitiResult: '',
registeResult: '',
province: '',
csrcCode: '',
currStatus: '',
order: 'updateDate|desc,stockAuditNum|desc',
keyword: '',
auditApplyDateBegin: '',
auditApplyDateEnd: '',
_: Date.now(),
},
headers: {
Referer: pageUrl,
},
});
// console.log(response.data.result);
const items = response.data.result.map((item) => ({
title: `【${currStatusName[item.currStatus]}】${item.stockAuditName}`,
description: art(path.resolve(__dirname, 'templates/renewal.art'), {
item,
currStatus: currStatusName[item.currStatus],
updateDate: dayjs(item.updateDate, 'YYYYMMDDHHmmss').locale('zh-cn').format('lll'),
auditApplyDate: dayjs(item.auditApplyDate, 'YYYYMMDDHHmmss').locale('zh-cn').format('lll'),
}),
pubDate: parseDate(item.updateDate, 'YYYYMMDDHHmmss'),
link: `${host}/renewal/xmxq/index.shtml?auditId=${item.stockAuditNum}`,
author: item.stockAuditName,
}));
return {
title: '上海证券交易所 - 科创板项目动态',
link: pageUrl,
item: items,
};
}