-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcognitoToDDB.js
82 lines (73 loc) · 2.23 KB
/
cognitoToDDB.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
const aws = require('aws-sdk');
const ddb = new aws.DynamoDB({apiVersion: '2012-10-08'});
/**
* @author Vladimir Budilov
*
* Upon Cognito SignUp, a user is added to the DDB table
*
* Cognito event:
* https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-lambda-trigger-examples.html#aws-lambda-triggers-post-confirmation-example
*
* Writing to DDB:
* https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/dynamodb-example-table-read-write.html
*
* Sample input:
*
{
version:'1',
region:'us-east-1',
userPoolId:'us-east-1_9xasdfasdf3A',
userName:'[email protected]',
callerContext:{
awsSdkVersion:'aws-sdk-unknown-unknown',
clientId:'1asdfasdfasdfasdf3hjjgp'
},
triggerSource:'PostConfirmation_ConfirmSignUp',
request:{
userAttributes:{
sub:'4asdfasfa-944f-4444-9444-e644444444b',
'cognito:user_status':'CONFIRMED',
email_verified:'true',
email:'[email protected]'
}
},
response:{
}
}
* @param event
* @param context
*/
exports.handler = async (event, context) => {
console.log(event);
const date = new Date();
const tableName = process.env.TABLE_NAME;
const region = process.env.REGION;
console.log(`table=${tableName} -- region=${region}`)
aws.config.update({ region });
if (!event.request.userAttributes.sub) {
// Nothing to do, the user's email ID is unknown
console.log("Error: Nothing was written to DDB or SQS");
return context.done(null, event);
}
// -- Write data to DDB
// If the required parameters are present, proceed
const ddbParams = {
TableName: tableName,
Item: {
'userId': {S: event.request.userAttributes.sub},
'sortKey': {S: "user"},
'email': {S: event.request.userAttributes.email},
'createdDate': {S: date.toISOString()},
'firstLogin': {BOOL: true}
}
};
// Call DynamoDB
try {
ddbResult = await ddb.putItem(ddbParams).promise();
console.log("Success");
} catch (err) {
console.log("Error", err);
}
console.log("Success: Everything executed correctly")
context.done(null, event);
};