mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
94 lines
2.4 KiB
JavaScript
94 lines
2.4 KiB
JavaScript
|
/* eslint-disable
|
||
|
handle-callback-err,
|
||
|
max-len,
|
||
|
no-unused-vars,
|
||
|
*/
|
||
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Fix any style issues and re-enable lint.
|
||
|
/*
|
||
|
* decaffeinate suggestions:
|
||
|
* 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 InstitutionsController
|
||
|
const logger = require('logger-sharelatex')
|
||
|
const UserGetter = require('../User/UserGetter')
|
||
|
const { addAffiliation } = require('../Institutions/InstitutionsAPI')
|
||
|
const FeaturesUpdater = require('../Subscription/FeaturesUpdater')
|
||
|
const async = require('async')
|
||
|
|
||
|
module.exports = InstitutionsController = {
|
||
|
confirmDomain(req, res, next) {
|
||
|
const { hostname } = req.body
|
||
|
return affiliateUsers(hostname, function(error) {
|
||
|
if (error != null) {
|
||
|
return next(error)
|
||
|
}
|
||
|
return res.sendStatus(200)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var affiliateUsers = function(hostname, callback) {
|
||
|
if (callback == null) {
|
||
|
callback = function(error) {}
|
||
|
}
|
||
|
const reversedHostname = hostname
|
||
|
.trim()
|
||
|
.split('')
|
||
|
.reverse()
|
||
|
.join('')
|
||
|
return UserGetter.getUsersByHostname(
|
||
|
hostname,
|
||
|
{ _id: 1, emails: 1 },
|
||
|
function(error, users) {
|
||
|
if (error != null) {
|
||
|
logger.err({ error }, 'problem fetching users by hostname')
|
||
|
return callback(error)
|
||
|
}
|
||
|
|
||
|
return async.map(
|
||
|
users,
|
||
|
(user, innerCallback) =>
|
||
|
affiliateUserByReversedHostname(
|
||
|
user,
|
||
|
reversedHostname,
|
||
|
innerCallback
|
||
|
),
|
||
|
callback
|
||
|
)
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
|
||
|
var affiliateUserByReversedHostname = function(
|
||
|
user,
|
||
|
reversedHostname,
|
||
|
callback
|
||
|
) {
|
||
|
const matchingEmails = user.emails.filter(
|
||
|
email => email.reversedHostname === reversedHostname
|
||
|
)
|
||
|
return async.map(
|
||
|
matchingEmails,
|
||
|
(email, innerCallback) =>
|
||
|
addAffiliation(
|
||
|
user._id,
|
||
|
email.email,
|
||
|
{ confirmedAt: email.confirmedAt },
|
||
|
error => {
|
||
|
if (error != null) {
|
||
|
logger.err(
|
||
|
{ error },
|
||
|
'problem adding affiliation while confirming hostname'
|
||
|
)
|
||
|
return innerCallback(error)
|
||
|
}
|
||
|
return FeaturesUpdater.refreshFeatures(user._id, true, innerCallback)
|
||
|
}
|
||
|
),
|
||
|
callback
|
||
|
)
|
||
|
}
|