mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const logger = require('logger-sharelatex')
|
|
const settings = require('settings-sharelatex')
|
|
|
|
const Server = require('./app/js/server')
|
|
|
|
if (!module.parent) {
|
|
// Called directly
|
|
const port =
|
|
__guard__(
|
|
settings.internal != null ? settings.internal.chat : undefined,
|
|
(x) => x.port
|
|
) || 3010
|
|
const host =
|
|
__guard__(
|
|
settings.internal != null ? settings.internal.chat : undefined,
|
|
(x1) => x1.host
|
|
) || 'localhost'
|
|
Server.server.listen(port, host, function (error) {
|
|
if (error != null) {
|
|
throw error
|
|
}
|
|
return logger.info(`Chat starting up, listening on ${host}:${port}`)
|
|
})
|
|
}
|
|
|
|
module.exports = Server.server
|
|
|
|
function __guard__(value, transform) {
|
|
return typeof value !== 'undefined' && value !== null
|
|
? transform(value)
|
|
: undefined
|
|
}
|