const EmailHandler = require('../Email/EmailHandler') const Errors = require('../Errors/Errors') const logger = require('logger-sharelatex') const OError = require('@overleaf/o-error') const { User } = require('../../models/User') const UserGetter = require('../User/UserGetter') const UserUpdater = require('../User/UserUpdater') async function _addIdentifier( userId, externalUserId, providerId, hasEntitlement, institutionEmail ) { // first check if institutionEmail linked to another account // before adding the identifier for the email const user = await UserGetter.promises.getUserByAnyEmail(institutionEmail) if (user && user._id.toString() !== userId.toString()) { const existingEmailData = user.emails.find( emailData => emailData.email === institutionEmail ) if (existingEmailData && existingEmailData.samlProviderId) { // email exists and institution link. // Return back to requesting page with error throw new Errors.SAMLIdentityExistsError() } else { // Only email exists but not linked, so redirect to linking page // which will tell this user to log out to link throw new Errors.EmailExistsError() } } providerId = providerId.toString() hasEntitlement = !!hasEntitlement const query = { _id: userId, 'samlIdentifiers.providerId': { $ne: providerId } } const update = { $push: { samlIdentifiers: { hasEntitlement, externalUserId, providerId } } } // First update user.samlIdentifiers let updatedUser = User.findOneAndUpdate(query, update, { new: true }).exec() try { updatedUser = User.findOneAndUpdate(query, update, { new: true }).exec() } catch (err) { if (err && err.code === 11000) { throw new Errors.SAMLIdentityExistsError() } else if (err != null) { logger.log(err, userId, 'failed to add institution SAML identifier') throw new OError(err) } } return updatedUser } function _getUserQuery(providerId, externalUserId) { externalUserId = externalUserId.toString() providerId = providerId.toString() const query = { 'samlIdentifiers.externalUserId': externalUserId, 'samlIdentifiers.providerId': providerId } return query } async function _addInstitutionEmail(userId, email, providerId) { const user = await UserGetter.promises.getUser(userId) const query = { _id: userId, 'emails.email': email } const update = { $set: { 'emails.$.samlProviderId': providerId.toString() } } if (user == null) { logger.log(userId, 'could not find user for institution SAML linking') throw new Errors.NotFoundError('user not found') } const emailAlreadyAssociated = user.emails.find(e => e.email === email) if (emailAlreadyAssociated && emailAlreadyAssociated.confirmedAt) { await UserUpdater.promises.updateUser(query, update) } else if (emailAlreadyAssociated) { // add and confirm email await UserUpdater.promises.confirmEmail(user._id, email) await UserUpdater.promises.updateUser(query, update) } else { // add and confirm email await UserUpdater.promises.addEmailAddress(user._id, email) await UserUpdater.promises.confirmEmail(user._id, email) await UserUpdater.promises.updateUser(query, update) } } async function _sendLinkedEmail(userId, providerName) { const user = await UserGetter.promises.getUser(userId, { email: 1 }) const emailOptions = { to: user.email, provider: providerName } EmailHandler.sendEmail( 'emailThirdPartyIdentifierLinked', emailOptions, error => { if (error != null) { logger.warn(error) } } ) } function _sendUnlinkedEmail(primaryEmail, providerName) { const emailOptions = { to: primaryEmail, provider: providerName } EmailHandler.sendEmail( 'emailThirdPartyIdentifierUnlinked', emailOptions, error => { if (error != null) { logger.warn(error) } } ) } async function getUser(providerId, externalUserId) { if (providerId == null || externalUserId == null) { throw new Error( `invalid arguments: providerId: ${providerId}, externalUserId: ${externalUserId}` ) } providerId = providerId.toString() externalUserId = externalUserId.toString() const query = _getUserQuery(providerId, externalUserId) let user = await User.findOne(query).exec() if (!user) { throw new Errors.SAMLUserNotFoundError() } return user } async function linkAccounts( userId, externalUserId, institutionEmail, providerId, providerName, hasEntitlement ) { await _addIdentifier( userId, externalUserId, providerId, hasEntitlement, institutionEmail ) await _addInstitutionEmail(userId, institutionEmail, providerId) await _sendLinkedEmail(userId, providerName) } async function unlinkAccounts(userId, primaryEmail, providerId, providerName) { providerId = providerId.toString() const query = { _id: userId } const update = { $pull: { samlIdentifiers: { providerId } } } await User.update(query, update).exec() _sendUnlinkedEmail(primaryEmail, providerName) } async function updateEntitlement(userId, providerId, hasEntitlement) { providerId = providerId.toString() hasEntitlement = !!hasEntitlement const query = { _id: userId, 'samlIdentifiers.providerId': providerId.toString() } const update = { $set: { 'samlIdentifiers.$.hasEntitlement': hasEntitlement } } await User.update(query, update).exec() } function entitlementAttributeMatches(entitlementAttribute, entitlementMatcher) { if ( typeof entitlementAttribute !== 'string' || typeof entitlementMatcher !== 'string' ) { return false } const entitlementRegExp = new RegExp(entitlementMatcher) return !!entitlementAttribute.match(entitlementRegExp) } function userHasEntitlement(user, providerId) { providerId = providerId.toString() if (!user || !Array.isArray(user.samlIdentifiers)) { return false } for (const samlIdentifier of user.samlIdentifiers) { if (providerId && samlIdentifier.providerId !== providerId) { continue } if (samlIdentifier.hasEntitlement) { return true } } return false } const SAMLIdentityManager = { entitlementAttributeMatches, getUser, linkAccounts, unlinkAccounts, updateEntitlement, userHasEntitlement } module.exports = SAMLIdentityManager