mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 15:19:02 +02:00
b4b2fbaf07
* [misc] fix logger.error(err) calls
The signature is "logger.error({ err }, 'MESSAGE')".
* [project-history] remove duplicate logger.err calls in health check
The call-site is already logging any errors. Also, the logger.err call
signature was not quite right.
* [web] log userId when removeDropbox/removeGithub hook fails
* [misc] fix logger.warn(err) calls
The signature is "logger.warn({ err }, 'MESSAGE')".
* [misc] fix logger.error(OError.tag(err)) calls
* [web] make eslint happy
GitOrigin-RevId: 7f528113a3f7e9f6293b7d2d45adc079380325bb
146 lines
3.9 KiB
JavaScript
146 lines
3.9 KiB
JavaScript
const logger = require('@overleaf/logger')
|
|
const util = require('util')
|
|
const { AffiliationError } = require('../Errors/Errors')
|
|
const Features = require('../../infrastructure/Features')
|
|
const { User } = require('../../models/User')
|
|
const UserDeleter = require('./UserDeleter')
|
|
const UserGetter = require('./UserGetter')
|
|
const UserUpdater = require('./UserUpdater')
|
|
const Analytics = require('../Analytics/AnalyticsManager')
|
|
const UserOnboardingEmailManager = require('./UserOnboardingEmailManager')
|
|
const UserPostRegistrationAnalyticsManager = require('./UserPostRegistrationAnalyticsManager')
|
|
const OError = require('@overleaf/o-error')
|
|
|
|
async function _addAffiliation(user, affiliationOptions) {
|
|
try {
|
|
await UserUpdater.promises.addAffiliationForNewUser(
|
|
user._id,
|
|
user.email,
|
|
affiliationOptions
|
|
)
|
|
} catch (error) {
|
|
throw new AffiliationError('add affiliation failed').withCause(error)
|
|
}
|
|
|
|
try {
|
|
user = await UserGetter.promises.getUser(user._id)
|
|
} catch (error) {
|
|
logger.error(
|
|
OError.tag(error, 'could not get fresh user data', {
|
|
userId: user._id,
|
|
email: user.email,
|
|
})
|
|
)
|
|
}
|
|
return user
|
|
}
|
|
|
|
async function recordRegistrationEvent(user) {
|
|
try {
|
|
const segmentation = {
|
|
'home-registration': 'default',
|
|
}
|
|
if (user.thirdPartyIdentifiers && user.thirdPartyIdentifiers.length > 0) {
|
|
segmentation.provider = user.thirdPartyIdentifiers[0].providerId
|
|
}
|
|
Analytics.recordEventForUserInBackground(
|
|
user._id,
|
|
'user-registered',
|
|
segmentation
|
|
)
|
|
} catch (err) {
|
|
logger.warn({ err }, 'there was an error recording `user-registered` event')
|
|
}
|
|
}
|
|
|
|
async function createNewUser(attributes, options = {}) {
|
|
let user = new User()
|
|
|
|
if (attributes.first_name == null || attributes.first_name === '') {
|
|
attributes.first_name = attributes.email.split('@')[0]
|
|
}
|
|
|
|
Object.assign(user, attributes)
|
|
|
|
user.ace.syntaxValidation = true
|
|
|
|
const reversedHostname = user.email.split('@')[1].split('').reverse().join('')
|
|
|
|
const emailData = {
|
|
email: user.email,
|
|
createdAt: new Date(),
|
|
reversedHostname,
|
|
}
|
|
if (Features.hasFeature('affiliations')) {
|
|
emailData.affiliationUnchecked = true
|
|
}
|
|
if (
|
|
attributes.samlIdentifiers &&
|
|
attributes.samlIdentifiers[0] &&
|
|
attributes.samlIdentifiers[0].providerId
|
|
) {
|
|
emailData.samlProviderId = attributes.samlIdentifiers[0].providerId
|
|
}
|
|
|
|
const affiliationOptions = options.affiliationOptions || {}
|
|
|
|
if (options.confirmedAt) {
|
|
emailData.confirmedAt = options.confirmedAt
|
|
affiliationOptions.confirmedAt = options.confirmedAt
|
|
}
|
|
user.emails = [emailData]
|
|
|
|
user = await user.save()
|
|
|
|
if (Features.hasFeature('affiliations')) {
|
|
try {
|
|
user = await _addAffiliation(user, affiliationOptions)
|
|
} catch (error) {
|
|
if (options.requireAffiliation) {
|
|
await UserDeleter.promises.deleteMongoUser(user._id)
|
|
throw OError.tag(error)
|
|
} else {
|
|
const err = OError.tag(error, 'adding affiliations failed')
|
|
logger.error({ err, userId: user._id }, err.message)
|
|
}
|
|
}
|
|
}
|
|
|
|
await recordRegistrationEvent(user)
|
|
await Analytics.setUserPropertyForUser(user._id, 'created-at', new Date())
|
|
await Analytics.setUserPropertyForUser(user._id, 'user-id', user._id)
|
|
if (attributes.analyticsId) {
|
|
await Analytics.setUserPropertyForUser(
|
|
user._id,
|
|
'analytics-id',
|
|
attributes.analyticsId
|
|
)
|
|
}
|
|
|
|
if (Features.hasFeature('saas')) {
|
|
try {
|
|
await UserOnboardingEmailManager.scheduleOnboardingEmail(user)
|
|
await UserPostRegistrationAnalyticsManager.schedulePostRegistrationAnalytics(
|
|
user
|
|
)
|
|
} catch (error) {
|
|
logger.error(
|
|
OError.tag(error, 'Failed to schedule sending of onboarding email', {
|
|
userId: user._id,
|
|
})
|
|
)
|
|
}
|
|
}
|
|
|
|
return user
|
|
}
|
|
|
|
const UserCreator = {
|
|
createNewUser: util.callbackify(createNewUser),
|
|
promises: {
|
|
createNewUser,
|
|
},
|
|
}
|
|
|
|
module.exports = UserCreator
|