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