overleaf/services/web/app/coffee/models/Institution.coffee

38 lines
1.3 KiB
CoffeeScript
Raw Normal View History

2018-09-25 09:10:06 -04:00
mongoose = require 'mongoose'
Schema = mongoose.Schema
ObjectId = Schema.ObjectId
settings = require 'settings-sharelatex'
logger = require 'logger-sharelatex'
request = require 'request'
2018-09-25 09:10:06 -04:00
InstitutionSchema = new Schema
v1Id: { type: Number, required: true }
managerIds: [ type:ObjectId, ref:'User' ]
metricsEmail: {
optedOutUserIds: [ type:ObjectId, ref:'User' ]
lastSent: { type : Date }
}
2018-09-25 09:10:06 -04:00
# fetch institution's data from v1 API. Errors are ignored
InstitutionSchema.method 'fetchV1Data', (callback = (error, institution)->) ->
url = "#{settings.apis.v1.url}/universities/list/#{this.v1Id}"
request.get url, (error, response, body) =>
try
parsedBody = JSON.parse(body)
catch error # log error and carry on without v1 data
logger.err { model: 'Institution', v1Id: this.v1Id, error }, '[fetchV1DataError]'
this.name = parsedBody?.name
this.countryCode = parsedBody?.country_code
this.departments = parsedBody?.departments
this.portalSlug = parsedBody?.portal_slug
callback(null, this)
conn = mongoose.createConnection(settings.mongo.url, {
server: {poolSize: settings.mongo.poolSize || 10},
config: {autoIndex: false}
})
Institution = conn.model 'Institution', InstitutionSchema
exports.Institution = Institution
2018-09-25 09:10:06 -04:00
exports.InstitutionSchema = InstitutionSchema