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:
mokevip8 2022-09-07 05:31:05 +08:00 committed by GitHub
parent 4434f8765e
commit 2c3fa64035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 146 additions and 0 deletions

View File

@ -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>
## 上海证券交易所
### 本所业务规则

50
lib/v2/qianzhan/column.js Normal file
View File

@ -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,
};
};

View File

@ -0,0 +1,4 @@
module.exports = {
'/analyst/column/:type?': ['moke8'],
'/analyst/rank/:type?': ['moke8'],
};

26
lib/v2/qianzhan/radar.js Normal file
View File

@ -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',
},
],
},
};

40
lib/v2/qianzhan/rank.js Normal file
View File

@ -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,
};
};

View File

@ -0,0 +1,4 @@
module.exports = (router) => {
router.get('/analyst/column/:type?', require('./column'));
router.get('/analyst/rank/:type?', require('./rank'));
};