serverless
Version:
Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more
194 lines (176 loc) • 6.69 kB
JavaScript
;
const _ = require('lodash');
const rateSyntax = '^rate\\((?:1 (?:minute|hour|day)|(?:1\\d+|[2-9]\\d*) (?:minute|hour|day)s)\\)$';
const cronSyntax = '^cron\\(\\S+ \\S+ \\S+ \\S+ \\S+ \\S+\\)$';
const scheduleSyntax = `${rateSyntax}|${cronSyntax}`;
class AwsCompileScheduledEvents {
constructor(serverless) {
this.serverless = serverless;
this.provider = this.serverless.getProvider('aws');
this.hooks = {
'package:compileEvents': this.compileScheduledEvents.bind(this),
};
this.serverless.configSchemaHandler.defineFunctionEvent('aws', 'schedule', {
anyOf: [
{ type: 'string', pattern: scheduleSyntax },
{
type: 'object',
properties: {
rate: { type: 'string', pattern: scheduleSyntax },
enabled: { type: 'boolean' },
name: { type: 'string', minLength: 1, maxLength: 64, pattern: '[\\.\\-_A-Za-z0-9]+' },
description: { type: 'string', maxLength: 512 },
input: {
anyOf: [
{ type: 'string', maxLength: 8192 },
{
type: 'object',
oneOf: [
{
properties: {
body: { type: 'string', maxLength: 8192 },
},
required: ['body'],
additionalProperties: false,
},
{
not: {
required: ['body'],
},
},
],
},
],
},
inputPath: { type: 'string', maxLength: 256 },
inputTransformer: {
type: 'object',
properties: {
inputTemplate: {
type: 'string',
minLength: 1,
maxLength: 8192,
},
inputPathsMap: { type: 'object' },
},
required: ['inputTemplate'],
additionalProperties: false,
},
},
required: ['rate'],
additionalProperties: false,
},
],
});
}
compileScheduledEvents() {
this.serverless.service.getAllFunctions().forEach((functionName) => {
const functionObj = this.serverless.service.getFunction(functionName);
let scheduleNumberInFunction = 0;
if (functionObj.events) {
functionObj.events.forEach((event) => {
if (event.schedule) {
scheduleNumberInFunction++;
let ScheduleExpression;
let State;
let Input;
let InputPath;
let InputTransformer;
let Name;
let Description;
if (typeof event.schedule === 'object') {
ScheduleExpression = event.schedule.rate;
State = 'ENABLED';
if (event.schedule.enabled === false) {
State = 'DISABLED';
}
Input = event.schedule.input;
InputPath = event.schedule.inputPath;
InputTransformer = event.schedule.inputTransformer;
Name = event.schedule.name;
Description = event.schedule.description;
if (Input && typeof Input === 'object') {
if (typeof Input.body === 'string') {
Input.body = JSON.parse(Input.body);
}
Input = JSON.stringify(Input);
}
if (Input && typeof Input === 'string') {
// escape quotes to favor JSON.parse
Input = Input.replace(/\"/g, '\\"'); // eslint-disable-line
}
if (InputTransformer) {
InputTransformer = this.formatInputTransformer(InputTransformer);
}
} else {
ScheduleExpression = event.schedule;
State = 'ENABLED';
}
const lambdaLogicalId = this.provider.naming.getLambdaLogicalId(functionName);
const scheduleLogicalId = this.provider.naming.getScheduleLogicalId(
functionName,
scheduleNumberInFunction
);
const lambdaPermissionLogicalId = this.provider.naming.getLambdaSchedulePermissionLogicalId(
functionName,
scheduleNumberInFunction
);
const scheduleId = this.provider.naming.getScheduleId(functionName);
const scheduleTemplate = `
{
"Type": "AWS::Events::Rule",
"Properties": {
"ScheduleExpression": "${ScheduleExpression}",
"State": "${State}",
${Name ? `"Name": "${Name}",` : ''}
${Description ? `"Description": "${Description}",` : ''}
"Targets": [{
${Input ? `"Input": "${Input}",` : ''}
${InputPath ? `"InputPath": "${InputPath}",` : ''}
${InputTransformer ? `"InputTransformer": ${InputTransformer},` : ''}
"Arn": { "Fn::GetAtt": ["${lambdaLogicalId}", "Arn"] },
"Id": "${scheduleId}"
}]
}
}
`;
const permissionTemplate = `
{
"Type": "AWS::Lambda::Permission",
"Properties": {
"FunctionName": { "Fn::GetAtt": ["${lambdaLogicalId}", "Arn"] },
"Action": "lambda:InvokeFunction",
"Principal": "events.amazonaws.com",
"SourceArn": { "Fn::GetAtt": ["${scheduleLogicalId}", "Arn"] }
}
}
`;
const newScheduleObject = {
[scheduleLogicalId]: JSON.parse(scheduleTemplate),
};
const newPermissionObject = {
[lambdaPermissionLogicalId]: JSON.parse(permissionTemplate),
};
_.merge(
this.serverless.service.provider.compiledCloudFormationTemplate.Resources,
newScheduleObject,
newPermissionObject
);
}
});
}
});
}
formatInputTransformer(inputTransformer) {
const cfmOutput = {
// InputTemplate is required
InputTemplate: inputTransformer.inputTemplate,
};
// InputPathsMap is optional
if (inputTransformer.inputPathsMap) {
cfmOutput.InputPathsMap = inputTransformer.inputPathsMap;
}
return JSON.stringify(cfmOutput);
}
}
module.exports = AwsCompileScheduledEvents;