2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2020-06-15 15:47:44 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-06-15 15:47:44 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, 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 = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
): 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-17 14:15:54 -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
|
2022-08-17 08:50:24 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleTasksOAuth2Api', options);
|
2020-06-15 15:47:44 -07:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
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 = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
): Promise<any> {
|
2020-06-15 15:47:44 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.maxResults = 100;
|
|
|
|
|
|
|
|
do {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await googleApiRequest.call(this, method, endpoint, body, query);
|
2020-06-15 15:47:44 -07:00
|
|
|
query.pageToken = responseData['nextPageToken'];
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData['nextPageToken'] !== undefined && responseData['nextPageToken'] !== '');
|
2020-06-15 15:47:44 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|