mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
e0d91eaa26
Downgrade all INFO logs to DEBUG GitOrigin-RevId: 05ed582ef0721fcada059f0ad158565f50feca27
31 lines
956 B
JavaScript
31 lines
956 B
JavaScript
const SpellingAPIManager = require('./SpellingAPIManager')
|
|
const logger = require('@overleaf/logger')
|
|
const metrics = require('@overleaf/metrics')
|
|
const OError = require('@overleaf/o-error')
|
|
|
|
function extractCheckRequestData(req) {
|
|
const token = req.params ? req.params.user_id : undefined
|
|
const wordCount =
|
|
req.body && req.body.words ? req.body.words.length : undefined
|
|
return { token, wordCount }
|
|
}
|
|
|
|
module.exports = {
|
|
check(req, res) {
|
|
metrics.inc('spelling-check', 0.1)
|
|
const { token, wordCount } = extractCheckRequestData(req)
|
|
logger.debug({ token, wordCount }, 'running check')
|
|
SpellingAPIManager.runRequest(token, req.body, function (error, result) {
|
|
if (error != null) {
|
|
logger.error(
|
|
OError.tag(error, 'error processing spelling request', {
|
|
user_id: token,
|
|
wordCount,
|
|
})
|
|
)
|
|
return res.sendStatus(500)
|
|
}
|
|
res.send(result)
|
|
})
|
|
},
|
|
}
|