-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathlist.js
51 lines (44 loc) · 1.53 KB
/
list.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
"use strict";
let db = require('./config/db.js');
let order = require('./models/order')(db.sequelize, db.Sequelize);
module.exports.list = (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
const textResponseHeaders = {
'Content-Type': 'text/plain'
};
const jsonResponseHeaders = {
'Content-Type': 'application/json'
};
if (event.queryStringParameters) {
if (!event.queryStringParameters.hasOwnProperty('limit')) {
event.queryStringParameters.limit = 10;
}
if (!event.queryStringParameters.hasOwnProperty('offset')) {
event.queryStringParameters.offset = 0;
}
} else {
event.queryStringParameters = {};
event.queryStringParameters.limit = 10;
event.queryStringParameters.offset = 0;
}
order.findAll({
where: { sysState: 'open' },
limit: event.queryStringParameters.limit || 10,
offset: event.queryStringParameters.offset || 0
}).then(function(order) {
console.log(order);
const response = {
statusCode: 200,
headers: jsonResponseHeaders,
body: JSON.stringify(order),
};
callback(null, response);
})
.catch(error => {
callback(null, {
statusCode: 501,
headers: textResponseHeaders,
body: "Couldn't fetch the orders, Error finding from DB, Error: " + error
});
});
};