forked from civicteam/serverless-offline-direct-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.js
27 lines (24 loc) · 835 Bytes
/
proxy.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
const serializeError = require('serialize-error');
const path = require('path');
function handler(event, context, callback) {
// extract the path to the handler (relative to the project root)
// and the function to call on the handler
const [targetHandlerFile, targetHandlerFunction] = event.targetHandler.split(".");
const target = require(path.resolve(__dirname, '../..', event.location, targetHandlerFile));
// call the target function
target[targetHandlerFunction](event.body, context, (error, response) => {
if (error) {
callback(null, {
StatusCode: 500,
FunctionError: 'Handled',
Payload: serializeError(error)
})
} else {
callback(null, {
StatusCode: 200,
Payload: JSON.stringify(response)
})
}
});
}
module.exports.handler = handler;