2020-07-01 19:54:51 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
2020-08-16 00:40:15 -07:00
|
|
|
} from 'request';
|
2020-07-01 19:54:51 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError,
|
2020-07-01 19:54:51 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function googleApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
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).length === 0) {
|
|
|
|
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) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-07-01 19:54:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-16 00:40:15 -07:00
|
|
|
export async function googleApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-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]);
|
|
|
|
} while (
|
|
|
|
responseData['nextPageToken'] !== undefined &&
|
|
|
|
responseData['nextPageToken'] !== ''
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|