mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Revert "Revert "decaf clean up""
This reverts commit 669ce8b6411309cbab3162cf94bd03399581eeb4. GitOrigin-RevId: 4a3933668a0d01912e748c164581bcb9bbded0dd
This commit is contained in:
parent
6185fe8a30
commit
a581ef7609
1 changed files with 20 additions and 40 deletions
|
@ -10,7 +10,6 @@
|
|||
/*
|
||||
* 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
|
||||
*/
|
||||
|
@ -35,67 +34,54 @@ const COMPILE_TIMEOUT_MS = 10 * 60 * 1000
|
|||
|
||||
module.exports = CompileController = {
|
||||
compile(req, res, next) {
|
||||
if (next == null) {
|
||||
next = function(error) {}
|
||||
}
|
||||
res.setTimeout(COMPILE_TIMEOUT_MS)
|
||||
const project_id = req.params.Project_id
|
||||
const isAutoCompile = !!(req.query != null
|
||||
? req.query.auto_compile
|
||||
: undefined)
|
||||
const isAutoCompile = !!req.query.auto_compile
|
||||
const user_id = AuthenticationController.getLoggedInUserId(req)
|
||||
const options = {
|
||||
isAutoCompile
|
||||
}
|
||||
if ((req.body != null ? req.body.rootDoc_id : undefined) != null) {
|
||||
|
||||
if (req.body.rootDoc_id) {
|
||||
options.rootDoc_id = req.body.rootDoc_id
|
||||
} else if (
|
||||
__guard__(
|
||||
req.body != null ? req.body.settingsOverride : undefined,
|
||||
x => x.rootDoc_id
|
||||
) != null
|
||||
) {
|
||||
} else if (req.body.settingsOverride && req.body.settingsOverride.rootDoc_id) {
|
||||
// Can be removed after deploy
|
||||
options.rootDoc_id = req.body.settingsOverride.rootDoc_id
|
||||
}
|
||||
if (req.body != null ? req.body.compiler : undefined) {
|
||||
if (req.body.compiler) {
|
||||
options.compiler = req.body.compiler
|
||||
}
|
||||
if (req.body != null ? req.body.draft : undefined) {
|
||||
if (req.body.draft) {
|
||||
options.draft = req.body.draft
|
||||
}
|
||||
if (
|
||||
['validate', 'error', 'silent'].includes(
|
||||
req.body != null ? req.body.check : undefined
|
||||
)
|
||||
['validate', 'error', 'silent'].includes(req.body.check)
|
||||
) {
|
||||
options.check = req.body.check
|
||||
}
|
||||
if (req.body != null ? req.body.incrementalCompilesEnabled : undefined) {
|
||||
if (req.body.incrementalCompilesEnabled) {
|
||||
options.incrementalCompilesEnabled = true
|
||||
}
|
||||
return CompileManager.compile(project_id, user_id, options, function(
|
||||
|
||||
CompileManager.compile(project_id, user_id, options, (
|
||||
error,
|
||||
status,
|
||||
outputFiles,
|
||||
clsiServerId,
|
||||
limits,
|
||||
validationProblems
|
||||
) {
|
||||
if (error != null) {
|
||||
) => {
|
||||
if (error) {
|
||||
return next(error)
|
||||
}
|
||||
res.contentType('application/json')
|
||||
return res.status(200).send(
|
||||
JSON.stringify({
|
||||
status,
|
||||
outputFiles,
|
||||
compileGroup: limits != null ? limits.compileGroup : undefined,
|
||||
clsiServerId,
|
||||
validationProblems,
|
||||
pdfDownloadDomain: Settings.pdfDownloadDomain
|
||||
})
|
||||
)
|
||||
res.json({
|
||||
status,
|
||||
outputFiles,
|
||||
compileGroup: limits != null ? limits.compileGroup : undefined,
|
||||
clsiServerId,
|
||||
validationProblems,
|
||||
pdfDownloadDomain: Settings.pdfDownloadDomain
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
|
@ -540,9 +526,3 @@ module.exports = CompileController = {
|
|||
})
|
||||
}
|
||||
}
|
||||
|
||||
function __guard__(value, transform) {
|
||||
return typeof value !== 'undefined' && value !== null
|
||||
? transform(value)
|
||||
: undefined
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue