feat(route): add 加美财经 (#7773)

This commit is contained in:
Ethan Shen 2021-06-27 08:23:40 +08:00 committed by GitHub
parent f513b5ef10
commit 3e3657cdd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 101 additions and 0 deletions

View File

@ -1291,6 +1291,16 @@ others = 热点新闻 + 滚动新闻
</Route>
## 加美财经
<Route author="nczitzk" example="/caus" path="/caus/:category?" :paramsDesc="['分类,见下表,默认为全部']">
| 全部 | 要闻 | 商业 | 快讯 | 投资理财 | 生活 |
| ---- | ---- | ---- | ---- | -------- | ---- |
| 0 | 1 | 2 | 3 | 4 | 6 |
</Route>
## 贾真的电商 108 将
### 「108 将」实战分享

View File

@ -4115,4 +4115,7 @@ router.get('/bibgame/:category?/:type?', require('./routes/bibgame/category'));
// 澳門特別行政區政府各公共部門獎助貸學金服務平台
router.get('/macau-bolsas/:lang?', require('./routes/macau-bolsas/index'));
// 加美财经
router.get('/caus/:category?', require('./routes/caus'));
module.exports = router;

88
lib/routes/caus/index.js Normal file
View File

@ -0,0 +1,88 @@
const got = require('@/utils/got');
const categories = {
0: {
title: '全部',
link: 'home?id=0',
},
1: {
title: '要闻',
link: 'focus_news?id=1',
},
2: {
title: '商业',
link: 'business?id=2',
},
3: {
title: '快讯',
link: 'hours?id=3',
},
4: {
title: '投资理财',
link: 'CFT?id=4',
},
6: {
title: '生活',
link: 'life?id=6',
},
};
module.exports = async (ctx) => {
const category = ctx.params.category || '0';
const isHome = category === '0';
const rootUrl = 'https://www.caus.com';
const apiRootUrl = 'https://api.caus.money';
const currentUrl = `${rootUrl}/${categories[category].link}`;
const searchUrl = `${apiRootUrl}/toronto/display/searchList`;
const listUrl = `${apiRootUrl}/toronto/display/lanmuArticlelistNew`;
const response = await got({
method: 'post',
url: isHome ? searchUrl : listUrl,
json: isHome
? {
pageQ: {
pageSize: 10,
sortFiled: 'id',
sortType: 'DESC',
},
types: ['ARTICLE', 'VIDEO'],
}
: {
filterIds: [],
lanmuId: parseInt(category),
},
});
const list = (isHome ? response.data.data : response.data.data.articleList).map((item) => ({
title: item.title,
link: item.contentId,
pubDate: new Date(item.createTime),
}));
const items = await Promise.all(
list.map(
async (item) =>
await ctx.cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: `${apiRootUrl}/toronto/display/contentWithRelate?contentId=${item.link}`,
});
item.link = `${rootUrl}/detail/${item.link}`;
item.description = detailResponse.data.data.content.content;
return item;
})
)
);
ctx.state.data = {
title: `${categories[category].title} - 加美财经`,
link: currentUrl,
item: items,
};
};