UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

87 lines (74 loc) 2.87 kB
'use strict'; const _ = require('lodash'); const resolveLambdaTarget = require('../../../utils/resolve-lambda-target'); class AwsCompileAlexaSmartHomeEvents { constructor(serverless) { this.serverless = serverless; this.provider = this.serverless.getProvider('aws'); this.hooks = { 'package:compileEvents': async () => this.compileAlexaSmartHomeEvents(), }; this.serverless.configSchemaHandler.defineFunctionEvent('aws', 'alexaSmartHome', { anyOf: [ { $ref: '#/definitions/awsAlexaEventToken' }, { type: 'object', properties: { appId: { $ref: '#/definitions/awsAlexaEventToken' }, enabled: { type: 'boolean' }, }, required: ['appId'], additionalProperties: false, }, ], }); } compileAlexaSmartHomeEvents() { this.serverless.service.getAllFunctions().forEach((functionName) => { const functionObj = this.serverless.service.getFunction(functionName); let alexaSmartHomeNumberInFunction = 0; if (functionObj.events) { functionObj.events.forEach((event) => { if (event.alexaSmartHome) { alexaSmartHomeNumberInFunction++; let EventSourceToken; let Action; if (typeof event.alexaSmartHome === 'object') { EventSourceToken = event.alexaSmartHome.appId; Action = event.alexaSmartHome.enabled !== false ? 'lambda:InvokeFunction' : 'lambda:DisableInvokeFunction'; } else if (typeof event.alexaSmartHome === 'string') { EventSourceToken = event.alexaSmartHome; Action = 'lambda:InvokeFunction'; } const permissionTemplate = { Type: 'AWS::Lambda::Permission', DependsOn: _.get(functionObj.targetAlias, 'logicalId'), Properties: { FunctionName: resolveLambdaTarget(functionName, functionObj), Action: Action.replace(/\\n|\\r/g, ''), Principal: 'alexa-connectedhome.amazon.com', EventSourceToken: EventSourceToken.replace(/\\n|\\r/g, ''), }, }; const lambdaPermissionLogicalId = this.provider.naming.getLambdaAlexaSmartHomePermissionLogicalId( functionName, alexaSmartHomeNumberInFunction ); const permissionCloudFormationResource = { [lambdaPermissionLogicalId]: permissionTemplate, }; _.merge( this.serverless.service.provider.compiledCloudFormationTemplate.Resources, permissionCloudFormationResource ); } }); } }); } } module.exports = AwsCompileAlexaSmartHomeEvents;