2021-03-23 15:49:08 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeApiError,
|
|
|
|
NodeOperationError,
|
2021-03-23 15:49:08 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an API request to Plivo.
|
|
|
|
*
|
|
|
|
* @param {IHookFunctions} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} url
|
|
|
|
* @param {object} body
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
|
|
|
export async function plivoApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
) {
|
|
|
|
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('plivoApi') as { authId: string, authToken: string };
|
2021-03-23 15:49:08 -07:00
|
|
|
|
|
|
|
if (!credentials) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No credentials returned!');
|
2021-03-23 15:49:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs,
|
|
|
|
uri: `https://api.plivo.com/v1/Account/${credentials.authId}${endpoint}/`,
|
|
|
|
auth: {
|
|
|
|
user: credentials.authId,
|
|
|
|
pass: credentials.authToken,
|
|
|
|
},
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
return await this.helpers.request(options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2021-03-23 15:49:08 -07:00
|
|
|
}
|
|
|
|
}
|