Skip to content

Commit

Permalink
feat(routes/szse): add 深圳证券交易所上市公司公告
Browse files Browse the repository at this point in the history
  • Loading branch information
nczitzk committed Feb 17, 2025
1 parent f2cdb42 commit b441365
Showing 1 changed file with 111 additions and 0 deletions.
111 changes: 111 additions & 0 deletions lib/routes/szse/disclosure/listed-notice.ts
Original file line number Diff line number Diff line change
@@ -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: linkUrl ? new URL(linkUrl, baseUrl).href : undefined,
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,
};

0 comments on commit b441365

Please sign in to comment.