2022-08-01 13:47:55 -07:00
|
|
|
import { parseString } from 'xml2js';
|
2021-02-07 14:42:59 -08:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2022-11-11 07:07:50 -08:00
|
|
|
import { IHttpRequestOptions } from 'n8n-workflow';
|
2021-02-07 14:42:59 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function awsApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
body?: string,
|
|
|
|
headers?: object,
|
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('aws');
|
2021-02-07 14:42:59 -08:00
|
|
|
|
2022-08-23 10:02:32 -07:00
|
|
|
const requestOptions = {
|
|
|
|
qs: {
|
|
|
|
service,
|
|
|
|
path,
|
|
|
|
},
|
2021-02-07 14:42:59 -08:00
|
|
|
method,
|
2022-08-23 10:02:32 -07:00
|
|
|
body,
|
|
|
|
url: '',
|
|
|
|
headers,
|
|
|
|
region: credentials?.region as string,
|
|
|
|
} as IHttpRequestOptions;
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, 'aws', requestOptions);
|
2021-02-07 14:42:59 -08:00
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function awsApiRequestREST(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
body?: string,
|
|
|
|
headers?: object,
|
|
|
|
): Promise<any> {
|
2021-02-07 14:42:59 -08:00
|
|
|
const response = await awsApiRequest.call(this, service, method, path, body, headers);
|
|
|
|
try {
|
|
|
|
return JSON.parse(response);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2021-02-07 14:42:59 -08:00
|
|
|
return response;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function awsApiRequestSOAP(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
body?: string,
|
|
|
|
headers?: object,
|
|
|
|
): Promise<any> {
|
2021-02-07 14:42:59 -08:00
|
|
|
const response = await awsApiRequest.call(this, service, method, path, body, headers);
|
|
|
|
try {
|
|
|
|
return await new Promise((resolve, reject) => {
|
|
|
|
parseString(response, { explicitArray: false }, (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
resolve(data);
|
|
|
|
});
|
|
|
|
});
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2021-02-07 14:42:59 -08:00
|
|
|
return response;
|
|
|
|
}
|
|
|
|
}
|