Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(aws-apigateway): make LambdaRestApi proxy by default #963

Merged
merged 4 commits into from
Oct 19, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 25 additions & 15 deletions packages/@aws-cdk/aws-apigateway/lib/lambda-api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import lambda = require('@aws-cdk/aws-lambda');
import cdk = require('@aws-cdk/cdk');
import { LambdaIntegration } from './integrations';
import { Method } from './method';
import { Resource } from './resource';
import { RestApi, RestApiProps } from './restapi';

export interface LambdaRestApiProps {
Expand All @@ -13,15 +15,14 @@ export interface LambdaRestApiProps {
handler: lambda.Function;

/**
* An API path for a greedy proxy with an "ANY" method, which will route all
* requests under that path to the defined handler.
* If true, route all requests to the Lambda Function
*
* If not defined, you will need to explicitly define the API model using
* If set to false, you will need to explicitly define the API model using
* `addResource` and `addMethod` (or `addProxy`).
*
* @default undefined
* @default true
*/
proxyPath?: string;
proxy?: boolean;

/**
* Further customization of the REST API.
Expand Down Expand Up @@ -49,16 +50,25 @@ export class LambdaRestApi extends RestApi {
...props.options
});

// if proxyPath is specified, add a proxy at the specified path
// we will need to create all resources along the path.
const proxyPath = props.proxyPath;
if (proxyPath) {
const route = proxyPath.split('/').filter(x => x);
let curr = this.root;
for (const part of route) {
curr = curr.addResource(part);
}
curr.addProxy();
if (props.proxy !== false) {
this.root.addProxy();

// Make sure users cannot call any other resource adding function
this.root.addResource = addResourceThrows;
this.root.addMethod = addMethodThrows;
this.root.addProxy = addProxyThrows;
}
}
}

function addResourceThrows(): Resource {
throw new Error(`Cannot call 'addResource' on a proxying LambdaRestApi; set 'proxy' to false`);
}

function addMethodThrows(): Method {
throw new Error(`Cannot call 'addMethod' on a proxying LambdaRestApi; set 'proxy' to false`);
}

function addProxyThrows(): Resource {
throw new Error(`Cannot call 'addProxy' on a proxying LambdaRestApi; set 'proxy' to false`);
}
2 changes: 2 additions & 0 deletions packages/@aws-cdk/aws-apigateway/lib/restapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ export class RestApi extends RestApiRef implements cdk.IDependable {
return new Method(this, httpMethod, { resource: this.root, httpMethod, integration, options });
},
addProxy: (options?: ResourceOptions) => {
// Must have ANY method on the root when doing this
this.root.addMethod('ANY');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would have been nicer if you put this logic in ProxyResource in case someone uses it directly. Ideally we want the addXxx APIs to behave exactly like using the APIGW constructs directly. You should be able to identify that "parent" is "root" by going back to the API object

return new ProxyResource(this, '{proxy+}', { parent: this.root, ...options });
},
defaultIntegration: props.defaultIntegration,
Expand Down
41 changes: 10 additions & 31 deletions packages/@aws-cdk/aws-apigateway/test/test.lambda-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ export = {
});

// WHEN
new apigw.LambdaRestApi(stack, 'lambda-rest-api', { handler, proxyPath: '/' });
const api = new apigw.LambdaRestApi(stack, 'lambda-rest-api', { handler });

// THEN
// THEN -- can't customize further
test.throws(() => {
api.root.addResource('cant-touch-this');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😉

});

// THEN -- template proxies everything
expect(stack).to(haveResource('AWS::ApiGateway::Resource', {
"PathPart": "{proxy+}"
}));
Expand Down Expand Up @@ -81,33 +86,7 @@ export = {
test.done();
},

'proxyPath can be used to attach the proxy to any route'(test: Test) {
// GIVEN
const stack = new cdk.Stack();

const handler = new lambda.Function(stack, 'handler', {
handler: 'index.handler',
code: lambda.Code.inline('boom'),
runtime: lambda.Runtime.NodeJS610,
});

// WHEN
new apigw.LambdaRestApi(stack, 'lambda-rest-api', {
handler,
proxyPath: '/backend/v2'
});

// THEN
expect(stack).to(haveResource('AWS::ApiGateway::Method', {
"ResourceId": {
"Ref": "lambdarestapibackendv2proxyC4980BD5"
}
}));

test.done();
},

'when "proxyPath" is not specified, users need to define the model'(test: Test) {
'when "proxy" is set to false, users need to define the model'(test: Test) {
// GIVEN
const stack = new cdk.Stack();

Expand All @@ -118,7 +97,7 @@ export = {
});

// WHEN
const api = new apigw.LambdaRestApi(stack, 'lambda-rest-api', { handler });
const api = new apigw.LambdaRestApi(stack, 'lambda-rest-api', { handler, proxy: false });

const tasks = api.root.addResource('tasks');
tasks.addMethod('GET');
Expand Down Expand Up @@ -162,5 +141,5 @@ export = {
}), /Cannot specify \"options\.defaultIntegration\" since Lambda integration is automatically defined/);

test.done();
}
},
};