91 lines
3.0 KiB
TypeScript
91 lines
3.0 KiB
TypeScript
import type { Route } from '@/types';
|
||
import { ViewType } from '@/types';
|
||
import got from '@/utils/got';
|
||
import { parseDate } from '@/utils/parse-date';
|
||
import timezone from '@/utils/timezone';
|
||
|
||
export const route: Route = {
|
||
path: '/featured/:category?',
|
||
categories: ['finance'],
|
||
view: ViewType.Articles,
|
||
example: '/techflowpost/featured',
|
||
parameters: {
|
||
category: '分类,见下表,默认为全部',
|
||
},
|
||
features: {
|
||
requireConfig: false,
|
||
requirePuppeteer: false,
|
||
antiCrawler: false,
|
||
supportBT: false,
|
||
supportPodcast: false,
|
||
supportScihub: false,
|
||
},
|
||
radar: [
|
||
{
|
||
source: ['techflowpost.com/article/index.html'],
|
||
},
|
||
],
|
||
name: '精选',
|
||
maintainers: ['zhenlohuang'],
|
||
handler,
|
||
url: 'techflowpost.com/article/index.html',
|
||
description: `| 全部 | 行业 & 项目观察 | 项目简介 | 项目动态 | 赛道解读 | 播客笔记 | 交易观察 | VC洞察 | 实用教程 | 人物故事 & 访谈 | 法律 & 监管动态 | 活动动态 | 交易所动态 |
|
||
| ---- | --------------- | -------- | -------- | -------- | -------- | -------- | ------ | -------- | --------------- | --------------- | -------- | ---------- |
|
||
| | 2040 | 2046 | 2047 | 2045 | 2044 | 2043 | 2042 | 2041 | 2039 | 2033 | 2032 | 2031 |`,
|
||
};
|
||
|
||
const categoryMap: Record<string, string> = {
|
||
'2040': '行业 & 项目观察',
|
||
'2046': '项目简介',
|
||
'2047': '项目动态',
|
||
'2045': '赛道解读',
|
||
'2044': '播客笔记',
|
||
'2043': '交易观察',
|
||
'2042': 'VC洞察',
|
||
'2041': '实用教程',
|
||
'2039': '人物故事 & 访谈',
|
||
'2033': '法律 & 监管动态',
|
||
'2032': '活动动态',
|
||
'2031': '交易所动态',
|
||
};
|
||
|
||
async function handler(ctx) {
|
||
const category = ctx.req.param('category') ?? '';
|
||
const limit = ctx.req.query('limit') ?? 50;
|
||
|
||
const rootUrl = 'https://www.techflowpost.com';
|
||
const currentUrl = `${rootUrl}/article/index.html`;
|
||
|
||
const formData: Record<string, string | number> = {
|
||
pageindex: 1,
|
||
pagesize: limit,
|
||
is_specialnews: 'N',
|
||
};
|
||
|
||
if (category) {
|
||
formData.ncata_id = category;
|
||
}
|
||
|
||
const { data: response } = await got.post('https://www.techflowpost.com/ashx/index.ashx', {
|
||
form: formData,
|
||
});
|
||
|
||
const items = response.content.map((item) => ({
|
||
title: item.stitle,
|
||
author: item.sauthor_name,
|
||
link: `${rootUrl}/article/detail_${item.narticle_id}.html`,
|
||
category: [item.new_scata_name],
|
||
pubDate: timezone(parseDate(item.dcreate_time), +8),
|
||
updated: timezone(parseDate(item.dmodi_time), +8),
|
||
description: item.scontent,
|
||
}));
|
||
|
||
const categoryName = category && categoryMap[category] ? `(${categoryMap[category]})` : '';
|
||
|
||
return {
|
||
title: `深潮TechFlow - 精选文章${categoryName}`,
|
||
link: currentUrl,
|
||
item: items,
|
||
};
|
||
}
|