2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
|
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function vonageApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_option = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2022-04-14 23:00:47 -07:00
|
|
|
const credentials = await this.getCredentials('vonageApi');
|
2020-10-12 23:56:24 -07:00
|
|
|
|
|
|
|
body.api_key = credentials.apiKey as string;
|
|
|
|
|
|
|
|
body.api_secret = credentials.apiSecret as string;
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs,
|
|
|
|
uri: `https://rest.nexmo.com${path}`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
//@ts-ignore
|
|
|
|
return await this.helpers.request.call(this, options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-10-12 23:56:24 -07:00
|
|
|
}
|
|
|
|
}
|