feat(route): add 经济观察网快讯 (#20168)
* feat(route): add 经济观察网快讯 * fix typo
This commit is contained in:
parent
fb37151003
commit
e3c86d8a62
|
|
@ -0,0 +1,154 @@
|
|||
import { type Data, type DataItem, type Route, ViewType } from '@/types';
|
||||
|
||||
import { art } from '@/utils/render';
|
||||
import cache from '@/utils/cache';
|
||||
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';
|
||||
import path from 'node:path';
|
||||
|
||||
export const handler = async (ctx: Context): Promise<Data> => {
|
||||
const limit: number = Number.parseInt(ctx.req.query('limit') ?? '50', 10);
|
||||
|
||||
const baseUrl: string = 'https://www.eeo.com.cn';
|
||||
const apiUrl: string = 'https://app.eeo.com.cn';
|
||||
const targetUrl: string = new URL('kuaixun/', baseUrl).href;
|
||||
|
||||
const response = await ofetch(apiUrl, {
|
||||
query: {
|
||||
app: 'article',
|
||||
controller: 'index',
|
||||
action: 'getMoreArticle',
|
||||
catid: 3690,
|
||||
uuid: 'b048c7211db949eeb7443cd5b9b3bfe3',
|
||||
page: 1,
|
||||
pageSize: limit,
|
||||
},
|
||||
});
|
||||
|
||||
const targetResponse = await ofetch(targetUrl);
|
||||
const $: CheerioAPI = load(targetResponse);
|
||||
const language = $('html').attr('lang') ?? 'en';
|
||||
|
||||
let items: DataItem[] = [];
|
||||
|
||||
items = response.data.slice(0, limit).map((item): DataItem => {
|
||||
const title: string = item.title;
|
||||
const description: string | undefined = art(path.join(__dirname, 'templates/description.art'), {
|
||||
intro: item.description,
|
||||
description: item.content,
|
||||
});
|
||||
const pubDate: number | string = item.published;
|
||||
const linkUrl: string | undefined = item.url;
|
||||
const categories: string[] = [item.catname].filter(Boolean);
|
||||
const authors: DataItem['author'] = item.author;
|
||||
const guid: string = item.contentid ? `eeo-${item.contentid}` : '';
|
||||
const image: string | undefined = item.thumb;
|
||||
const updated: number | string = pubDate;
|
||||
|
||||
const processedItem: DataItem = {
|
||||
title,
|
||||
description,
|
||||
pubDate: pubDate ? timezone(parseDate(pubDate), +8) : undefined,
|
||||
link: linkUrl,
|
||||
category: categories,
|
||||
author: authors,
|
||||
guid,
|
||||
id: guid,
|
||||
content: {
|
||||
html: description,
|
||||
text: description,
|
||||
},
|
||||
image,
|
||||
banner: image,
|
||||
updated: updated ? timezone(parseDate(updated), +8) : undefined,
|
||||
language,
|
||||
};
|
||||
|
||||
return processedItem;
|
||||
});
|
||||
|
||||
items = await Promise.all(
|
||||
items.map((item) => {
|
||||
if (!item.link) {
|
||||
return item;
|
||||
}
|
||||
|
||||
return cache.tryGet(item.link, async (): Promise<DataItem> => {
|
||||
const detailResponse = await ofetch(item.link);
|
||||
const $$: CheerioAPI = load(detailResponse);
|
||||
|
||||
const title: string = $$('h1').first().text() || $$('h2.title').text() || item.title;
|
||||
const description: string | undefined =
|
||||
item.description +
|
||||
art(path.join(__dirname, 'templates/description.art'), {
|
||||
description: $$('div.xx_boxsing, div#mainBody').html(),
|
||||
});
|
||||
const pubDateStr: string | undefined = $$('h1').next().find('span').first().text() || $$('div.from').text();
|
||||
const authors: DataItem['author'] = $$('h1').next().contents().first().text() || $$('span.showMoreAuthor').text() || item.author;
|
||||
const upDatedStr: string | undefined = pubDateStr;
|
||||
|
||||
const processedItem: DataItem = {
|
||||
title,
|
||||
description,
|
||||
pubDate: pubDateStr ? timezone(parseDate(pubDateStr), +8) : item.pubDate,
|
||||
author: authors,
|
||||
content: {
|
||||
html: description,
|
||||
text: description,
|
||||
},
|
||||
updated: upDatedStr ? timezone(parseDate(upDatedStr), +8) : item.updated,
|
||||
language,
|
||||
};
|
||||
|
||||
return {
|
||||
...item,
|
||||
...processedItem,
|
||||
};
|
||||
});
|
||||
})
|
||||
);
|
||||
|
||||
return {
|
||||
title: $('title').text(),
|
||||
description: $('meta[name="description"]').attr('content'),
|
||||
link: targetUrl,
|
||||
item: items,
|
||||
allowEmpty: true,
|
||||
image: $('div.logo img').attr('src'),
|
||||
author: $('meta[name="author"]').attr('content'),
|
||||
language,
|
||||
id: $('meta[property="og:url"]').attr('content'),
|
||||
};
|
||||
};
|
||||
|
||||
export const route: Route = {
|
||||
path: '/kuaixun',
|
||||
name: '快讯',
|
||||
url: 'www.eeo.com.cn',
|
||||
maintainers: ['nczitzk'],
|
||||
handler,
|
||||
example: '/eeo/kuaixun',
|
||||
parameters: undefined,
|
||||
description: undefined,
|
||||
categories: ['finance'],
|
||||
features: {
|
||||
requireConfig: false,
|
||||
requirePuppeteer: false,
|
||||
antiCrawler: false,
|
||||
supportRadar: true,
|
||||
supportBT: false,
|
||||
supportPodcast: false,
|
||||
supportScihub: false,
|
||||
},
|
||||
radar: [
|
||||
{
|
||||
source: ['www.eeo.com.cn/kuaixun/'],
|
||||
target: '/kuaixun',
|
||||
},
|
||||
],
|
||||
view: ViewType.Articles,
|
||||
};
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import type { Namespace } from '@/types';
|
||||
|
||||
export const namespace: Namespace = {
|
||||
name: '经济观察网',
|
||||
url: 'eeo.com.cn',
|
||||
categories: ['finance'],
|
||||
description: '',
|
||||
lang: 'zh-CN',
|
||||
};
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{{ if intro }}
|
||||
<blockquote>{{ intro }}</blockquote>
|
||||
{{ /if }}
|
||||
|
||||
{{ if description }}
|
||||
{{@ description }}
|
||||
{{ /if }}
|
||||
Loading…
Reference in New Issue