RSSHub/lib/v2/eastday/find.js

50 lines
1.3 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const timezone = require('@/utils/timezone');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const rootUrl = 'https://apin.eastday.com';
const currentUrl = `${rootUrl}/api/news/Find`;
const response = await got({
method: 'post',
url: currentUrl,
json: {
currentPage: 1,
newsType: 1,
pageSize: 30,
query: '',
},
});
const list = response.data.newsList.list.map((item) => ({
link: item.url,
title: item.title,
pubDate: timezone(parseDate(item.time), +8),
}));
const items = await Promise.all(
list.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const content = cheerio.load(detailResponse.data);
item.description = content('.detail').html();
return item;
})
)
);
ctx.state.data = {
title: '热点搜索 - 东方网',
link: 'https://news.eastday.com/china/index_K43594.html',
item: items,
};
};