feat(routes/szse): add 深圳证券交易所上市公司公告 (#18403)

* feat(routes/szse): add 深圳证券交易所上市公司公告

* fix typo
This commit is contained in:
Ethan Shen 2025-02-20 02:33:00 +08:00 committed by GitHub
parent f1e137350d
commit 40de2b5e2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,111 @@
import { type Data, type DataItem, type Route, ViewType } from '@/types';
import ofetch from '@/utils/ofetch';
import { parseDate } from '@/utils/parse-date';
import timezone from '@/utils/timezone';
import { type CheerioAPI, load } from 'cheerio';
import { type Context } from 'hono';
export const handler = async (ctx: Context): Promise<Data> => {
const { category = '' } = ctx.req.param();
const limit: number = Number.parseInt(ctx.req.query('limit') ?? '50', 10);
const baseUrl: string = 'https://www.szse.cn';
const staticBaseUrl: string = 'https://disc.static.szse.cn';
const apiUrl: string = new URL('api/disc/announcement/annList', baseUrl).href;
const targetUrl: string = new URL(`disclosure/listed/notice${category}`, baseUrl).href;
const targetResponse = await ofetch(targetUrl);
const $: CheerioAPI = load(targetResponse);
const language = $('html').attr('lang') ?? 'zh-CN';
const response = await ofetch(apiUrl, {
method: 'POST',
body: {
seDate: ['', ''],
channelCode: ['listedNotice_disc'],
pageSize: limit,
pageNum: 1,
},
});
const items: DataItem[] = response.data
.slice(0, limit)
.map((item): DataItem => {
const title: string = item.title;
const pubDate: number | string = item.publishTime;
const linkUrl: string | undefined = `disclosure/listed/bulletinDetail/index.html?${item.id}`;
const categories: string[] = [...new Set([...item.secCode, ...item.secName, item.bigCategoryId, item.bigIndustryCode, item.smallCategoryId].filter(Boolean))];
const guid: string = `szse-${item.id}`;
const updated: number | string = item.publishTime;
let processedItem: DataItem = {
title,
pubDate: pubDate ? timezone(parseDate(pubDate), +8) : undefined,
link: new URL(linkUrl, baseUrl).href,
category: categories,
guid,
id: guid,
updated: updated ? timezone(parseDate(updated), +8) : undefined,
language,
};
const enclosureUrl: string | undefined = new URL(`download${item.attachPath}`, staticBaseUrl).href;
if (enclosureUrl) {
const enclosureType: string = `application/${item.attachFormat}`;
processedItem = {
...processedItem,
enclosure_url: enclosureUrl,
enclosure_type: enclosureType,
enclosure_title: title,
enclosure_length: undefined,
};
}
return processedItem;
})
.filter((_): _ is DataItem => true);
return {
title: '深圳证券交易所 - 上市公司公告',
description: $('meta[name="description"]').attr('content'),
link: targetUrl,
item: items,
allowEmpty: true,
image: $('a.navbar-brand img').attr('src'),
author: $('meta[name="author"]').attr('content'),
language,
id: targetUrl,
};
};
export const route: Route = {
path: '/disclosure/listed/notice',
name: '上市公司公告',
url: 'www.szse.cn',
maintainers: ['nczitzk'],
handler,
example: '/szse/disclosure/listed/notice',
parameters: undefined,
description: undefined,
categories: ['finance'],
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportRadar: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.szse.cn/disclosure/listed/notice/index.html'],
target: '/disclosure/listed/notice',
},
],
view: ViewType.Articles,
};