feat(route): add consumer shopping-guide (#14105)
This commit is contained in:
parent
f2a629295d
commit
9a32aea50a
|
|
@ -1,3 +1,4 @@
|
|||
module.exports = {
|
||||
'/shopping-guide/:category?/:language?': ['TonyRL'],
|
||||
'/:category?/:language?/:keyword?': ['nczitzk'],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@ module.exports = {
|
|||
source: ['/'],
|
||||
target: '/consumer/:category?/:language?/:keyword?',
|
||||
},
|
||||
{
|
||||
title: '消費全攻略',
|
||||
docs: 'https://docs.rsshub.app/routes/new-media#xiao-fei-zhe-wei-yuan-hui',
|
||||
source: ['/:language/shopping-guide/:category'],
|
||||
target: '/consumer/shopping-guide/:category/:language',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
module.exports = function (router) {
|
||||
router.get('/shopping-guide/:category?/:language?', require('./shopping-guide'));
|
||||
router.get('/:category?/:language?/:keyword?', require('./index'));
|
||||
};
|
||||
|
|
|
|||
|
|
@ -0,0 +1,66 @@
|
|||
const got = require('@/utils/got');
|
||||
const cheerio = require('cheerio');
|
||||
const { parseDate } = require('@/utils/parse-date');
|
||||
|
||||
module.exports = async (ctx) => {
|
||||
const { category = 'trivia', language = 'tc' } = ctx.params;
|
||||
const rootUrl = 'https://www.consumer.org.hk';
|
||||
const currentUrl = `${rootUrl}/${language}/shopping-guide/${category}`;
|
||||
|
||||
const { data: response } = await got(currentUrl, {
|
||||
headers: {
|
||||
cookie: `consumer_pagination={${encodeURI('"228c"')}:24}`,
|
||||
},
|
||||
});
|
||||
|
||||
const $ = cheerio.load(response);
|
||||
|
||||
const list = $('.shadow-long-blk')
|
||||
.toArray()
|
||||
.map((item) => {
|
||||
item = $(item);
|
||||
|
||||
const info = item
|
||||
.find('.item-info li')
|
||||
.toArray()
|
||||
.map((item) => $(item).text().trim());
|
||||
return {
|
||||
title: item.find('h2').text().trim(),
|
||||
description: item.find('p').text().trim(),
|
||||
link: `${rootUrl}${item.attr('href')}`,
|
||||
pubDate: parseDate(info.shift(), 'YYYY-MM-DD'),
|
||||
category: info,
|
||||
};
|
||||
});
|
||||
|
||||
const items = await Promise.all(
|
||||
list.map((item) =>
|
||||
ctx.cache.tryGet(item.link, async () => {
|
||||
const { data: response } = await got(item.link);
|
||||
const $ = cheerio.load(response);
|
||||
|
||||
const header = $('.article-img-blk');
|
||||
header.find('img').each((_, ele) => {
|
||||
ele = $(ele);
|
||||
if (ele.attr('src') && ele.attr('srcset')) {
|
||||
ele.removeAttr('srcset');
|
||||
ele.attr('src', ele.attr('src').replace(/\/\d+c\d+\//, '/0p0/'));
|
||||
}
|
||||
});
|
||||
|
||||
item.description = header.html() + $('article .ckec').html();
|
||||
|
||||
return item;
|
||||
})
|
||||
)
|
||||
);
|
||||
|
||||
ctx.state.data = {
|
||||
title: $('head title').text(),
|
||||
link: currentUrl,
|
||||
image: $('meta[property="og:image"]').attr('content'),
|
||||
logo: $('link[rel="apple-touch-icon"]').attr('href'),
|
||||
icon: $('link[rel="apple-touch-icon"]').attr('href'),
|
||||
item: items,
|
||||
};
|
||||
};
|
||||
|
|
@ -4698,6 +4698,14 @@
|
|||
| sc | tc |
|
||||
</Route>
|
||||
|
||||
### 消費全攻略 {#xiao-fei-zhe-wei-yuan-hui-xiao-fei-quan-gong-lve}
|
||||
|
||||
<Route author="TonyRL" example="/consumer/shopping-guide" path="/consumer/shopping-guide/:category?/:language?" paramsDesc={['分类,见下表,默认为 `trivia`', '语言,见上表,默认为 `tc`']} radar="1">
|
||||
| 冷知識 | 懶人包 | 特集 | 銀髮一族 | 飲食煮意 | 科技達人 | 健康美容 | 規劃人生 | 消閒娛樂 | 家品家電 | 親子時光 | 綠色生活 |
|
||||
| ------ | ------ | -------- | ------------------ | ---------------- | ---------- | ----------------- | --------------------------- | ------------------------- | --------------- | --------------- | ------------ |
|
||||
| trivia | tips | features | silver-hair-market | food-and-cooking | tech-savvy | health-and-beauty | life-and-financial-planning | leisure-and-entertainment | home-appliances | family-and-kids | green-living |
|
||||
</Route>
|
||||
|
||||
## 小刀娱乐网 {#xiao-dao-yu-le-wang}
|
||||
|
||||
### 分类 {#xiao-dao-yu-le-wang-fen-lei}
|
||||
|
|
|
|||
Loading…
Reference in New Issue