n8n/packages/nodes-base/nodes/Google/YouTube/GenericFunctions.ts

64 lines
1.6 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-07-01 19:54:51 -07:00
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
2020-07-01 19:54:51 -07:00
import type { IDataObject, JsonObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-07-01 19:54:51 -07:00
export async function googleApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: any = {},
qs: IDataObject = {},
uri?: string,
option: IDataObject = {},
): Promise<any> {
2020-07-01 19:54:51 -07:00
let options: OptionsWithUri = {
headers: {
'Content-Type': 'application/json',
},
method,
body,
qs,
uri: uri || `https://www.googleapis.com${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-07-01 19:54:51 -07:00
};
try {
options = Object.assign({}, options, option);
if (Object.keys(body as IDataObject).length === 0) {
2020-07-01 19:54:51 -07:00
delete options.body;
}
2020-08-09 14:39:28 -07:00
2020-07-01 19:54:51 -07:00
//@ts-ignore
return await this.helpers.requestOAuth2.call(this, 'youTubeOAuth2Api', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-07-01 19:54:51 -07:00
}
}
export async function googleApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
body: any = {},
query: IDataObject = {},
): Promise<any> {
2020-07-01 19:54:51 -07:00
const returnData: IDataObject[] = [];
let responseData;
query.maxResults = 100;
do {
responseData = await googleApiRequest.call(this, method, endpoint, body, query);
query.pageToken = responseData.nextPageToken;
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
} while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== '');
2020-07-01 19:54:51 -07:00
return returnData;
}