mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ede3b6a248
Send Entitlement for Affiliations During Domains Confirmation GitOrigin-RevId: 9d6b41022adfdb5e1a797b9471830014b1ef43e3
80 lines
2 KiB
JavaScript
80 lines
2 KiB
JavaScript
const OError = require('@overleaf/o-error')
|
|
const UserGetter = require('../User/UserGetter')
|
|
const { addAffiliation } = require('../Institutions/InstitutionsAPI')
|
|
const FeaturesUpdater = require('../Subscription/FeaturesUpdater')
|
|
const async = require('async')
|
|
const ASYNC_AFFILIATIONS_LIMIT = 10
|
|
|
|
module.exports = {
|
|
confirmDomain(req, res, next) {
|
|
const { hostname } = req.body
|
|
affiliateUsers(hostname, function(error) {
|
|
if (error) {
|
|
return next(error)
|
|
}
|
|
res.sendStatus(200)
|
|
})
|
|
}
|
|
}
|
|
|
|
var affiliateUsers = function(hostname, callback) {
|
|
const reversedHostname = hostname
|
|
.trim()
|
|
.split('')
|
|
.reverse()
|
|
.join('')
|
|
UserGetter.getUsersByHostname(hostname, { _id: 1 }, function(error, users) {
|
|
if (error) {
|
|
OError.tag(error, 'problem fetching users by hostname')
|
|
return callback(error)
|
|
}
|
|
|
|
async.mapLimit(
|
|
users,
|
|
ASYNC_AFFILIATIONS_LIMIT,
|
|
(user, innerCallback) => {
|
|
UserGetter.getUserFullEmails(user._id, (error, emails) => {
|
|
if (error) return innerCallback(error)
|
|
user.emails = emails
|
|
affiliateUserByReversedHostname(user, reversedHostname, innerCallback)
|
|
})
|
|
},
|
|
callback
|
|
)
|
|
})
|
|
}
|
|
|
|
var affiliateUserByReversedHostname = function(
|
|
user,
|
|
reversedHostname,
|
|
callback
|
|
) {
|
|
const matchingEmails = user.emails.filter(
|
|
email => email.reversedHostname === reversedHostname
|
|
)
|
|
async.mapSeries(
|
|
matchingEmails,
|
|
(email, innerCallback) => {
|
|
addAffiliation(
|
|
user._id,
|
|
email.email,
|
|
{
|
|
confirmedAt: email.confirmedAt,
|
|
entitlement:
|
|
email.samlIdentifier && email.samlIdentifier.hasEntitlement
|
|
},
|
|
error => {
|
|
if (error) {
|
|
OError.tag(
|
|
error,
|
|
'problem adding affiliation while confirming hostname'
|
|
)
|
|
return innerCallback(error)
|
|
}
|
|
FeaturesUpdater.refreshFeatures(user._id, innerCallback)
|
|
}
|
|
)
|
|
},
|
|
callback
|
|
)
|
|
}
|