2020-06-17 14:15:54 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
2020-06-15 15:47:44 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
2020-06-17 14:15:54 -07:00
|
|
|
ILoadOptionsFunctions,
|
2020-06-15 15:47:44 -07:00
|
|
|
} from 'n8n-core';
|
|
|
|
|
2020-06-17 14:15:54 -07:00
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
} from 'n8n-workflow';
|
2020-06-15 15:47:44 -07:00
|
|
|
|
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
headers: IDataObject = {}
|
|
|
|
): Promise<any> {
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://www.googleapis.com${resource}`,
|
|
|
|
json: true
|
|
|
|
};
|
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
|
|
|
|
return await this.helpers.requestOAuth2.call(
|
|
|
|
this,
|
|
|
|
'googleTasksOAuth2Api',
|
|
|
|
options
|
|
|
|
);
|
|
|
|
} catch (error) {
|
2020-06-17 14:15:54 -07:00
|
|
|
if (error.response && error.response.body && error.response.body.error) {
|
|
|
|
|
|
|
|
let errors = error.response.body.error.errors;
|
|
|
|
|
|
|
|
errors = errors.map((e: IDataObject) => e.message);
|
2020-06-15 15:47:44 -07:00
|
|
|
// Try to return the error prettier
|
|
|
|
throw new Error(
|
2020-06-17 14:15:54 -07:00
|
|
|
`Google Tasks error response [${error.statusCode}]: ${errors.join('|')}`
|
2020-06-15 15:47:44 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function googleApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {}
|
|
|
|
): Promise<any> {
|
|
|
|
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;
|
|
|
|
}
|