mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #72 from overleaf/spd-decaf-cleanup-9
Post-decaf cleanup of app.js
This commit is contained in:
commit
90ab85d2b3
1 changed files with 15 additions and 114 deletions
|
@ -1,88 +1,34 @@
|
|||
/*
|
||||
* decaffeinate suggestions:
|
||||
* DS102: Remove unnecessary code created because of implicit returns
|
||||
* DS207: Consider shorter variations of null checks
|
||||
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||||
*/
|
||||
/* eslint-disable node/no-deprecated-api */
|
||||
const Metrics = require('metrics-sharelatex')
|
||||
const logger = require('logger-sharelatex')
|
||||
|
||||
Metrics.initialize('filestore')
|
||||
logger.initialize('filestore')
|
||||
|
||||
const settings = require('settings-sharelatex')
|
||||
const express = require('express')
|
||||
const bodyParser = require('body-parser')
|
||||
let logger = require('logger-sharelatex')
|
||||
logger.initialize('filestore')
|
||||
const settings = require('settings-sharelatex')
|
||||
|
||||
const fileController = require('./app/js/FileController')
|
||||
const bucketController = require('./app/js/BucketController')
|
||||
const keyBuilder = require('./app/js/KeyBuilder')
|
||||
const healthCheckController = require('./app/js/HealthCheckController')
|
||||
const domain = require('domain')
|
||||
let appIsOk = true
|
||||
|
||||
const app = express()
|
||||
|
||||
if ((settings.sentry != null ? settings.sentry.dsn : undefined) != null) {
|
||||
if (settings.sentry && settings.sentry.dsn) {
|
||||
logger.initializeErrorReporting(settings.sentry.dsn)
|
||||
}
|
||||
|
||||
Metrics.open_sockets.monitor(logger)
|
||||
if (Metrics.event_loop != null) {
|
||||
Metrics.memory.monitor(logger)
|
||||
if (Metrics.event_loop) {
|
||||
Metrics.event_loop.monitor(logger)
|
||||
}
|
||||
Metrics.memory.monitor(logger)
|
||||
|
||||
app.use(Metrics.http.monitor(logger))
|
||||
|
||||
app.use(function(req, res, next) {
|
||||
Metrics.inc('http-request')
|
||||
return next()
|
||||
})
|
||||
|
||||
app.use(function(req, res, next) {
|
||||
const requestDomain = domain.create()
|
||||
requestDomain.add(req)
|
||||
requestDomain.add(res)
|
||||
requestDomain.on('error', function(err) {
|
||||
try {
|
||||
// request a shutdown to prevent memory leaks
|
||||
beginShutdown()
|
||||
if (!res.headerSent) {
|
||||
res.send(500, 'uncaught exception')
|
||||
}
|
||||
logger = require('logger-sharelatex')
|
||||
req = {
|
||||
body: req.body,
|
||||
headers: req.headers,
|
||||
url: req.url,
|
||||
key: req.key,
|
||||
statusCode: req.statusCode
|
||||
}
|
||||
err = {
|
||||
message: err.message,
|
||||
stack: err.stack,
|
||||
name: err.name,
|
||||
type: err.type,
|
||||
arguments: err.arguments
|
||||
}
|
||||
return logger.err(
|
||||
{ err, req, res },
|
||||
'uncaught exception thrown on request'
|
||||
)
|
||||
} catch (exception) {
|
||||
return logger.err(
|
||||
{ err: exception },
|
||||
'exception in request domain handler'
|
||||
)
|
||||
}
|
||||
})
|
||||
return requestDomain.run(next)
|
||||
})
|
||||
|
||||
app.use(function(req, res, next) {
|
||||
if (!appIsOk) {
|
||||
// when shutting down, close any HTTP keep-alive connections
|
||||
res.set('Connection', 'close')
|
||||
}
|
||||
return next()
|
||||
next()
|
||||
})
|
||||
|
||||
Metrics.injectMetricsRoute(app)
|
||||
|
@ -108,7 +54,7 @@ app.put(
|
|||
bodyParser.json(),
|
||||
fileController.copyFile
|
||||
)
|
||||
app.del(
|
||||
app.delete(
|
||||
'/project/:project_id/file/:file_id',
|
||||
keyBuilder.userFileKeyMiddleware,
|
||||
fileController.deleteFile
|
||||
|
@ -156,7 +102,7 @@ app.put(
|
|||
bodyParser.json(),
|
||||
fileController.copyFile
|
||||
)
|
||||
app.del(
|
||||
app.delete(
|
||||
'/project/:project_id/public/:public_file_id',
|
||||
keyBuilder.publicFileKeyMiddleware,
|
||||
fileController.deleteFile
|
||||
|
@ -182,49 +128,18 @@ app.get('/heapdump', (req, res, next) =>
|
|||
)
|
||||
)
|
||||
|
||||
app.post('/shutdown', function(req, res) {
|
||||
appIsOk = false
|
||||
return res.send()
|
||||
})
|
||||
|
||||
app.get('/status', function(req, res) {
|
||||
if (appIsOk) {
|
||||
return res.send('filestore sharelatex up')
|
||||
} else {
|
||||
logger.log('app is not ok - shutting down')
|
||||
return res.send('server is being shut down', 500)
|
||||
}
|
||||
res.send('filestore sharelatex up')
|
||||
})
|
||||
|
||||
app.get('/health_check', healthCheckController.check)
|
||||
|
||||
app.get('*', (req, res) => res.send(404))
|
||||
|
||||
var beginShutdown = function() {
|
||||
if (appIsOk) {
|
||||
appIsOk = false
|
||||
// hard-terminate this process if graceful shutdown fails
|
||||
const killTimer = setTimeout(() => process.exit(1), 120 * 1000)
|
||||
if (typeof killTimer.unref === 'function') {
|
||||
killTimer.unref()
|
||||
} // prevent timer from keeping process alive
|
||||
server.close(function() {
|
||||
logger.log('closed all connections')
|
||||
Metrics.close()
|
||||
return typeof process.disconnect === 'function'
|
||||
? process.disconnect()
|
||||
: undefined
|
||||
})
|
||||
return logger.log('server will stop accepting connections')
|
||||
}
|
||||
}
|
||||
|
||||
const port = settings.internal.filestore.port || 3009
|
||||
const host = '0.0.0.0'
|
||||
|
||||
if (!module.parent) {
|
||||
// Called directly
|
||||
var server = app.listen(port, host, error => {
|
||||
app.listen(port, host, error => {
|
||||
if (error) {
|
||||
logger.error('Error starting Filestore', error)
|
||||
throw error
|
||||
|
@ -234,17 +149,3 @@ if (!module.parent) {
|
|||
}
|
||||
|
||||
module.exports = app
|
||||
|
||||
process.on('SIGTERM', function() {
|
||||
logger.log('filestore got SIGTERM, shutting down gracefully')
|
||||
return beginShutdown()
|
||||
})
|
||||
|
||||
if (global.gc != null) {
|
||||
const oneMinute = 60 * 1000
|
||||
const gcTimer = setInterval(function() {
|
||||
global.gc()
|
||||
return logger.log(process.memoryUsage(), 'global.gc')
|
||||
}, 3 * oneMinute)
|
||||
gcTimer.unref()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue