mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
11a81007f5
Reducing timeout for v1 calls for endpoints GitOrigin-RevId: 0f28569a1401e2fad7434df2a68a230ceb0f4aca
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
const { Schema } = mongoose
|
|
const { ObjectId } = Schema
|
|
const settings = require('@overleaf/settings')
|
|
const logger = require('@overleaf/logger')
|
|
const request = require('request')
|
|
|
|
const PublisherSchema = new Schema({
|
|
slug: { type: String, required: true },
|
|
managerIds: [{ type: ObjectId, ref: 'User' }],
|
|
})
|
|
|
|
// fetch publisher's (brand on v1) data from v1 API. Errors are ignored
|
|
PublisherSchema.method('fetchV1Data', function (callback) {
|
|
request(
|
|
{
|
|
baseUrl: settings.apis.v1.url,
|
|
url: `/api/v2/brands/${this.slug}`,
|
|
method: 'GET',
|
|
auth: {
|
|
user: settings.apis.v1.user,
|
|
pass: settings.apis.v1.pass,
|
|
sendImmediately: true,
|
|
},
|
|
timeout: settings.apis.v1.timeout,
|
|
},
|
|
(error, response, body) => {
|
|
let parsedBody
|
|
try {
|
|
parsedBody = JSON.parse(body)
|
|
} catch (error1) {
|
|
// log error and carry on without v1 data
|
|
error = error1
|
|
logger.err(
|
|
{ model: 'Publisher', slug: this.slug, error },
|
|
'[fetchV1DataError]'
|
|
)
|
|
}
|
|
this.name = parsedBody != null ? parsedBody.name : undefined
|
|
this.partner = parsedBody != null ? parsedBody.partner : undefined
|
|
callback(null, this)
|
|
}
|
|
)
|
|
})
|
|
|
|
exports.Publisher = mongoose.model('Publisher', PublisherSchema)
|
|
exports.PublisherSchema = PublisherSchema
|