2020-02-16 09:03:09 -05:00
|
|
|
const app = require('../../../../app')
|
2020-08-28 08:13:19 -04:00
|
|
|
const { waitForDb } = require('../../../../app/js/mongodb')
|
2021-12-14 08:00:35 -05:00
|
|
|
require('@overleaf/logger').logger.level('error')
|
2021-07-12 12:47:20 -04:00
|
|
|
const settings = require('@overleaf/settings')
|
2018-05-23 06:27:31 -04:00
|
|
|
|
2020-02-16 09:03:02 -05:00
|
|
|
module.exports = {
|
2020-02-16 09:03:09 -05:00
|
|
|
running: false,
|
|
|
|
initing: false,
|
|
|
|
callbacks: [],
|
|
|
|
ensureRunning(callback) {
|
|
|
|
if (callback == null) {
|
2021-10-27 05:49:18 -04:00
|
|
|
callback = function () {}
|
2020-02-16 09:03:09 -05:00
|
|
|
}
|
|
|
|
if (this.running) {
|
|
|
|
return callback()
|
|
|
|
} else if (this.initing) {
|
|
|
|
return this.callbacks.push(callback)
|
2020-08-28 08:13:19 -04:00
|
|
|
}
|
|
|
|
this.initing = true
|
|
|
|
this.callbacks.push(callback)
|
|
|
|
waitForDb().then(() => {
|
2021-07-13 07:04:48 -04:00
|
|
|
return app.listen(settings.internal.docstore.port, 'localhost', error => {
|
|
|
|
if (error != null) {
|
|
|
|
throw error
|
2020-05-28 09:20:54 -04:00
|
|
|
}
|
2021-07-13 07:04:48 -04:00
|
|
|
this.running = true
|
|
|
|
return (() => {
|
|
|
|
const result = []
|
|
|
|
for (callback of Array.from(this.callbacks)) {
|
|
|
|
result.push(callback())
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
})()
|
|
|
|
})
|
2020-08-28 08:13:19 -04:00
|
|
|
})
|
2021-07-13 07:04:48 -04:00
|
|
|
},
|
2020-02-16 09:03:09 -05:00
|
|
|
}
|