mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
24 lines
649 B
CoffeeScript
24 lines
649 B
CoffeeScript
async = require("async")
|
|
_ = require("underscore")
|
|
settings = require("settings-sharelatex")
|
|
SubscriptionGroupHandler = require("./SubscriptionGroupHandler")
|
|
_s = require("underscore.string")
|
|
|
|
module.exports = SubscriptionDomainAllocator =
|
|
|
|
autoAllocate: (user, callback = ->)->
|
|
licence = SubscriptionDomainAllocator._findDomainLicence(user.email)
|
|
if licence?
|
|
SubscriptionGroupHandler.addUserToGroup licence.adminUser_id, user.email, callback
|
|
else
|
|
callback()
|
|
|
|
|
|
_findDomainLicence: (email)->
|
|
licence = _.find settings.domainLicences, (licence)->
|
|
_.find licence.domains, (domain)->
|
|
_s.endsWith email, domain
|
|
|
|
return licence
|
|
|
|
|