mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
c204995d9c
Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Giulio Andreini <andreini@netseven.it>
76 lines
1.6 KiB
TypeScript
76 lines
1.6 KiB
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
IDataObject,
|
|
IHttpRequestMethods,
|
|
IRequestOptions,
|
|
IHttpRequestOptions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to Twilio
|
|
*
|
|
*/
|
|
export async function twilioApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
body: IDataObject,
|
|
query?: IDataObject,
|
|
): Promise<any> {
|
|
const credentials = (await this.getCredentials('twilioApi')) as {
|
|
accountSid: string;
|
|
authType: 'authToken' | 'apiKey';
|
|
authToken: string;
|
|
apiKeySid: string;
|
|
apiKeySecret: string;
|
|
};
|
|
|
|
if (query === undefined) {
|
|
query = {};
|
|
}
|
|
|
|
const options: IRequestOptions = {
|
|
method,
|
|
form: body,
|
|
qs: query,
|
|
uri: `https://api.twilio.com/2010-04-01/Accounts/${credentials.accountSid}${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'twilioApi', options);
|
|
}
|
|
|
|
export async function twilioTriggerApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
body: FormData | IDataObject = {},
|
|
): Promise<any> {
|
|
const options: IHttpRequestOptions = {
|
|
method,
|
|
body,
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
url: `https://events.twilio.com/v1/${endpoint}`,
|
|
json: true,
|
|
};
|
|
return await this.helpers.requestWithAuthentication.call(this, 'twilioApi', options);
|
|
}
|
|
|
|
const XML_CHAR_MAP: { [key: string]: string } = {
|
|
'<': '<',
|
|
'>': '>',
|
|
'&': '&',
|
|
'"': '"',
|
|
"'": ''',
|
|
};
|
|
|
|
export function escapeXml(str: string) {
|
|
return str.replace(/[<>&"']/g, (ch: string) => {
|
|
return XML_CHAR_MAP[ch];
|
|
});
|
|
}
|