2019-07-03 08:41:01 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2020-11-25 06:57:24 -05:00
|
|
|
const metrics = require('@overleaf/metrics')
|
2019-07-03 08:41:01 -04:00
|
|
|
metrics.initialize('spelling')
|
|
|
|
|
2021-07-12 12:47:20 -04:00
|
|
|
const Settings = require('@overleaf/settings')
|
2019-07-03 08:41:01 -04:00
|
|
|
const logger = require('logger-sharelatex')
|
|
|
|
logger.initialize('spelling')
|
|
|
|
if ((Settings.sentry != null ? Settings.sentry.dsn : undefined) != null) {
|
|
|
|
logger.initializeErrorReporting(Settings.sentry.dsn)
|
|
|
|
}
|
|
|
|
metrics.memory.monitor(logger)
|
|
|
|
|
2020-09-03 12:05:13 -04:00
|
|
|
const mongodb = require('./app/js/mongodb')
|
2019-07-03 08:41:01 -04:00
|
|
|
const SpellingAPIController = require('./app/js/SpellingAPIController')
|
|
|
|
const express = require('express')
|
2020-07-22 04:22:19 -04:00
|
|
|
const app = express()
|
|
|
|
metrics.injectMetricsRoute(app)
|
2019-07-03 08:41:01 -04:00
|
|
|
const bodyParser = require('body-parser')
|
|
|
|
const HealthCheckController = require('./app/js/HealthCheckController')
|
|
|
|
|
2020-07-22 04:22:19 -04:00
|
|
|
app.use(bodyParser.json({ limit: '2mb' }))
|
|
|
|
app.use(metrics.http.monitor(logger))
|
2019-07-03 08:41:01 -04:00
|
|
|
|
2020-07-22 04:32:39 -04:00
|
|
|
app.delete('/user/:user_id', SpellingAPIController.deleteDic)
|
2020-07-22 04:22:19 -04:00
|
|
|
app.get('/user/:user_id', SpellingAPIController.getDic)
|
|
|
|
app.post('/user/:user_id/check', SpellingAPIController.check)
|
|
|
|
app.post('/user/:user_id/learn', SpellingAPIController.learn)
|
|
|
|
app.post('/user/:user_id/unlearn', SpellingAPIController.unlearn)
|
|
|
|
app.get('/status', (req, res) => res.send({ status: 'spelling api is up' }))
|
2019-07-03 08:41:01 -04:00
|
|
|
|
2020-07-22 04:22:19 -04:00
|
|
|
app.get('/health_check', HealthCheckController.healthCheck)
|
2019-07-03 08:41:01 -04:00
|
|
|
|
2019-07-09 14:12:30 -04:00
|
|
|
const settings =
|
|
|
|
Settings.internal && Settings.internal.spelling
|
|
|
|
? Settings.internal.spelling
|
2019-07-03 08:41:01 -04:00
|
|
|
: undefined
|
2019-07-09 14:12:30 -04:00
|
|
|
const host = settings && settings.host ? settings.host : 'localhost'
|
|
|
|
const port = settings && settings.port ? settings.port : 3005
|
|
|
|
|
|
|
|
if (!module.parent) {
|
|
|
|
// application entry point, called directly
|
2020-09-03 12:05:13 -04:00
|
|
|
mongodb
|
|
|
|
.waitForDb()
|
|
|
|
.then(() => {
|
|
|
|
app.listen(port, host, function (error) {
|
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
return logger.info(`spelling starting up, listening on ${host}:${port}`)
|
|
|
|
})
|
|
|
|
})
|
2021-07-13 07:04:47 -04:00
|
|
|
.catch(err => {
|
2020-09-03 12:05:13 -04:00
|
|
|
logger.fatal({ err }, 'Cannot connect to mongo. Exiting.')
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2019-07-03 08:41:01 -04:00
|
|
|
}
|
2019-07-09 14:12:30 -04:00
|
|
|
|
2020-07-22 04:22:19 -04:00
|
|
|
module.exports = app
|