forked from serverless/examples
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
45 lines (36 loc) · 1.21 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
'use strict';
module.exports.createUser = (event, context, callback) => {
// logs `4096`
console.log('PASSWORD_ITERATIONS: ', process.env.PASSWORD_ITERATIONS);
// logs `256`
console.log('PASSWORD_DERIVED_KEY_LENGTH: ', process.env.PASSWORD_DERIVED_KEY_LENGTH);
// logs `KEYEXAMPLE1234`
console.log('EMAIL_SERVICE_API_KEY: ', process.env.EMAIL_SERVICE_API_KEY);
// In this case could use the env vars to generate a secure password hash.
// const passwordHash = PBKDF2(
// passphrase,
// salt,
// process.env.PASSWORD_ITERATIONS,
// process.env.PASSWORD_DERIVED_KEY_LENGTH
// );
// The email service api key would be used to send a verfication email to the user.
const response = {
statusCode: 200,
body: JSON.stringify({
message: 'User created',
}),
};
callback(null, response);
};
module.exports.resetPassword = (event, context, callback) => {
// logs `KEYEXAMPLE1234`
console.log('EMAIL_SERVICE_API_KEY: ', process.env.EMAIL_SERVICE_API_KEY);
// The email service api key would be used to send a reset password email.
const response = {
statusCode: 200,
body: JSON.stringify({
message: 'Password sent.',
}),
};
callback(null, response);
};