-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
46 lines (40 loc) · 1.25 KB
/
handler.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
'use strict';
const path = require('path');
const staticFileHandler = require('serverless-aws-static-file-handler');
const clientFilesPath = path.join(__dirname, "./src/public/");
const fileHandler = new staticFileHandler(clientFilesPath);
const makeOrder = require('./src/make-order');
module.exports = {
makeOrder: async (event) => {
let statusCode = 200;
let result;
try {
result = await makeOrder(event);
} catch (error) {
console.error(error);
statusCode = error.code ? error.code : 500;
result = {message: error.message};
}
return {
statusCode,
headers: {
'Content-Type': 'text/html',
},
body: result
};
},
getMerchantSettingsView: (event) => {
event.path = "merchant-settings.html";
return fileHandler.get(event);
},
getMerchantSettingsJs: (event) => {
event.path = "merchant-settings.js";
return fileHandler.get(event);
},
binary: (event) => {
if (!event.path.startsWith("/binary/")) {
throw new Error(`[404] Invalid filepath for this resource: ${event.path}`)
}
return fileHandler.get(event);
}
}