feat(route): 增加前瞻网 (#10524)
* 增加前瞻网 * style: auto format * chore(deps): bump rand-user-agent from 1.0.77 to 1.0.79 (#137) Bumps [rand-user-agent](https://github.com/WebScrapingAPI/rand-user-agent) from 1.0.77 to 1.0.79. - [Release notes](https://github.com/WebScrapingAPI/rand-user-agent/releases) - [Commits](https://github.com/WebScrapingAPI/rand-user-agent/commits) --- updated-dependencies: - dependency-name: rand-user-agent dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: apply suggestions from cr * fix: deepscan warning Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
4434f8765e
commit
2c3fa64035
|
|
@ -288,6 +288,28 @@ TokenInsight 官方亦有提供 RSS,可参考 <https://api.tokeninsight.com/re
|
|||
|
||||
<Route author="MeXunco" example="/nbd/daily" path="/nbd/daily"/>
|
||||
|
||||
## 前瞻网
|
||||
|
||||
### 文章列表
|
||||
|
||||
<Route author="moke8" example="/qianzhan/analyst/column/all" path="/qianzhan/analyst/column/:type?" :paramsDesc="['分类,见下表']">
|
||||
|
||||
| 全部 | 研究员专栏 | 规划师专栏 | 观察家专栏 |
|
||||
| --- | ----- | ----- | ----- |
|
||||
| all | 220 | 627 | 329 |
|
||||
|
||||
</Route>
|
||||
|
||||
### 排行榜
|
||||
|
||||
<Route author="moke8" example="/qianzhan/analyst/rank/week" path="/qianzhan/analyst/rank/:type?" :paramsDesc="['分类,见下表']">
|
||||
|
||||
| 周排行 | 月排行 |
|
||||
| ---- | ----- |
|
||||
| week | month |
|
||||
|
||||
</Route>
|
||||
|
||||
## 上海证券交易所
|
||||
|
||||
### 本所业务规则
|
||||
|
|
|
|||
|
|
@ -0,0 +1,50 @@
|
|||
const got = require('@/utils/got');
|
||||
const cheerio = require('cheerio');
|
||||
const { parseDate } = require('@/utils/parse-date');
|
||||
const timezone = require('@/utils/timezone');
|
||||
|
||||
module.exports = async (ctx) => {
|
||||
let rootUrl = 'https://www.qianzhan.com/analyst/';
|
||||
const titles = {
|
||||
all: '最新文章',
|
||||
220: '研究员专栏',
|
||||
627: '规划师专栏',
|
||||
329: '观察家专栏',
|
||||
};
|
||||
const { type = 'all' } = ctx.params;
|
||||
|
||||
if (type !== 'all') {
|
||||
rootUrl = rootUrl + 'list/' + type + '.html';
|
||||
}
|
||||
|
||||
const response = await got(rootUrl);
|
||||
const $ = cheerio.load(response.data);
|
||||
const links = $('.ptb30.bb1e.clf .f22 a').map((_, item) => $(item).attr('href'));
|
||||
|
||||
const items = await Promise.all(
|
||||
links.map((_, item) =>
|
||||
ctx.cache.tryGet(item, async () => {
|
||||
const detailResponse = await got(item);
|
||||
const $ = cheerio.load(detailResponse.data);
|
||||
const description = $('#divArtBody').html();
|
||||
const title = $('#h_title').text();
|
||||
const pubDate = timezone(parseDate($('#pubtime_baidu').text().split('• ')[1], 'YYYY-MM-DD HH:mm:ss'), +8);
|
||||
const author = $('.bljjxue').text().match(/\S+/)[0];
|
||||
return {
|
||||
title,
|
||||
link: item,
|
||||
description,
|
||||
pubDate,
|
||||
author,
|
||||
category: $('meta[name="Keywords"]').attr('content').split(','),
|
||||
};
|
||||
})
|
||||
)
|
||||
);
|
||||
|
||||
ctx.state.data = {
|
||||
title: `前瞻经济学人 - ${titles[type]}`,
|
||||
link: rootUrl,
|
||||
item: items,
|
||||
};
|
||||
};
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
module.exports = {
|
||||
'/analyst/column/:type?': ['moke8'],
|
||||
'/analyst/rank/:type?': ['moke8'],
|
||||
};
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
module.exports = {
|
||||
'qianzhan.com': {
|
||||
_name: '前瞻网',
|
||||
'.': [
|
||||
{
|
||||
title: '文章列表',
|
||||
docs: 'https://docs.rsshub.app/finance.html#qian-zhan-wang',
|
||||
source: ['/analyst', '/analyst/list/:html'],
|
||||
target: (params) => {
|
||||
if (params.html) {
|
||||
const type = params.html.match(/\d+/)[0];
|
||||
return '/qianzhan/analyst/column/' + type;
|
||||
} else {
|
||||
return '/qianzhan/analyst/column/all';
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '排行榜',
|
||||
docs: 'https://docs.rsshub.app/finance.html#qian-zhan-wang',
|
||||
source: ['/analyst', '/'],
|
||||
target: '/qianzhan/analyst/rank',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
const got = require('@/utils/got');
|
||||
const cheerio = require('cheerio');
|
||||
const { parseDate } = require('@/utils/parse-date');
|
||||
const timezone = require('@/utils/timezone');
|
||||
|
||||
module.exports = async (ctx) => {
|
||||
const type = ctx.params.type === 'week' ? 1 : 2;
|
||||
const rootUrl = 'https://www.qianzhan.com/analyst/';
|
||||
|
||||
const response = await got(rootUrl);
|
||||
const $ = cheerio.load(response.data);
|
||||
const links = $(`#div_hotlist ul[idx='${type}'] a`).map((_, item) => $(item).attr('href'));
|
||||
|
||||
const items = await Promise.all(
|
||||
links.map((_, item) =>
|
||||
ctx.cache.tryGet(item, async () => {
|
||||
const detailResponse = await got(item);
|
||||
const $ = cheerio.load(detailResponse.data);
|
||||
const description = $('#divArtBody').html();
|
||||
const title = $('#h_title').text();
|
||||
const pubDate = timezone(parseDate($('#pubtime_baidu').text().split('• ')[1], 'YYYY-MM-DD HH:mm:ss'), +8);
|
||||
const author = $('.bljjxue').text().match(/\S+/)[0];
|
||||
return {
|
||||
title,
|
||||
link: item,
|
||||
description,
|
||||
pubDate,
|
||||
author,
|
||||
category: $('meta[name="Keywords"]').attr('content').split(','),
|
||||
};
|
||||
})
|
||||
)
|
||||
);
|
||||
|
||||
ctx.state.data = {
|
||||
title: `前瞻经济学人 - ${type === 1 ? '周排行' : '月排行'}`,
|
||||
link: rootUrl,
|
||||
item: items,
|
||||
};
|
||||
};
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
module.exports = (router) => {
|
||||
router.get('/analyst/column/:type?', require('./column'));
|
||||
router.get('/analyst/rank/:type?', require('./rank'));
|
||||
};
|
||||
Loading…
Reference in New Issue