-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
88 lines (74 loc) · 2.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
'use strict';
const responseHeaders = {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Credentials': true
};
const responses = {
success: (data = {}, code = 200) => {
return {
'statusCode': code,
'headers': responseHeaders,
'body': JSON.stringify(data)
};
},
error: (error) => {
return {
'statusCode': error.code || 500,
'headers': responseHeaders,
'body': JSON.stringify(error)
};
}
};
module.exports = {
get_list: (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
get_list()
.then(result => {
callback(null, responses.success(result));
})
.catch(error => {
callback(null, responses.error(error));
});
},
get_detail: (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
get_detail()
.then(result => {
callback(null, responses.success(result));
})
.catch(error => {
callback(null, responses.error(error));
});
},
create: (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
create()
.then(() => {
callback(null, responses.success({}, 201));
})
.catch(error => {
callback(null, responses.error(error));
});
},
update: (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
update()
.then(() => {
callback(null, responses.success());
})
.catch(error => {
callback(null, responses.error(error));
});
},
del: (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
del()
.then(() => {
callback(null, responses.success());
})
.catch(error => {
callback(null, responses.error(error));
});
}
};