-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
49 lines (41 loc) · 977 Bytes
/
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
"use strict";
const AWS = require("aws-sdk");
const uuid = require("uuid");
const dynamoDb = new AWS.DynamoDB.DocumentClient();
module.exports.main = async event => {
try {
const { commentData, articleBody } = JSON.parse(event.body);
if (false) {
// Validate data
}
const timestamp = new Date().getTime();
const params = {
TableName: process.env.COMMENTATIVE_TABLE,
Item: {
uuid: uuid(),
articleBody,
comments: [
{
...commentData,
createdAt: timestamp,
updatedAt: timestamp,
uuid: uuid()
}
],
createdAt: timestamp,
updatedAt: timestamp
}
};
const result = await dynamoDb.put(params).promise();
if (false) {
// Check for error
}
console.log(result);
return {
statusCode: 200,
body: JSON.stringify(params.Item)
};
} catch (err) {
console.error(err);
}
};