You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.3 KiB
JavaScript

const router = require('express-promise-router')()
const parseJSON = require('body-parser').json()
const db = require('../db')
const sendgrid = require('@sendgrid/mail')
sendgrid.setApiKey(process.env.SENDGRID_KEY)
const validate = require('./middleware/validators')
const registerValidation = [
validate.unusedEmail('email'),
validate.validPassword('password'),
validate.bothPasswordsMatch,
validate.handleApiError
]
router.post('/', parseJSON, registerValidation, async (req, res) => {
const user = await db.user.register(
req.body.email,
req.body.password
)
if(!user){
return res.status(422).json({errors: [{
param: 'email',
msg: 'Unable to complete registration'
},{
param: 'password',
msg: ' '
},{
param: 'password2',
msg: ' '
}]})
}
await db.session.create(req, user)
// Send login email TODO: Abstract this so api/email and this route use the same function
const confirmUrl = await db.user.createLoginLink(user.uuid)
const msg = {
to: user.email,
from: {email: 'registration@email.societyofsocks.us', name: 'Society of Socks'},
templateId: 'd-33407f1dd1b14b7b84dd779511039c95',
dynamic_template_data: {
confirmUrl: confirmUrl
}
};
await sendgrid.send(msg);
res.json(user)
})
module.exports = router;