2019-05-29 05:21:06 -04:00
|
|
|
let UserEmailsController
|
|
|
|
const AuthenticationController = require('../Authentication/AuthenticationController')
|
|
|
|
const UserGetter = require('./UserGetter')
|
|
|
|
const UserUpdater = require('./UserUpdater')
|
|
|
|
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')
|
2019-05-29 05:21:06 -04:00
|
|
|
|
2019-10-04 13:42:07 -04:00
|
|
|
function add(req, res, next) {
|
|
|
|
const userId = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const email = EmailHelper.parseEmail(req.body.email)
|
|
|
|
if (!email) {
|
|
|
|
return res.sendStatus(422)
|
|
|
|
}
|
|
|
|
|
|
|
|
const affiliationOptions = {
|
|
|
|
university: req.body.university,
|
|
|
|
role: req.body.role,
|
|
|
|
department: req.body.department
|
|
|
|
}
|
|
|
|
UserUpdater.addEmailAddress(userId, email, affiliationOptions, function(
|
|
|
|
error
|
|
|
|
) {
|
|
|
|
if (error) {
|
|
|
|
return UserEmailsController._handleEmailError(error, req, res, next)
|
|
|
|
}
|
|
|
|
UserEmailsConfirmationHandler.sendConfirmationEmail(userId, email, function(
|
|
|
|
error
|
|
|
|
) {
|
|
|
|
if (error) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
res.sendStatus(204)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-05-29 05:21:06 -04:00
|
|
|
module.exports = UserEmailsController = {
|
|
|
|
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
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2019-10-04 13:42:07 -04:00
|
|
|
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)
|
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
UserUpdater.setDefaultEmailAddress(userId, email, err => {
|
|
|
|
if (err) {
|
|
|
|
return UserEmailsController._handleEmailError(err, req, res, next)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-08-07 10:04:18 -04:00
|
|
|
AuthenticationController.setInSessionUser(req, { email: email })
|
2019-07-22 12:55:35 -04:00
|
|
|
res.sendStatus(200)
|
|
|
|
})
|
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
|
|
|
}
|
|
|
|
}
|