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

63 lines
1.7 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-06-15 15:47:44 -07:00
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
2020-06-15 15:47:44 -07:00
import type { IDataObject, JsonObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-06-15 15:47:44 -07:00
export async function googleApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
2020-07-14 04:59:37 -07:00
body: IDataObject = {},
2020-06-15 15:47:44 -07:00
qs: IDataObject = {},
uri?: string,
2020-10-22 09:00:28 -07:00
headers: IDataObject = {},
): Promise<any> {
2020-06-15 15:47:44 -07:00
const options: OptionsWithUri = {
headers: {
2020-10-22 06:46:03 -07:00
'Content-Type': 'application/json',
2020-06-15 15:47:44 -07:00
},
method,
body,
qs,
uri: uri || `https://www.googleapis.com${resource}`,
2020-10-22 06:46:03 -07:00
json: true,
2020-06-15 15:47:44 -07:00
};
2020-06-15 15:47:44 -07:00
try {
if (Object.keys(headers).length !== 0) {
options.headers = Object.assign({}, options.headers, headers);
}
if (Object.keys(body).length === 0) {
delete options.body;
}
//@ts-ignore
return await this.helpers.requestOAuth2.call(this, 'googleTasksOAuth2Api', options);
2020-06-15 15:47:44 -07:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-06-15 15:47:44 -07:00
}
}
export async function googleApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
2020-07-14 04:59:37 -07:00
body: IDataObject = {},
2020-10-22 09:00:28 -07:00
query: IDataObject = {},
): Promise<any> {
2020-06-15 15:47:44 -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-06-15 15:47:44 -07:00
return returnData;
}