2022-12-13 07:37:49 -05:00
|
|
|
import http from 'http'
|
|
|
|
import metrics from '@overleaf/metrics'
|
|
|
|
import logger from '@overleaf/logger'
|
|
|
|
import express from 'express'
|
2023-01-04 10:07:58 -05:00
|
|
|
import exegesisExpress from 'exegesis-express'
|
|
|
|
import path from 'path'
|
|
|
|
import { fileURLToPath } from 'url'
|
|
|
|
import * as messagesController from './Features/Messages/MessageHttpController.js'
|
|
|
|
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url))
|
2022-12-13 07:37:49 -05:00
|
|
|
|
2018-12-20 14:13:59 -05:00
|
|
|
metrics.initialize('chat')
|
2019-02-05 13:50:57 -05:00
|
|
|
logger.initialize('chat')
|
2023-05-22 06:36:51 -04:00
|
|
|
metrics.open_sockets.monitor()
|
2022-12-13 07:37:49 -05:00
|
|
|
|
2023-05-30 09:25:50 -04:00
|
|
|
metrics.leaked_sockets.monitor(logger)
|
|
|
|
|
2023-01-04 10:07:58 -05:00
|
|
|
export async function createServer() {
|
|
|
|
const app = express()
|
|
|
|
|
2023-01-05 06:42:34 -05:00
|
|
|
app.use(metrics.http.monitor(logger))
|
|
|
|
metrics.injectMetricsRoute(app)
|
|
|
|
|
2023-01-04 10:07:58 -05:00
|
|
|
// See https://github.com/exegesis-js/exegesis/blob/master/docs/Options.md
|
|
|
|
const options = {
|
|
|
|
controllers: { messagesController },
|
|
|
|
ignoreServers: true,
|
|
|
|
allowMissingControllers: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
// const exegesisMiddleware = await exegesisExpress.middleware(
|
|
|
|
const exegesisMiddleware = await exegesisExpress.middleware(
|
|
|
|
path.resolve(__dirname, '../../chat.yaml'),
|
|
|
|
options
|
|
|
|
)
|
|
|
|
|
|
|
|
// If you have any body parsers, this should go before them.
|
|
|
|
app.use(exegesisMiddleware)
|
|
|
|
|
|
|
|
// Return a 404
|
|
|
|
app.use((req, res) => {
|
|
|
|
res.status(404).json({ message: `Not found` })
|
|
|
|
})
|
2014-08-15 05:50:36 -04:00
|
|
|
|
2023-01-04 10:07:58 -05:00
|
|
|
// Handle any unexpected errors
|
|
|
|
app.use((err, req, res, next) => {
|
|
|
|
res.status(500).json({ message: `Internal error: ${err.message}` })
|
|
|
|
})
|
2014-08-15 05:50:36 -04:00
|
|
|
|
2023-01-04 10:07:58 -05:00
|
|
|
const server = http.createServer(app)
|
|
|
|
return { app, server }
|
|
|
|
}
|