2019-10-05 08:03:18 -07:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import {
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodePropertyOptions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IDataObject
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2019-10-15 10:21:48 -07:00
|
|
|
import { awsApiRequestREST } from './GenericFunctions';
|
2019-10-05 08:03:18 -07:00
|
|
|
|
|
|
|
export class AwsLambda implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'AWS Lambda',
|
|
|
|
name: 'awsLambda',
|
|
|
|
icon: 'file:lambda.png',
|
|
|
|
group: ['output'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["function"]}}',
|
|
|
|
description: 'Invoke functions on AWS Lambda',
|
|
|
|
defaults: {
|
|
|
|
name: 'AWS Lambda',
|
|
|
|
color: '#FF9900',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'aws',
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
properties: [
|
2019-10-15 10:24:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Invoke',
|
|
|
|
value: 'invoke',
|
|
|
|
description: 'Invoke a function',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'invoke',
|
|
|
|
description: 'The operation to perform.',
|
|
|
|
},
|
2019-10-05 08:03:18 -07:00
|
|
|
{
|
|
|
|
displayName: 'Function',
|
|
|
|
name: 'function',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getFunctions',
|
|
|
|
},
|
2019-10-15 10:24:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'invoke',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-10-05 08:03:18 -07:00
|
|
|
options: [],
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
description: 'The function you want to invoke',
|
|
|
|
},
|
2019-10-05 08:10:12 -07:00
|
|
|
{
|
|
|
|
displayName: 'Qualifier',
|
|
|
|
name: 'qualifier',
|
|
|
|
type: 'string',
|
2019-10-15 10:24:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'invoke',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-10-05 08:10:12 -07:00
|
|
|
required: true,
|
|
|
|
default: '$LATEST',
|
|
|
|
description: 'Specify a version or alias to invoke a published version of the function',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Invocation Type',
|
|
|
|
name: 'invocationType',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Wait for results',
|
|
|
|
value: 'RequestResponse',
|
|
|
|
description: 'Invoke the function synchronously and wait for the response',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Continue workflow',
|
|
|
|
value: 'Event',
|
|
|
|
description: 'Invoke the function and immediately continue the workflow',
|
|
|
|
},
|
|
|
|
],
|
2019-10-15 10:24:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'invoke',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-10-05 08:10:12 -07:00
|
|
|
default: 'RequestResponse',
|
|
|
|
description: 'Specify if the workflow should wait for the function to return the results',
|
|
|
|
},
|
2019-10-05 08:03:18 -07:00
|
|
|
{
|
|
|
|
displayName: 'JSON Input',
|
|
|
|
name: 'payload',
|
|
|
|
type: 'string',
|
2019-10-15 10:24:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'invoke',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-10-05 08:03:18 -07:00
|
|
|
default: '',
|
|
|
|
description: 'The JSON that you want to provide to your Lambda function as input',
|
2019-10-05 08:10:12 -07:00
|
|
|
typeOptions: {
|
|
|
|
alwaysOpenEditWindow: true,
|
|
|
|
},
|
2019-10-05 08:03:18 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
|
|
|
async getFunctions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
2019-10-16 02:18:39 -07:00
|
|
|
|
|
|
|
let data;
|
2019-10-05 08:03:18 -07:00
|
|
|
try {
|
2019-10-16 02:18:39 -07:00
|
|
|
data = await awsApiRequestREST.call(this, 'lambda', 'GET', '/2015-03-31/functions/');
|
2019-10-05 08:03:18 -07:00
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`AWS Error: ${err}`);
|
|
|
|
}
|
|
|
|
|
2019-10-16 02:18:39 -07:00
|
|
|
for (const func of data.Functions!) {
|
2019-10-05 08:03:18 -07:00
|
|
|
returnData.push({
|
|
|
|
name: func.FunctionName as string,
|
|
|
|
value: func.FunctionArn as string,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
const params = {
|
2019-10-05 08:10:12 -07:00
|
|
|
FunctionName: this.getNodeParameter('function', i) as string,
|
|
|
|
InvocationType: this.getNodeParameter('invocationType', i) as string,
|
|
|
|
Payload: this.getNodeParameter('payload', i) as string,
|
|
|
|
Qualifier: this.getNodeParameter('qualifier', i) as string,
|
2019-10-05 08:03:18 -07:00
|
|
|
};
|
|
|
|
|
2019-10-16 02:18:39 -07:00
|
|
|
let responseData;
|
2019-10-05 08:03:18 -07:00
|
|
|
try {
|
2019-10-16 02:18:39 -07:00
|
|
|
responseData = await awsApiRequestREST.call(
|
2019-10-05 13:17:23 -07:00
|
|
|
this,
|
|
|
|
'lambda',
|
|
|
|
'POST',
|
|
|
|
`/2015-03-31/functions/${params.FunctionName}/invocations?Qualifier=${params.Qualifier}`,
|
|
|
|
params.Payload,
|
|
|
|
{
|
|
|
|
'X-Amz-Invocation-Type': params.InvocationType,
|
|
|
|
'Content-Type': 'application/x-amz-json-1.0',
|
|
|
|
},
|
|
|
|
);
|
2019-10-05 08:03:18 -07:00
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`AWS Error: ${err}`);
|
|
|
|
}
|
|
|
|
|
2019-10-16 02:18:39 -07:00
|
|
|
if (responseData !== null && responseData.errorMessage !== undefined) {
|
|
|
|
let errorMessage = responseData.errorMessage;
|
|
|
|
|
|
|
|
if (responseData.stackTrace) {
|
|
|
|
errorMessage += `\n\nStack trace:\n${responseData.stackTrace}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error(errorMessage);
|
2019-10-05 13:17:23 -07:00
|
|
|
} else {
|
|
|
|
returnData.push({
|
2019-10-16 02:18:39 -07:00
|
|
|
result: responseData,
|
2019-10-05 13:17:23 -07:00
|
|
|
} as IDataObject);
|
|
|
|
}
|
|
|
|
|
2019-10-05 08:03:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|