77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import { Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
import timezone from '@/utils/timezone';
|
|
import { config } from '@/config';
|
|
|
|
export const route: Route = {
|
|
path: '/topic/:id',
|
|
categories: ['finance'],
|
|
example: '/jin10/topic/396',
|
|
parameters: { id: 'N' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['xnews.jin10.com/topic/:id'],
|
|
},
|
|
],
|
|
name: '主题文章',
|
|
maintainers: ['miles170'],
|
|
handler,
|
|
url: 'jin10.com/',
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const id = ctx.req.param('id');
|
|
const data = await cache.tryGet(
|
|
`jin10:topic:${id}`,
|
|
async () => {
|
|
const { data: response } = await got(`https://reference-api.jin10.com/topic/getById?id=${id}`, {
|
|
headers: {
|
|
'x-app-id': 'g93rhHb9DcDptyPb',
|
|
'x-version': '1.0.1',
|
|
},
|
|
});
|
|
return response.data;
|
|
},
|
|
config.cache.routeExpire,
|
|
false
|
|
);
|
|
|
|
const items = await Promise.all(
|
|
data.list.map((item) =>
|
|
cache.tryGet(`jin10:reference:${item.id}`, async () => {
|
|
const { data: response } = await got(`https://reference-api.jin10.com/reference/getOne?id=${item.id}&type=news`, {
|
|
headers: {
|
|
'x-app-id': 'g93rhHb9DcDptyPb',
|
|
'x-version': '1.0.1',
|
|
},
|
|
});
|
|
|
|
return {
|
|
title: item.title,
|
|
description: response.data.content,
|
|
author: item.author.nick,
|
|
pubDate: timezone(parseDate(item.display_datetime), 8),
|
|
link: `https://xnews.jin10.com/details/${item.id}`,
|
|
};
|
|
})
|
|
)
|
|
);
|
|
|
|
return {
|
|
title: data.title,
|
|
link: `https://xnews.jin10.com/topic/${id}`,
|
|
description: data.introduction,
|
|
item: items,
|
|
};
|
|
}
|