2020-02-28 16:55:14 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-02-28 16:55:14 -08:00
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
IHookFunctions,
|
2021-04-16 09:33:36 -07:00
|
|
|
IWebhookFunctions,
|
|
|
|
NodeApiError,
|
|
|
|
NodeOperationError,
|
2020-02-28 16:55:14 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function driftApiRequest(
|
|
|
|
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-02-28 16:55:14 -08:00
|
|
|
let options: OptionsWithUri = {
|
2020-06-16 02:45:47 -07:00
|
|
|
headers: {},
|
2020-02-28 16:55:14 -08:00
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs: query,
|
2020-06-16 02:45:47 -07:00
|
|
|
uri: uri || `https://driftapi.com${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-02-28 16:55:14 -08:00
|
|
|
};
|
2020-06-16 02:45:47 -07:00
|
|
|
|
2020-02-28 16:55:14 -08:00
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.form;
|
|
|
|
}
|
|
|
|
if (!Object.keys(query).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
options = Object.assign({}, options, option);
|
2020-06-16 02:45:47 -07:00
|
|
|
|
|
|
|
const authenticationMethod = this.getNodeParameter('authentication', 0);
|
|
|
|
|
2020-02-28 16:55:14 -08:00
|
|
|
try {
|
2020-06-16 02:45:47 -07:00
|
|
|
if (authenticationMethod === 'accessToken') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('driftApi');
|
2020-06-16 02:45:47 -07:00
|
|
|
|
|
|
|
options.headers!['Authorization'] = `Bearer ${credentials.accessToken}`;
|
|
|
|
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} else {
|
|
|
|
return await this.helpers.requestOAuth2!.call(this, 'driftOAuth2Api', options);
|
|
|
|
}
|
2020-02-28 16:55:14 -08:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-02-28 16:55:14 -08:00
|
|
|
}
|
|
|
|
}
|