-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_profile.js
More file actions
30 lines (26 loc) · 908 Bytes
/
create_profile.js
File metadata and controls
30 lines (26 loc) · 908 Bytes
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
import uuid from 'uuid';
import * as dynamoDbLib from './libs/dynamodb-lib';
import { success, failure } from './libs/response-lib';
AWS.config.update({region:'us-east-1'});
const dynamoDb = new AWS.DynamoDB.DocumentClient();
export async function main(event, context, callback) {
// Request body is passed in as a JSON encoded string in 'event.body'
const data = JSON.parse(event.body);
const params = {
TableName: 'movie_profile',
Item: {
userId: event.requestContext.authorizer.claims.sub,
userPicture: data.Picture,
userName: data.userName,
profileId: uuid.v1(),
createdAt: new Date().getTime(),
},
};
try {
const result = await dynamoDbLib.call('put', params);
callback(null, success(params.Item));
}
catch(e) {
callback(null, failure({status: false}));
}
};