2019-05-29 05:21:06 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
max-len,
|
|
|
|
no-undef,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
let UserUpdater
|
|
|
|
const logger = require('logger-sharelatex')
|
|
|
|
const mongojs = require('../../infrastructure/mongojs')
|
|
|
|
const metrics = require('metrics-sharelatex')
|
|
|
|
const { db } = mongojs
|
|
|
|
const async = require('async')
|
|
|
|
const { ObjectId } = mongojs
|
|
|
|
const UserGetter = require('./UserGetter')
|
|
|
|
const {
|
|
|
|
addAffiliation,
|
|
|
|
removeAffiliation
|
|
|
|
} = require('../Institutions/InstitutionsAPI')
|
|
|
|
const FeaturesUpdater = require('../Subscription/FeaturesUpdater')
|
|
|
|
const EmailHelper = require('../Helpers/EmailHelper')
|
|
|
|
const Errors = require('../Errors/Errors')
|
|
|
|
const NewsletterManager = require('../Newsletter/NewsletterManager')
|
|
|
|
|
|
|
|
module.exports = UserUpdater = {
|
|
|
|
updateUser(query, update, callback) {
|
|
|
|
if (callback == null) {
|
|
|
|
callback = function(error) {}
|
|
|
|
}
|
|
|
|
if (typeof query === 'string') {
|
|
|
|
query = { _id: ObjectId(query) }
|
|
|
|
} else if (query instanceof ObjectId) {
|
|
|
|
query = { _id: query }
|
|
|
|
} else if (typeof query._id === 'string') {
|
|
|
|
query._id = ObjectId(query._id)
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.users.update(query, update, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
//
|
|
|
|
// DEPRECATED
|
|
|
|
//
|
|
|
|
// Change the user's main email address by adding a new email, switching the
|
|
|
|
// default email and removing the old email. Prefer manipulating multiple
|
|
|
|
// emails and the default rather than calling this method directly
|
|
|
|
//
|
|
|
|
changeEmailAddress(userId, newEmail, callback) {
|
|
|
|
newEmail = EmailHelper.parseEmail(newEmail)
|
|
|
|
if (newEmail == null) {
|
|
|
|
return callback(new Error('invalid email'))
|
|
|
|
}
|
|
|
|
logger.log({ userId, newEmail }, 'updaing email address of user')
|
|
|
|
|
|
|
|
let oldEmail = null
|
|
|
|
return async.series(
|
|
|
|
[
|
|
|
|
cb =>
|
|
|
|
UserGetter.getUserEmail(userId, function(error, email) {
|
|
|
|
oldEmail = email
|
|
|
|
return cb(error)
|
|
|
|
}),
|
|
|
|
cb => UserUpdater.addEmailAddress(userId, newEmail, cb),
|
2019-07-22 12:55:35 -04:00
|
|
|
cb => UserUpdater.setDefaultEmailAddress(userId, newEmail, true, cb),
|
2019-05-29 05:21:06 -04:00
|
|
|
cb => UserUpdater.removeEmailAddress(userId, oldEmail, cb)
|
|
|
|
],
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
// Add a new email address for the user. Email cannot be already used by this
|
|
|
|
// or any other user
|
|
|
|
addEmailAddress(userId, newEmail, affiliationOptions, callback) {
|
|
|
|
if (callback == null) {
|
|
|
|
// affiliationOptions is optional
|
|
|
|
callback = affiliationOptions
|
|
|
|
affiliationOptions = {}
|
|
|
|
}
|
|
|
|
newEmail = EmailHelper.parseEmail(newEmail)
|
|
|
|
if (newEmail == null) {
|
|
|
|
return callback(new Error('invalid email'))
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserGetter.ensureUniqueEmailAddress(newEmail, error => {
|
|
|
|
if (error != null) {
|
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
return addAffiliation(userId, newEmail, affiliationOptions, error => {
|
|
|
|
if (error != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn(
|
|
|
|
{ error },
|
|
|
|
'problem adding affiliation while adding email'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
const reversedHostname = newEmail
|
|
|
|
.split('@')[1]
|
|
|
|
.split('')
|
|
|
|
.reverse()
|
|
|
|
.join('')
|
|
|
|
const update = {
|
|
|
|
$push: {
|
|
|
|
emails: { email: newEmail, createdAt: new Date(), reversedHostname }
|
|
|
|
}
|
|
|
|
}
|
2019-08-09 07:35:53 -04:00
|
|
|
return UserUpdater.updateUser(userId, update, function(error) {
|
2019-05-29 05:21:06 -04:00
|
|
|
if (error != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn({ error }, 'problem updating users emails')
|
2019-05-29 05:21:06 -04:00
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
return callback()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// remove one of the user's email addresses. The email cannot be the user's
|
|
|
|
// default email address
|
|
|
|
removeEmailAddress(userId, email, callback) {
|
|
|
|
email = EmailHelper.parseEmail(email)
|
|
|
|
if (email == null) {
|
|
|
|
return callback(new Error('invalid email'))
|
|
|
|
}
|
|
|
|
return removeAffiliation(userId, email, error => {
|
|
|
|
if (error != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn({ error }, 'problem removing affiliation')
|
2019-05-29 05:21:06 -04:00
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = { _id: userId, email: { $ne: email } }
|
|
|
|
const update = { $pull: { emails: { email } } }
|
2019-08-09 07:35:53 -04:00
|
|
|
return UserUpdater.updateUser(query, update, function(error, res) {
|
2019-05-29 05:21:06 -04:00
|
|
|
if (error != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn({ error }, 'problem removing users email')
|
2019-05-29 05:21:06 -04:00
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
if (res.n === 0) {
|
|
|
|
return callback(new Error('Cannot remove email'))
|
|
|
|
}
|
|
|
|
return callback()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// set the default email address by setting the `email` attribute. The email
|
|
|
|
// must be one of the user's multiple emails (`emails` attribute)
|
2019-07-22 12:55:35 -04:00
|
|
|
setDefaultEmailAddress(userId, email, allowUnconfirmed, callback) {
|
|
|
|
if (typeof allowUnconfirmed === 'function') {
|
|
|
|
callback = allowUnconfirmed
|
|
|
|
allowUnconfirmed = false
|
|
|
|
}
|
2019-05-29 05:21:06 -04:00
|
|
|
email = EmailHelper.parseEmail(email)
|
|
|
|
if (email == null) {
|
|
|
|
return callback(new Error('invalid email'))
|
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
UserGetter.getUser(userId, { email: 1, emails: 1 }, (err, user) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
if (!user) {
|
|
|
|
return callback(new Error('invalid userId'))
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
const oldEmail = user.email
|
|
|
|
const userEmail = user.emails.find(e => e.email === email)
|
|
|
|
if (!userEmail) {
|
|
|
|
return callback(new Error('Default email does not belong to user'))
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
if (!userEmail.confirmedAt && !allowUnconfirmed) {
|
|
|
|
return callback(new Errors.UnconfirmedEmailError())
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
const query = { _id: userId, 'emails.email': email }
|
|
|
|
const update = { $set: { email } }
|
|
|
|
UserUpdater.updateUser(query, update, (err, res) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
// this should not happen
|
|
|
|
if (res.n === 0) {
|
|
|
|
return callback(new Error('email update error'))
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-07-22 12:55:35 -04:00
|
|
|
// do not wait - this will log its own errors
|
|
|
|
NewsletterManager.changeEmail(oldEmail, email, () => {})
|
|
|
|
callback()
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
confirmEmail(userId, email, confirmedAt, callback) {
|
|
|
|
if (arguments.length === 3) {
|
|
|
|
callback = confirmedAt
|
|
|
|
confirmedAt = new Date()
|
|
|
|
}
|
|
|
|
email = EmailHelper.parseEmail(email)
|
|
|
|
if (email == null) {
|
|
|
|
return callback(new Error('invalid email'))
|
|
|
|
}
|
|
|
|
logger.log({ userId, email }, 'confirming user email')
|
|
|
|
return addAffiliation(userId, email, { confirmedAt }, error => {
|
|
|
|
if (error != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn(
|
2019-05-29 05:21:06 -04:00
|
|
|
{ error },
|
|
|
|
'problem adding affiliation while confirming email'
|
|
|
|
)
|
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
_id: userId,
|
|
|
|
'emails.email': email
|
|
|
|
}
|
|
|
|
const update = {
|
|
|
|
$set: {
|
|
|
|
'emails.$.confirmedAt': confirmedAt
|
|
|
|
}
|
|
|
|
}
|
2019-08-09 07:35:53 -04:00
|
|
|
return UserUpdater.updateUser(query, update, function(error, res) {
|
2019-05-29 05:21:06 -04:00
|
|
|
if (error != null) {
|
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
logger.log({ res, userId, email }, 'tried to confirm email')
|
|
|
|
if (res.n === 0) {
|
|
|
|
return callback(
|
|
|
|
new Errors.NotFoundError('user id and email do no match')
|
|
|
|
)
|
|
|
|
}
|
2019-06-11 09:14:38 -04:00
|
|
|
return FeaturesUpdater.refreshFeatures(userId, callback)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
removeReconfirmFlag(user_id, callback) {
|
|
|
|
return UserUpdater.updateUser(
|
|
|
|
user_id.toString(),
|
|
|
|
{
|
|
|
|
$set: { must_reconfirm: false }
|
|
|
|
},
|
|
|
|
error => callback(error)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
;[
|
|
|
|
'updateUser',
|
|
|
|
'changeEmailAddress',
|
|
|
|
'setDefaultEmailAddress',
|
|
|
|
'addEmailAddress',
|
|
|
|
'removeEmailAddress',
|
|
|
|
'removeReconfirmFlag'
|
|
|
|
].map(method =>
|
|
|
|
metrics.timeAsyncMethod(UserUpdater, method, 'mongo.UserUpdater', logger)
|
|
|
|
)
|