-
Notifications
You must be signed in to change notification settings - Fork 42
/
lambda.js
66 lines (60 loc) · 2.04 KB
/
lambda.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
63
64
65
66
"use strict";
const awsServerlessExpress = require("aws-serverless-express");
// TODO Babel
let app;
try {
app = require("./build/server/server/index");
} catch (err) {
if (!global.TEST_ENVIRONMENT) {
console.error(`Unable to load built server: ${err}`);
}
app = require("./src/server/index");
}
const server = awsServerlessExpress.createServer(app.default);
// NOTE: the downside of loading above is environment variables are initially loaded immediately,
// so changing them means that the code must test environment variable inline (rather than use a const set on-load)
// We should NOT load app and server inside the handler, or all connection pools and state are re-instantiated per-request:
// See: http://docs.aws.amazon.com/lambda/latest/dg/best-practices.html#function-code
// "Separate the Lambda handler (entry point) from your core logic"
let invocationContext = {};
let invocationEvent = {};
app.default.set("awsContextGetter", function(req, res) {
return [invocationEvent, invocationContext];
});
function cleanHeaders(event) {
// X-Twilio-Body can contain unicode and disallowed chars by aws-serverless-express like "'"
// We don't need it anyway
if (event.headers) {
delete event.headers["X-Twilio-Body"];
}
if (event.multiValueHeaders) {
delete event.multiValueHeaders["X-Twilio-Body"];
}
}
exports.handler = async (event, context) => {
if (process.env.LAMBDA_DEBUG_LOG) {
console.log("LAMBDA EVENT", event);
}
const startTime = context.getRemainingTimeInMillis
? context.getRemainingTimeInMillis()
: 0;
invocationEvent = event;
invocationContext = context;
cleanHeaders(event);
const webResponse = awsServerlessExpress.proxy(
server,
event,
context,
"PROMISE"
).promise;
if (process.env.DEBUG_SCALING) {
const endTime = context.getRemainingTimeInMillis
? context.getRemainingTimeInMillis()
: 0;
if (endTime - startTime > 3000) {
//3 seconds
console.log("SLOW_RESPONSE milliseconds:", endTime - startTime, event);
}
}
return webResponse;
};