-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
180 lines (146 loc) · 5.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
'use strict';
var AWS = require("aws-sdk");
var quizzesTable = "studyquiz-quizzes";
var countersTable = "studyquiz-counters"
module.exports.getQuiz = (event, context, callback) => {
var response = {
headers: {
"Access-Control-Allow-Origin": "*", // Required for CORS support to work
"Access-Control-Allow-Credentials": true // Required for cookies, authorization headers with HTTPS
}
}
var docClient = new AWS.DynamoDB.DocumentClient();
let id = parseInt(event.pathParameters.id);
if (isNaN(id)) {
response['statusCode'] = 400;
response['body'] = "Error: id is not a number";
callback(null, response);
}
var params = {
TableName: quizzesTable,
Key: {
"id": id,
}
};
docClient.get(params, function (err, data) {
if (err) {
console.error("Unable to read item. Error JSON:", JSON.stringify(err, null, 2));
response['statusCode'] = 404;
response['body'] = JSON.stringify(err);
} else {
console.log("GetItem succeeded:", JSON.stringify(data, null, 2));
response['statusCode'] = 200;
response['body'] = JSON.stringify(data);
}
callback(null, response);
});
// Use this code if you don't use the http event with the LAMBDA-PROXY integration
// callback(null, { message: 'Go Serverless v1.0! Your function executed successfully!', event });
};
module.exports.getQuizzesList = (event, context, callback) => {
var response = {
headers: {
"Access-Control-Allow-Origin": "*", // Required for CORS support to work
"Access-Control-Allow-Credentials": true // Required for cookies, authorization headers with HTTPS
}
}
var docClient = new AWS.DynamoDB.DocumentClient();
var params = {
TableName: quizzesTable,
ProjectionExpression: "id, #name",
ExpressionAttributeNames: {
"#name": "name",
},
};
docClient.scan(params, function (err, data) {
if (err) {
console.error("Unable to read item. Error JSON:", JSON.stringify(err, null, 2));
response['statusCode'] = 404;
response['body'] = JSON.stringify(err);
} else {
console.log("GetItem succeeded:", JSON.stringify(data, null, 2));
response['statusCode'] = 200;
response['body'] = JSON.stringify(data);
}
callback(null, response);
});
};
module.exports.putQuiz = (event, context, callback) => {
var docClient = new AWS.DynamoDB.DocumentClient();
// Increment quiz-counter in countersTable and use it as id for new quiz item in quizzesTable
var params = {
TableName: countersTable,
Key: {
"counter": "quiz-counter",
},
UpdateExpression: 'set #value = #value + :increment',
ExpressionAttributeNames: {
"#value": "value",
},
ExpressionAttributeValues: {
':increment': 1,
},
ReturnValues: "UPDATED_NEW"
};
docClient.update(params, function (err, data) {
if (err) {
console.error("Unable to update item. Error JSON:", JSON.stringify(err, null, 2));
} else {
console.log("GetItem succeeded:", JSON.stringify(data, null, 2));
const uniqueQuizId = data['Attributes']['value'];
const quizData = JSON.parse(event.body);
putQuizWithId(uniqueQuizId, quizData, callback);
}
});
};
function putQuizWithId(id, quizData, callback) {
var response = {
headers: {
"Access-Control-Allow-Origin": "*", // Required for CORS support to work
"Access-Control-Allow-Credentials": true // Required for cookies, authorization headers with HTTPS
}
}
var docClient = new AWS.DynamoDB.DocumentClient();
var badData = false;
var quiz = {};
quiz.id = id;
if (typeof quizData.name === 'string') { quiz.name = quizData.name; } else { badData = true; }
if (typeof quizData.description === 'string') { quiz.description = quizData.description; } else { badData = true; }
quiz.exercises = [];
if (quizData.exercises.length < 1) { badData = true; }
quizData.exercises.forEach(exerciseData => {
var exercise = {};
if (typeof exerciseData.question === 'string') { exercise.question = exerciseData.question; } else { badData = true; }
if (typeof exerciseData.correctAnswer === 'string') { exercise.correctAnswer = exerciseData.correctAnswer; } else { badData = true; }
if (exerciseData.explanation) {
if (typeof exerciseData.explanation === 'string') { exercise.explanation = exerciseData.explanation; } else { badData = true; }
}
exercise.incorrectAnswers = [];
if (exerciseData.incorrectAnswers.length < 1) { badData = true; }
exerciseData.incorrectAnswers.forEach(incorrectAnswerData => {
if (typeof incorrectAnswerData === 'string') { exercise.incorrectAnswers.push(incorrectAnswerData) } else { badData = true; }
});
quiz.exercises.push(exercise);
});
if (badData) {
response['statusCode'] = 400;
response['body'] = "Invalid data given";
callback(null, response);
return;
}
var params = {
TableName: quizzesTable,
Item: quiz,
};
docClient.put(params, function (err, data) {
if (err) {
console.error("Unable to put item. Error JSON:", JSON.stringify(err, null, 2));
response['statusCode'] = 404;
response['body'] = JSON.stringify(err);
} else {
console.log("put succeeded:", JSON.stringify(data, null, 2));
response['statusCode'] = 200;
}
callback(null, response);
});
}