2020-02-17 12:35:50 -05:00
|
|
|
/* eslint-disable
|
|
|
|
handle-callback-err,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-17 12:35:39 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
|
|
* DS205: Consider reworking code to avoid use of IIFEs
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-02-17 12:35:59 -05:00
|
|
|
const app = require('../../../../app')
|
2020-09-10 07:58:06 -04:00
|
|
|
const { waitForDb } = require('../../../../app/js/mongodb')
|
2020-02-17 12:35:59 -05:00
|
|
|
const logger = require('logger-sharelatex')
|
2021-07-12 12:47:16 -04:00
|
|
|
const Settings = require('@overleaf/settings')
|
2018-05-24 07:02:27 -04:00
|
|
|
|
2020-02-17 12:35:39 -05:00
|
|
|
module.exports = {
|
2020-02-17 12:35:59 -05:00
|
|
|
running: false,
|
|
|
|
initing: false,
|
|
|
|
callbacks: [],
|
|
|
|
ensureRunning(callback) {
|
|
|
|
if (callback == null) {
|
2020-06-04 04:24:21 -04:00
|
|
|
callback = function (error) {}
|
2020-02-17 12:35:59 -05:00
|
|
|
}
|
|
|
|
if (this.running) {
|
|
|
|
return callback()
|
|
|
|
} else if (this.initing) {
|
|
|
|
return this.callbacks.push(callback)
|
2020-09-10 07:58:06 -04:00
|
|
|
}
|
|
|
|
this.initing = true
|
|
|
|
this.callbacks.push(callback)
|
|
|
|
waitForDb().then(() => {
|
2020-02-17 12:35:59 -05:00
|
|
|
return app.listen(
|
|
|
|
__guard__(
|
|
|
|
Settings.internal != null
|
|
|
|
? Settings.internal.trackchanges
|
|
|
|
: undefined,
|
2021-07-13 07:04:43 -04:00
|
|
|
x => x.port
|
2020-02-17 12:35:59 -05:00
|
|
|
),
|
|
|
|
'localhost',
|
2021-07-13 07:04:43 -04:00
|
|
|
error => {
|
2020-02-17 12:35:59 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
this.running = true
|
|
|
|
logger.log('track changes running in dev mode')
|
2018-05-24 07:02:27 -04:00
|
|
|
|
2020-02-17 12:35:59 -05:00
|
|
|
return (() => {
|
|
|
|
const result = []
|
|
|
|
for (callback of Array.from(this.callbacks)) {
|
|
|
|
result.push(callback())
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
})()
|
|
|
|
}
|
|
|
|
)
|
2020-09-10 07:58:06 -04:00
|
|
|
})
|
2021-07-13 07:04:43 -04:00
|
|
|
},
|
2020-02-17 12:35:59 -05:00
|
|
|
}
|
2020-02-17 12:35:39 -05:00
|
|
|
function __guard__(value, transform) {
|
2020-02-17 12:35:59 -05:00
|
|
|
return typeof value !== 'undefined' && value !== null
|
|
|
|
? transform(value)
|
|
|
|
: undefined
|
|
|
|
}
|