RSSHub/lib/v2/zcool/top.js

52 lines
1.8 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
const { extractArticle, extractWork } = require('./utils');
const baseUrl = 'https://www.zcool.com.cn';
module.exports = async (ctx) => {
const { type } = ctx.params;
const url = `${baseUrl}/top/${type === 'design' ? 'index.do' : 'article.do?rankType=8'}`;
const { data: response } = await got(url);
const $ = cheerio.load(response);
const data = JSON.parse($('script#__NEXT_DATA__').text());
const list = data.props.pageProps.listResult.data.map((item) => ({
title: item.rankingTitle,
author: item.member.name,
category: [item.productCategoryStr, item.productSubCateStr, ...item.tags],
link: item.pageUrl,
pubDate: parseDate(item.rankingPublishTime),
}));
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 data = JSON.parse($('script#__NEXT_DATA__').text());
item.pubDate = parseDate(data.props.pageProps.data.publishTime, 'x');
if (item.link.startsWith('https://www.zcool.com.cn/article/')) {
item.description = extractArticle(data);
} else if (item.link.startsWith('https://www.zcool.com.cn/work/')) {
item.description = extractWork(data);
}
return item;
})
)
);
ctx.state.data = {
title: data.props.pageProps.seo.title,
description: data.props.pageProps.seo.description,
link: url,
item: items,
};
};