overleaf/services/spelling/app/js/SpellingAPIManager.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-07-03 08:41:01 -04:00
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* 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
*/
const ASpell = require('./ASpell')
const { callbackify } = require('util')
2020-06-03 05:14:44 -04:00
const OError = require('@overleaf/o-error')
2019-07-03 08:41:01 -04:00
// The max number of words checked in a single request
const REQUEST_LIMIT = 10000
2019-07-03 08:41:01 -04:00
const SpellingAPIManager = {}
const promises = {
async runRequest(token, request) {
if (!request.words) {
2020-06-03 05:14:44 -04:00
throw new OError('malformed JSON')
}
const lang = request.language || 'en'
// only the first 10K words are checked
const wordSlice = request.words.slice(0, REQUEST_LIMIT)
const misspellings = await ASpell.promises.checkWords(lang, wordSlice)
return { misspellings }
2021-07-13 07:04:47 -04:00
},
}
SpellingAPIManager.runRequest = callbackify(promises.runRequest)
SpellingAPIManager.promises = promises
module.exports = SpellingAPIManager