-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpathParametersCache.js
62 lines (56 loc) · 3.02 KB
/
pathParametersCache.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const getResourcesByName = (name, serverless) => {
let resourceKeys = Object.keys(serverless.service.provider.compiledCloudFormationTemplate.Resources);
for (let resourceName of resourceKeys) {
if (resourceName == name) {
return serverless.service.provider.compiledCloudFormationTemplate.Resources[resourceName];
}
}
}
const addPathParametersCacheConfig = (settings, serverless) => {
for (let endpointSettings of settings.endpointSettings) {
if (!endpointSettings.cacheKeyParameters) {
continue;
}
const method = getResourcesByName(endpointSettings.gatewayResourceName, serverless);
if (!method) {
serverless.cli.log(`[serverless-api-gateway-caching] The method ${endpointSettings.gatewayResourceName} couldn't be found in the
compiled CloudFormation template. Caching settings will not be updated for this endpoint.`);
continue;
}
if (!method.Properties.Integration.CacheKeyParameters) {
method.Properties.Integration.CacheKeyParameters = [];
}
if (!method.Properties.Integration.RequestParameters) {
method.Properties.Integration.RequestParameters = {}
}
for (let cacheKeyParameter of endpointSettings.cacheKeyParameters) {
if (!cacheKeyParameter.mappedFrom) {
let existingValue = method.Properties.RequestParameters[`method.${cacheKeyParameter.name}`];
method.Properties.RequestParameters[`method.${cacheKeyParameter.name}`] = (existingValue == null || existingValue == undefined) ? {} : existingValue;
// in v1.8.0 "lambda" integration check was removed because setting cache key parameters seemed to work for both AWS_PROXY and AWS (lambda) integration
// reconsider if this becomes an issue
// if (method.Properties.Integration.Type !== 'AWS_PROXY') {
method.Properties.Integration.RequestParameters[`integration.${cacheKeyParameter.name}`] = `method.${cacheKeyParameter.name}`;
// }
method.Properties.Integration.CacheKeyParameters.push(`method.${cacheKeyParameter.name}`);
} else {
let existingValue = method.Properties.RequestParameters[cacheKeyParameter.mappedFrom];
if (
cacheKeyParameter.mappedFrom.includes('method.request.querystring') ||
cacheKeyParameter.mappedFrom.includes('method.request.header') ||
cacheKeyParameter.mappedFrom.includes('method.request.path')
) {
method.Properties.RequestParameters[cacheKeyParameter.mappedFrom] = (existingValue == null || existingValue == undefined) ? {} : existingValue;
}
// if (method.Properties.Integration.Type !== 'AWS_PROXY') {
method.Properties.Integration.RequestParameters[cacheKeyParameter.name] = cacheKeyParameter.mappedFrom;
// }
method.Properties.Integration.CacheKeyParameters.push(cacheKeyParameter.name)
}
}
method.Properties.Integration.CacheNamespace = `${endpointSettings.gatewayResourceName}CacheNS`;
}
}
module.exports = {
addPathParametersCacheConfig: addPathParametersCacheConfig
}