2022-08-01 13:47:55 -07:00
|
|
|
import { get } from 'lodash';
|
2020-10-13 00:29:47 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { parseString } from 'xml2js';
|
2020-10-13 00:29:47 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2022-11-11 07:07:50 -08:00
|
|
|
import { IDataObject, IHttpRequestOptions } from 'n8n-workflow';
|
2022-08-01 13:47:55 -07:00
|
|
|
|
|
|
|
import { pascalCase } from 'change-case';
|
|
|
|
|
|
|
|
export async function awsApiRequest(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
body?: string | Buffer | IDataObject,
|
2022-11-08 06:28:21 -08:00
|
|
|
_query: IDataObject = {},
|
2022-08-01 13:47:55 -07:00
|
|
|
headers?: object,
|
|
|
|
option: IDataObject = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_region?: string,
|
2022-08-01 13:47:55 -07:00
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('aws');
|
2020-10-13 00:29:47 -07:00
|
|
|
|
2022-08-23 10:02:32 -07:00
|
|
|
const requestOptions = {
|
|
|
|
qs: {
|
|
|
|
service,
|
|
|
|
path,
|
|
|
|
},
|
2020-10-13 00:29:47 -07:00
|
|
|
method,
|
2022-08-23 10:02:32 -07:00
|
|
|
body,
|
|
|
|
url: '',
|
|
|
|
headers,
|
|
|
|
region: credentials?.region as string,
|
|
|
|
} as IHttpRequestOptions;
|
2020-10-13 00:29:47 -07:00
|
|
|
|
|
|
|
if (Object.keys(option).length !== 0) {
|
2022-08-23 10:02:32 -07:00
|
|
|
Object.assign(requestOptions, option);
|
2020-10-13 00:29:47 -07:00
|
|
|
}
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, 'aws', requestOptions);
|
2020-10-13 00:29:47 -07: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,
|
|
|
|
query: IDataObject = {},
|
|
|
|
headers?: object,
|
|
|
|
options: IDataObject = {},
|
|
|
|
region?: string,
|
|
|
|
): Promise<any> {
|
|
|
|
const response = await awsApiRequest.call(
|
|
|
|
this,
|
|
|
|
service,
|
|
|
|
method,
|
|
|
|
path,
|
|
|
|
body,
|
|
|
|
query,
|
|
|
|
headers,
|
|
|
|
options,
|
|
|
|
region,
|
|
|
|
);
|
2020-10-13 00:29:47 -07:00
|
|
|
try {
|
|
|
|
return JSON.parse(response);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2020-10-13 00:29:47 -07: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 | Buffer | IDataObject,
|
|
|
|
query: IDataObject = {},
|
|
|
|
headers?: object,
|
|
|
|
option: IDataObject = {},
|
|
|
|
region?: string,
|
|
|
|
): Promise<any> {
|
|
|
|
const response = await awsApiRequest.call(
|
|
|
|
this,
|
|
|
|
service,
|
|
|
|
method,
|
|
|
|
path,
|
|
|
|
body,
|
|
|
|
query,
|
|
|
|
headers,
|
|
|
|
option,
|
|
|
|
region,
|
|
|
|
);
|
2020-10-13 00:29:47 -07:00
|
|
|
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) {
|
|
|
|
return error;
|
2020-10-13 00:29:47 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function awsApiRequestSOAPAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
path: string,
|
|
|
|
body?: string,
|
|
|
|
query: IDataObject = {},
|
|
|
|
headers: IDataObject = {},
|
|
|
|
option: IDataObject = {},
|
|
|
|
region?: string,
|
|
|
|
): Promise<any> {
|
2020-10-13 00:29:47 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
do {
|
2022-08-01 13:47:55 -07:00
|
|
|
responseData = await awsApiRequestSOAP.call(
|
|
|
|
this,
|
|
|
|
service,
|
|
|
|
method,
|
|
|
|
path,
|
|
|
|
body,
|
|
|
|
query,
|
|
|
|
headers,
|
|
|
|
option,
|
|
|
|
region,
|
|
|
|
);
|
2020-10-13 00:29:47 -07:00
|
|
|
|
|
|
|
//https://forums.aws.amazon.com/thread.jspa?threadID=55746
|
|
|
|
if (get(responseData, `${propertyName.split('.')[0]}.NextContinuationToken`)) {
|
2022-08-01 13:47:55 -07:00
|
|
|
query['continuation-token'] = get(
|
|
|
|
responseData,
|
|
|
|
`${propertyName.split('.')[0]}.NextContinuationToken`,
|
|
|
|
);
|
2020-10-13 00:29:47 -07:00
|
|
|
}
|
|
|
|
if (get(responseData, propertyName)) {
|
|
|
|
if (Array.isArray(get(responseData, propertyName))) {
|
|
|
|
returnData.push.apply(returnData, get(responseData, propertyName));
|
|
|
|
} else {
|
|
|
|
returnData.push(get(responseData, propertyName));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (query.limit && query.limit <= returnData.length) {
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
} while (
|
|
|
|
get(responseData, `${propertyName.split('.')[0]}.IsTruncated`) !== undefined &&
|
|
|
|
get(responseData, `${propertyName.split('.')[0]}.IsTruncated`) !== 'false'
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2021-02-21 01:47:34 -08:00
|
|
|
export function keysTPascalCase(object: IDataObject) {
|
|
|
|
const data: IDataObject = {};
|
|
|
|
for (const key of Object.keys(object)) {
|
|
|
|
data[pascalCase(key as string)] = object[key];
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|