Skip to content

Commit

Permalink
fix(YouTube Node): Fix Date filters (#10725)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShireenMissi authored Sep 11, 2024
1 parent 4f94319 commit 21936c8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions packages/nodes-base/nodes/Google/YouTube/YouTube.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import type {
} from 'n8n-workflow';
import { NodeConnectionType, BINARY_ENCODING, NodeOperationError } from 'n8n-workflow';

import { DateTime } from 'luxon';
import { googleApiRequest, googleApiRequestAllItems } from './GenericFunctions';

import { channelFields, channelOperations } from './ChannelDescription';
Expand Down Expand Up @@ -762,6 +763,28 @@ export class YouTube implements INodeType {
qs.type = 'video';

qs.forMine = true;
if (filters.publishedAfter) {
const publishedAfter = DateTime.fromISO(filters.publishedAfter as string);
if (publishedAfter.isValid) {
filters.publishedAfter = publishedAfter.setZone(this.getTimezone()).toISO();
} else {
throw new NodeOperationError(
this.getNode(),
`The value "${filters.publishedAfter as string}" is not a valid DateTime.`,
);
}
}
if (filters.publishedBefore) {
const publishedBefore = DateTime.fromISO(filters.publishedBefore as string);
if (publishedBefore.isValid) {
filters.publishedAfter = publishedBefore.setZone(this.getTimezone()).toISO();
} else {
throw new NodeOperationError(
this.getNode(),
`The value "${filters.publishedBefore as string}" is not a valid DateTime.`,
);
}
}

Object.assign(qs, options, filters);

Expand Down

0 comments on commit 21936c8

Please sign in to comment.