2019-06-23 03:35:23 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError, NodeOperationError,
|
2019-06-23 03:35:23 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-05-18 17:05:49 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
/**
|
|
|
|
* Make an API request to Twilio
|
|
|
|
*
|
|
|
|
* @param {IHookFunctions} this
|
|
|
|
* @param {string} method
|
|
|
|
* @param {string} url
|
|
|
|
* @param {object} body
|
|
|
|
* @returns {Promise<any>}
|
|
|
|
*/
|
|
|
|
export async function twilioApiRequest(this: IHookFunctions | IExecuteFunctions, method: string, endpoint: string, body: IDataObject, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('twilioApi') as {
|
2021-05-18 17:05:49 -07:00
|
|
|
accountSid: string;
|
|
|
|
authType: 'authToken' | 'apiKey';
|
|
|
|
authToken: string;
|
|
|
|
apiKeySid: string;
|
|
|
|
apiKeySecret: string;
|
|
|
|
};
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
if (query === undefined) {
|
|
|
|
query = {};
|
|
|
|
}
|
|
|
|
|
2021-05-18 17:05:49 -07:00
|
|
|
const options: OptionsWithUri = {
|
2019-06-23 03:35:23 -07:00
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs: query,
|
|
|
|
uri: `https://api.twilio.com/2010-04-01/Accounts/${credentials.accountSid}${endpoint}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
|
2021-05-18 17:05:49 -07:00
|
|
|
if (credentials.authType === 'apiKey') {
|
|
|
|
options.auth = {
|
|
|
|
user: credentials.apiKeySid,
|
|
|
|
password: credentials.apiKeySecret,
|
|
|
|
};
|
|
|
|
} else if (credentials.authType === 'authToken') {
|
|
|
|
options.auth = {
|
|
|
|
user: credentials.accountSid,
|
|
|
|
pass: credentials.authToken,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
try {
|
2019-10-05 04:44:25 -07:00
|
|
|
return await this.helpers.request(options);
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|