2019-05-29 05:21:06 -04:00
|
|
|
const AuthenticationController = require('../Authentication/AuthenticationController')
|
|
|
|
const UserGetter = require('./UserGetter')
|
|
|
|
const UserUpdater = require('./UserUpdater')
|
2020-07-27 10:34:07 -04:00
|
|
|
const EmailHandler = require('../Email/EmailHandler')
|
2019-05-29 05:21:06 -04:00
|
|
|
const EmailHelper = require('../Helpers/EmailHelper')
|
|
|
|
const UserEmailsConfirmationHandler = require('./UserEmailsConfirmationHandler')
|
|
|
|
const { endorseAffiliation } = require('../Institutions/InstitutionsAPI')
|
|
|
|
const Errors = require('../Errors/Errors')
|
2020-07-20 09:21:28 -04:00
|
|
|
const HttpErrorHandler = require('../Errors/HttpErrorHandler')
|
2020-07-27 10:34:07 -04:00
|
|
|
const { expressify } = require('../../util/promises')
|
2019-05-29 05:21:06 -04:00
|
|
|
|
2020-09-14 09:54:19 -04:00
|
|
|
async function _sendSecurityAlertEmail(user, email) {
|
|
|
|
const emailOptions = {
|
|
|
|
to: user.email,
|
|
|
|
actionDescribed: `a secondary email address has been added to your account ${
|
|
|
|
user.email
|
|
|
|
}`,
|
|
|
|
message: [
|
|
|
|
`<span style="display:inline-block;padding: 0 20px;width:100%;">Added: <br/><b>${email}</b></span>`
|
|
|
|
],
|
|
|
|
action: 'secondary email address added'
|
|
|
|
}
|
|
|
|
await EmailHandler.promises.sendEmail('securityAlert', emailOptions)
|
|
|
|
}
|
|
|
|
|
2020-07-27 10:34:07 -04:00
|
|
|
async function add(req, res, next) {
|
2019-10-04 13:42:07 -04:00
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
|
|
|
if (!email) {
|
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
2020-07-27 10:34:07 -04:00
|
|
|
const user = await UserGetter.promises.getUser(userId, { email: 1 })
|
2019-10-04 13:42:07 -04:00
|
|
|
|
|
|
|
const affiliationOptions = {
|
|
|
|
university: req.body.university,
|
|
|
|
role: req.body.role,
|
|
|
|
department: req.body.department
|
|
|
|
}
|
2020-07-27 10:34:07 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
await UserUpdater.promises.addEmailAddress(
|
|
|
|
userId,
|
|
|
|
email,
|
2020-09-14 09:54:19 -04:00
|
|
|
affiliationOptions,
|
|
|
|
{
|
|
|
|
initiatorId: user._id,
|
|
|
|
ipAddress: req.ip
|
|
|
|
}
|
2020-07-27 10:34:07 -04:00
|
|
|
)
|
|
|
|
} catch (error) {
|
|
|
|
return UserEmailsController._handleEmailError(error, req, res, next)
|
|
|
|
}
|
|
|
|
|
2020-09-14 09:54:19 -04:00
|
|
|
await _sendSecurityAlertEmail(user, email)
|
|
|
|
|
2020-07-27 10:34:07 -04:00
|
|
|
await UserEmailsConfirmationHandler.promises.sendConfirmationEmail(
|
|
|
|
userId,
|
|
|
|
email
|
|
|
|
)
|
|
|
|
|
|
|
|
res.sendStatus(204)
|
2019-10-04 13:42:07 -04:00
|
|
|
}
|
|
|
|
|
2019-10-24 08:48:37 -04:00
|
|
|
function resendConfirmation(req, res, next) {
|
2019-10-14 09:18:44 -04:00
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
|
|
|
if (!email) {
|
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
2019-10-24 08:48:37 -04:00
|
|
|
UserGetter.getUserByAnyEmail(email, { _id: 1 }, function(error, user) {
|
2019-10-14 09:18:44 -04:00
|
|
|
if (error) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
if (!user || user._id.toString() !== userId) {
|
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
|
|
|
UserEmailsConfirmationHandler.sendConfirmationEmail(userId, email, function(
|
|
|
|
error
|
|
|
|
) {
|
|
|
|
if (error) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
res.sendStatus(200)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-07-27 10:34:07 -04:00
|
|
|
const UserEmailsController = {
|
2019-05-29 05:21:06 -04:00
|
|
|
list(req, res, next) {
|
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
2019-09-24 04:43:43 -04:00
|
|
|
UserGetter.getUserFullEmails(userId, function(error, fullEmails) {
|
|
|
|
if (error) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return next(error)
|
|
|
|
}
|
2019-09-24 04:43:43 -04:00
|
|
|
res.json(fullEmails)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2020-07-27 10:34:07 -04:00
|
|
|
add: expressify(add),
|
2019-05-29 05:21:06 -04:00
|
|
|
|
|
|
|
remove(req, res, next) {
|
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
2019-09-24 04:43:43 -04:00
|
|
|
if (!email) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
|
|
|
|
2019-09-24 04:43:43 -04:00
|
|
|
UserUpdater.removeEmailAddress(userId, email, function(error) {
|
|
|
|
if (error) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return next(error)
|
|
|
|
}
|
2019-09-24 04:43:43 -04:00
|
|
|
res.sendStatus(200)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
setDefault(req, res, next) {
|
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
2019-09-24 04:43:43 -04:00
|
|
|
if (!email) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
2020-08-12 10:19:33 -04:00
|
|
|
const auditLog = {
|
|
|
|
initiatorId: userId,
|
|
|
|
ipAddress: req.ip
|
|
|
|
}
|
2020-08-12 10:19:55 -04:00
|
|
|
UserUpdater.setDefaultEmailAddress(
|
|
|
|
userId,
|
|
|
|
email,
|
|
|
|
false,
|
|
|
|
auditLog,
|
|
|
|
true,
|
|
|
|
err => {
|
|
|
|
if (err) {
|
|
|
|
return UserEmailsController._handleEmailError(err, req, res, next)
|
|
|
|
}
|
|
|
|
AuthenticationController.setInSessionUser(req, { email: email })
|
|
|
|
res.sendStatus(200)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2020-08-12 10:19:55 -04:00
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
endorse(req, res, next) {
|
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
2019-09-24 04:43:43 -04:00
|
|
|
if (!email) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
|
|
|
|
2019-09-24 04:43:43 -04:00
|
|
|
endorseAffiliation(
|
2019-05-29 05:21:06 -04:00
|
|
|
userId,
|
|
|
|
email,
|
|
|
|
req.body.role,
|
|
|
|
req.body.department,
|
|
|
|
function(error) {
|
2019-09-24 04:43:43 -04:00
|
|
|
if (error) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return next(error)
|
|
|
|
}
|
2019-09-24 04:43:43 -04:00
|
|
|
res.sendStatus(204)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2019-10-14 09:18:44 -04:00
|
|
|
resendConfirmation,
|
2019-05-29 05:21:06 -04:00
|
|
|
|
|
|
|
showConfirm(req, res, next) {
|
2019-09-24 04:43:43 -04:00
|
|
|
res.render('user/confirm_email', {
|
2019-05-29 05:21:06 -04:00
|
|
|
token: req.query.token,
|
|
|
|
title: 'confirm_email'
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
confirm(req, res, next) {
|
|
|
|
const { token } = req.body
|
2019-09-24 04:43:43 -04:00
|
|
|
if (!token) {
|
2020-01-13 11:59:58 -05:00
|
|
|
return res.status(422).json({
|
|
|
|
message: req.i18n.translate('confirmation_link_broken')
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-09-24 04:43:43 -04:00
|
|
|
UserEmailsConfirmationHandler.confirmEmailFromToken(token, function(error) {
|
|
|
|
if (error) {
|
2019-05-29 05:21:06 -04:00
|
|
|
if (error instanceof Errors.NotFoundError) {
|
2019-09-24 04:43:43 -04:00
|
|
|
res.status(404).json({
|
2020-01-13 11:59:58 -05:00
|
|
|
message: req.i18n.translate('confirmation_token_invalid')
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
} else {
|
2019-09-24 04:43:43 -04:00
|
|
|
next(error)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
} else {
|
2019-09-24 04:43:43 -04:00
|
|
|
res.sendStatus(200)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
_handleEmailError(error, req, res, next) {
|
|
|
|
if (error instanceof Errors.UnconfirmedEmailError) {
|
2020-07-20 09:21:28 -04:00
|
|
|
return HttpErrorHandler.conflict(req, res, 'email must be confirmed')
|
2019-05-29 05:21:06 -04:00
|
|
|
} else if (error instanceof Errors.EmailExistsError) {
|
2020-07-20 09:21:28 -04:00
|
|
|
const message = req.i18n.translate('email_already_registered')
|
|
|
|
return HttpErrorHandler.conflict(req, res, message)
|
2020-04-08 09:43:15 -04:00
|
|
|
} else if (error.message === '422: Email does not belong to university') {
|
2020-07-20 09:21:28 -04:00
|
|
|
const message = req.i18n.translate('email_does_not_belong_to_university')
|
|
|
|
return HttpErrorHandler.conflict(req, res, message)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2020-07-22 10:08:06 -04:00
|
|
|
next(error)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
}
|
2020-07-27 10:34:07 -04:00
|
|
|
|
|
|
|
module.exports = UserEmailsController
|