Files
automatisch/packages/backend/src/apps/youtube/triggers/new-video-in-channel/index.js
2024-09-05 13:40:44 +03:00

50 lines
1.3 KiB
JavaScript

import defineTrigger from '../../../../helpers/define-trigger.js';
export default defineTrigger({
name: 'New video in channel',
key: 'newVideoInChannel',
pollInterval: 15,
description:
'Triggers when a new video is published to a specific Youtube channel.',
arguments: [
{
label: 'Channel',
key: 'channelId',
type: 'string',
required: true,
description:
'Get the new videos uploaded to this channel. If the URL of the youtube channel looks like this www.youtube.com/channel/UCbxb2fqe9oNgglAoYqsYOtQ then you must use UCbxb2fqe9oNgglAoYqsYOtQ as a value in this field.',
variables: true,
},
],
async run($) {
const channelId = $.step.parameters.channelId;
const params = {
pageToken: undefined,
part: 'snippet',
channelId: channelId,
maxResults: 50,
order: 'date',
type: 'video',
};
do {
const { data } = await $.http.get('/v3/search', { params });
params.pageToken = data.nextPageToken;
if (data?.items?.length) {
for (const item of data.items) {
$.pushTriggerItem({
raw: item,
meta: {
internalId: item.etag,
},
});
}
}
} while (params.pageToken);
},
});