34 lines
1.5 KiB
JavaScript
34 lines
1.5 KiB
JavaScript
const utils = require('./utils');
|
|
const config = require('@/config').value;
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
if (!config.youtube || !config.youtube.key) {
|
|
throw 'YouTube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#pei-zhi-bu-fen-rss-mo-kuai-pei-zhi">relevant config</a>';
|
|
}
|
|
const id = ctx.params.id;
|
|
const embed = !ctx.params.embed;
|
|
|
|
const playlistTitle = (await utils.getPlaylist(id, 'snippet', ctx.cache)).data.items[0].snippet.title;
|
|
|
|
const data = (await utils.getPlaylistItems(id, 'snippet', ctx.cache)).data.items.filter((d) => d.snippet.title !== 'Private video' && d.snippet.title !== 'Deleted video');
|
|
|
|
ctx.state.data = {
|
|
title: `${playlistTitle} by ${data[0].snippet.channelTitle} - YouTube`,
|
|
link: `https://www.youtube.com/playlist?list=${id}`,
|
|
description: `YouTube playlist ${playlistTitle} by ${data[0].snippet.channelTitle}`,
|
|
item: data.map((item) => {
|
|
const snippet = item.snippet;
|
|
const videoId = snippet.resourceId.videoId;
|
|
const img = utils.getThumbnail(snippet.thumbnails);
|
|
return {
|
|
title: snippet.title,
|
|
description: utils.renderDescription(embed, videoId, img, utils.formatDescription(snippet.description)),
|
|
pubDate: parseDate(snippet.publishedAt),
|
|
link: `https://www.youtube.com/watch?v=${videoId}`,
|
|
author: snippet.videoOwnerChannelTitle,
|
|
};
|
|
}),
|
|
};
|
|
};
|