37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
const link = `https://www.xiaoyuzhoufm.com/podcast/${ctx.params.id}`;
|
|
const response = await got({
|
|
method: 'get',
|
|
url: link,
|
|
});
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
const page_data = JSON.parse($('#__NEXT_DATA__')[0].children[0].data);
|
|
|
|
const episodes = page_data.props.pageProps.podcast.episodes.map((item) => ({
|
|
title: item.title,
|
|
enclosure_url: item.enclosure.url,
|
|
itunes_duration: item.duration,
|
|
enclosure_type: 'audio/mpeg',
|
|
link: `https://www.xiaoyuzhoufm.com/episode/${item.eid}`,
|
|
pubDate: parseDate(item.pubDate),
|
|
description: item.shownotes,
|
|
itunes_item_image: (item.image || item.podcast?.image)?.smallPicUrl,
|
|
}));
|
|
|
|
ctx.state.data = {
|
|
title: page_data.props.pageProps.podcast.title,
|
|
link: `https://www.xiaoyuzhoufm.com/podcast/${page_data.props.pageProps.podcast.pid}`,
|
|
itunes_author: page_data.props.pageProps.podcast.author,
|
|
itunes_category: '',
|
|
image: page_data.props.pageProps.podcast.image.smallPicUrl,
|
|
item: episodes,
|
|
description: page_data.props.pageProps.podcast.description,
|
|
};
|
|
};
|