2019-05-29 05:21:06 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
handle-callback-err,
|
|
|
|
max-len,
|
|
|
|
no-undef,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
let CompileController
|
|
|
|
const Metrics = require('metrics-sharelatex')
|
|
|
|
const ProjectGetter = require('../Project/ProjectGetter')
|
|
|
|
const CompileManager = require('./CompileManager')
|
|
|
|
const ClsiManager = require('./ClsiManager')
|
|
|
|
const logger = require('logger-sharelatex')
|
|
|
|
const request = require('request')
|
|
|
|
const sanitize = require('sanitizer')
|
|
|
|
const Settings = require('settings-sharelatex')
|
|
|
|
const AuthenticationController = require('../Authentication/AuthenticationController')
|
|
|
|
const UserGetter = require('../User/UserGetter')
|
|
|
|
const RateLimiter = require('../../infrastructure/RateLimiter')
|
|
|
|
const ClsiCookieManager = require('./ClsiCookieManager')(
|
|
|
|
Settings.apis.clsi != null ? Settings.apis.clsi.backendGroupName : undefined
|
|
|
|
)
|
|
|
|
const Path = require('path')
|
|
|
|
|
2019-06-11 09:13:42 -04:00
|
|
|
const COMPILE_TIMEOUT_MS = 10 * 60 * 1000
|
|
|
|
|
2019-05-29 05:21:06 -04:00
|
|
|
module.exports = CompileController = {
|
|
|
|
compile(req, res, next) {
|
2019-06-11 09:13:42 -04:00
|
|
|
res.setTimeout(COMPILE_TIMEOUT_MS)
|
2019-05-29 05:21:06 -04:00
|
|
|
const project_id = req.params.Project_id
|
2020-02-27 07:46:37 -05:00
|
|
|
const isAutoCompile = !!req.query.auto_compile
|
2019-05-29 05:21:06 -04:00
|
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
const options = {
|
|
|
|
isAutoCompile
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
|
|
|
|
if (req.body.rootDoc_id) {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.rootDoc_id = req.body.rootDoc_id
|
2020-02-11 08:19:47 -05:00
|
|
|
} else if (
|
2020-02-27 07:46:37 -05:00
|
|
|
req.body.settingsOverride &&
|
|
|
|
req.body.settingsOverride.rootDoc_id
|
2020-02-11 08:19:47 -05:00
|
|
|
) {
|
2019-05-29 05:21:06 -04:00
|
|
|
// Can be removed after deploy
|
|
|
|
options.rootDoc_id = req.body.settingsOverride.rootDoc_id
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
if (req.body.compiler) {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.compiler = req.body.compiler
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
if (req.body.draft) {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.draft = req.body.draft
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
if (['validate', 'error', 'silent'].includes(req.body.check)) {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.check = req.body.check
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
if (req.body.incrementalCompilesEnabled) {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.incrementalCompilesEnabled = true
|
|
|
|
}
|
2020-02-27 07:46:37 -05:00
|
|
|
|
|
|
|
CompileManager.compile(
|
|
|
|
project_id,
|
|
|
|
user_id,
|
|
|
|
options,
|
|
|
|
(
|
|
|
|
error,
|
|
|
|
status,
|
|
|
|
outputFiles,
|
|
|
|
clsiServerId,
|
|
|
|
limits,
|
|
|
|
validationProblems
|
|
|
|
) => {
|
|
|
|
if (error) {
|
2020-06-12 04:25:46 -04:00
|
|
|
Metrics.inc('compile-error')
|
2020-02-27 07:46:37 -05:00
|
|
|
return next(error)
|
|
|
|
}
|
2020-06-12 04:25:46 -04:00
|
|
|
Metrics.inc('compile-status', 1, { status: status })
|
2020-02-27 07:46:37 -05:00
|
|
|
res.json({
|
2020-02-11 08:19:47 -05:00
|
|
|
status,
|
|
|
|
outputFiles,
|
|
|
|
compileGroup: limits != null ? limits.compileGroup : undefined,
|
|
|
|
clsiServerId,
|
|
|
|
validationProblems,
|
|
|
|
pdfDownloadDomain: Settings.pdfDownloadDomain
|
|
|
|
})
|
2020-02-27 07:46:37 -05:00
|
|
|
}
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
stopCompile(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
return CompileManager.stopCompile(project_id, user_id, function(error) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return res.status(200).send()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// Used for submissions through the public API
|
|
|
|
compileSubmission(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
2019-06-11 09:13:42 -04:00
|
|
|
res.setTimeout(COMPILE_TIMEOUT_MS)
|
2019-05-29 05:21:06 -04:00
|
|
|
const { submission_id } = req.params
|
|
|
|
const options = {}
|
|
|
|
if ((req.body != null ? req.body.rootResourcePath : undefined) != null) {
|
|
|
|
options.rootResourcePath = req.body.rootResourcePath
|
|
|
|
}
|
|
|
|
if (req.body != null ? req.body.compiler : undefined) {
|
|
|
|
options.compiler = req.body.compiler
|
|
|
|
}
|
|
|
|
if (req.body != null ? req.body.draft : undefined) {
|
|
|
|
options.draft = req.body.draft
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
['validate', 'error', 'silent'].includes(
|
|
|
|
req.body != null ? req.body.check : undefined
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
options.check = req.body.check
|
|
|
|
}
|
|
|
|
options.compileGroup =
|
|
|
|
(req.body != null ? req.body.compileGroup : undefined) ||
|
|
|
|
Settings.defaultFeatures.compileGroup
|
|
|
|
options.timeout =
|
|
|
|
(req.body != null ? req.body.timeout : undefined) ||
|
|
|
|
Settings.defaultFeatures.compileTimeout
|
|
|
|
return ClsiManager.sendExternalRequest(
|
|
|
|
submission_id,
|
|
|
|
req.body,
|
|
|
|
options,
|
|
|
|
function(error, status, outputFiles, clsiServerId, validationProblems) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
res.contentType('application/json')
|
|
|
|
return res.status(200).send(
|
|
|
|
JSON.stringify({
|
|
|
|
status,
|
|
|
|
outputFiles,
|
|
|
|
clsiServerId,
|
|
|
|
validationProblems
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
_compileAsUser(req, callback) {
|
|
|
|
// callback with user_id if per-user, undefined otherwise
|
|
|
|
if (!Settings.disablePerUserCompiles) {
|
|
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
return callback(null, user_id)
|
|
|
|
} else {
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
}, // do a per-project compile, not per-user
|
|
|
|
|
|
|
|
_downloadAsUser(req, callback) {
|
|
|
|
// callback with user_id if per-user, undefined otherwise
|
|
|
|
if (!Settings.disablePerUserCompiles) {
|
|
|
|
const user_id = AuthenticationController.getLoggedInUserId(req)
|
|
|
|
return callback(null, user_id)
|
|
|
|
} else {
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
}, // do a per-project compile, not per-user
|
|
|
|
|
|
|
|
downloadPdf(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
Metrics.inc('pdf-downloads')
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
const isPdfjsPartialDownload =
|
|
|
|
req.query != null ? req.query.pdfng : undefined
|
|
|
|
const rateLimit = function(callback) {
|
|
|
|
if (isPdfjsPartialDownload) {
|
|
|
|
return callback(null, true)
|
|
|
|
} else {
|
|
|
|
const rateLimitOpts = {
|
|
|
|
endpointName: 'full-pdf-download',
|
|
|
|
throttle: 1000,
|
|
|
|
subjectName: req.ip,
|
|
|
|
timeInterval: 60 * 60
|
|
|
|
}
|
|
|
|
return RateLimiter.addCount(rateLimitOpts, callback)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ProjectGetter.getProject(project_id, { name: 1 }, function(
|
|
|
|
err,
|
|
|
|
project
|
|
|
|
) {
|
|
|
|
res.contentType('application/pdf')
|
|
|
|
const filename = `${CompileController._getSafeProjectName(project)}.pdf`
|
|
|
|
|
|
|
|
if (req.query.popupDownload) {
|
|
|
|
res.setContentDisposition('attachment', { filename })
|
|
|
|
} else {
|
|
|
|
res.setContentDisposition('', { filename })
|
|
|
|
}
|
|
|
|
|
|
|
|
return rateLimit(function(err, canContinue) {
|
|
|
|
if (err != null) {
|
|
|
|
logger.err({ err }, 'error checking rate limit for pdf download')
|
2020-05-06 06:02:16 -04:00
|
|
|
return res.sendStatus(500)
|
2019-05-29 05:21:06 -04:00
|
|
|
} else if (!canContinue) {
|
|
|
|
logger.log(
|
|
|
|
{ project_id, ip: req.ip },
|
|
|
|
'rate limit hit downloading pdf'
|
|
|
|
)
|
2020-05-06 06:02:16 -04:00
|
|
|
return res.sendStatus(500)
|
2019-05-29 05:21:06 -04:00
|
|
|
} else {
|
|
|
|
return CompileController._downloadAsUser(req, function(
|
|
|
|
error,
|
|
|
|
user_id
|
|
|
|
) {
|
|
|
|
const url = CompileController._getFileUrl(
|
|
|
|
project_id,
|
|
|
|
user_id,
|
|
|
|
req.params.build_id,
|
|
|
|
'output.pdf'
|
|
|
|
)
|
|
|
|
return CompileController.proxyToClsi(
|
|
|
|
project_id,
|
|
|
|
url,
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
_getSafeProjectName(project) {
|
|
|
|
const safeProjectName = project.name.replace(new RegExp('\\W', 'g'), '_')
|
|
|
|
return sanitize.escape(safeProjectName)
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteAuxFiles(req, res, next) {
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
return CompileController._compileAsUser(req, function(error, user_id) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return CompileManager.deleteAuxFiles(project_id, user_id, function(
|
|
|
|
error
|
|
|
|
) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return res.sendStatus(200)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// this is only used by templates, so is not called with a user_id
|
|
|
|
compileAndDownloadPdf(req, res, next) {
|
|
|
|
const { project_id } = req.params
|
|
|
|
// pass user_id as null, since templates are an "anonymous" compile
|
|
|
|
return CompileManager.compile(project_id, null, {}, function(err) {
|
|
|
|
if (err != null) {
|
|
|
|
logger.err(
|
|
|
|
{ err, project_id },
|
|
|
|
'something went wrong compile and downloading pdf'
|
|
|
|
)
|
|
|
|
res.sendStatus(500)
|
|
|
|
}
|
|
|
|
const url = `/project/${project_id}/output/output.pdf`
|
|
|
|
return CompileController.proxyToClsi(project_id, url, req, res, next)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
getFileFromClsi(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
return CompileController._downloadAsUser(req, function(error, user_id) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
const url = CompileController._getFileUrl(
|
|
|
|
project_id,
|
|
|
|
user_id,
|
|
|
|
req.params.build_id,
|
|
|
|
req.params.file
|
|
|
|
)
|
|
|
|
return CompileController.proxyToClsi(project_id, url, req, res, next)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
getFileFromClsiWithoutUser(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
const { submission_id } = req.params
|
|
|
|
const url = CompileController._getFileUrl(
|
|
|
|
submission_id,
|
|
|
|
null,
|
|
|
|
req.params.build_id,
|
|
|
|
req.params.file
|
|
|
|
)
|
|
|
|
const limits = {
|
|
|
|
compileGroup:
|
|
|
|
(req.body != null ? req.body.compileGroup : undefined) ||
|
|
|
|
Settings.defaultFeatures.compileGroup
|
|
|
|
}
|
|
|
|
return CompileController.proxyToClsiWithLimits(
|
|
|
|
submission_id,
|
|
|
|
url,
|
|
|
|
limits,
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
// compute a GET file url for a given project, user (optional), build (optional) and file
|
|
|
|
_getFileUrl(project_id, user_id, build_id, file) {
|
|
|
|
let url
|
|
|
|
if (user_id != null && build_id != null) {
|
|
|
|
url = `/project/${project_id}/user/${user_id}/build/${build_id}/output/${file}`
|
|
|
|
} else if (user_id != null) {
|
|
|
|
url = `/project/${project_id}/user/${user_id}/output/${file}`
|
|
|
|
} else if (build_id != null) {
|
|
|
|
url = `/project/${project_id}/build/${build_id}/output/${file}`
|
|
|
|
} else {
|
|
|
|
url = `/project/${project_id}/output/${file}`
|
|
|
|
}
|
|
|
|
return url
|
|
|
|
},
|
|
|
|
|
|
|
|
// compute a POST url for a project, user (optional) and action
|
|
|
|
_getUrl(project_id, user_id, action) {
|
|
|
|
let path = `/project/${project_id}`
|
|
|
|
if (user_id != null) {
|
|
|
|
path += `/user/${user_id}`
|
|
|
|
}
|
|
|
|
return `${path}/${action}`
|
|
|
|
},
|
|
|
|
|
|
|
|
proxySyncPdf(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
const { page, h, v } = req.query
|
|
|
|
if (!(page != null ? page.match(/^\d+$/) : undefined)) {
|
|
|
|
return next(new Error('invalid page parameter'))
|
|
|
|
}
|
|
|
|
if (!(h != null ? h.match(/^-?\d+\.\d+$/) : undefined)) {
|
|
|
|
return next(new Error('invalid h parameter'))
|
|
|
|
}
|
|
|
|
if (!(v != null ? v.match(/^-?\d+\.\d+$/) : undefined)) {
|
|
|
|
return next(new Error('invalid v parameter'))
|
|
|
|
}
|
|
|
|
// whether this request is going to a per-user container
|
|
|
|
return CompileController._compileAsUser(req, function(error, user_id) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
const url = CompileController._getUrl(project_id, user_id, 'sync/pdf')
|
|
|
|
const destination = { url, qs: { page, h, v } }
|
|
|
|
return CompileController.proxyToClsi(
|
|
|
|
project_id,
|
|
|
|
destination,
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
proxySyncCode(req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
const { file, line, column } = req.query
|
|
|
|
if (file == null) {
|
|
|
|
return next(new Error('missing file parameter'))
|
|
|
|
}
|
|
|
|
// Check that we are dealing with a simple file path (this is not
|
|
|
|
// strictly needed because synctex uses this parameter as a label
|
|
|
|
// to look up in the synctex output, and does not open the file
|
|
|
|
// itself). Since we have valid synctex paths like foo/./bar we
|
|
|
|
// allow those by replacing /./ with /
|
|
|
|
const testPath = file.replace('/./', '/')
|
|
|
|
if (Path.resolve('/', testPath) !== `/${testPath}`) {
|
|
|
|
return next(new Error('invalid file parameter'))
|
|
|
|
}
|
|
|
|
if (!(line != null ? line.match(/^\d+$/) : undefined)) {
|
|
|
|
return next(new Error('invalid line parameter'))
|
|
|
|
}
|
|
|
|
if (!(column != null ? column.match(/^\d+$/) : undefined)) {
|
|
|
|
return next(new Error('invalid column parameter'))
|
|
|
|
}
|
|
|
|
return CompileController._compileAsUser(req, function(error, user_id) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
const url = CompileController._getUrl(project_id, user_id, 'sync/code')
|
|
|
|
const destination = { url, qs: { file, line, column } }
|
|
|
|
return CompileController.proxyToClsi(
|
|
|
|
project_id,
|
|
|
|
destination,
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
proxyToClsi(project_id, url, req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
if (req.query != null ? req.query.compileGroup : undefined) {
|
|
|
|
return CompileController.proxyToClsiWithLimits(
|
|
|
|
project_id,
|
|
|
|
url,
|
|
|
|
{ compileGroup: req.query.compileGroup },
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return CompileManager.getProjectCompileLimits(project_id, function(
|
|
|
|
error,
|
|
|
|
limits
|
|
|
|
) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return CompileController.proxyToClsiWithLimits(
|
|
|
|
project_id,
|
|
|
|
url,
|
|
|
|
limits,
|
|
|
|
req,
|
|
|
|
res,
|
|
|
|
next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
proxyToClsiWithLimits(project_id, url, limits, req, res, next) {
|
|
|
|
if (next == null) {
|
|
|
|
next = function(error) {}
|
|
|
|
}
|
|
|
|
return ClsiCookieManager.getCookieJar(project_id, function(err, jar) {
|
|
|
|
let qs
|
|
|
|
if (err != null) {
|
2019-07-01 09:48:09 -04:00
|
|
|
logger.warn({ err }, 'error getting cookie jar for clsi request')
|
2019-05-29 05:21:06 -04:00
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
// expand any url parameter passed in as {url:..., qs:...}
|
|
|
|
if (typeof url === 'object') {
|
|
|
|
;({ url, qs } = url)
|
|
|
|
}
|
|
|
|
const compilerUrl = Settings.apis.clsi.url
|
|
|
|
url = `${compilerUrl}${url}`
|
|
|
|
const oneMinute = 60 * 1000
|
|
|
|
// the base request
|
|
|
|
const options = { url, method: req.method, timeout: oneMinute, jar }
|
|
|
|
// add any provided query string
|
|
|
|
if (qs != null) {
|
|
|
|
options.qs = qs
|
|
|
|
}
|
|
|
|
// if we have a build parameter, pass it through to the clsi
|
|
|
|
if (
|
|
|
|
(req.query != null ? req.query.pdfng : undefined) &&
|
|
|
|
(req.query != null ? req.query.build : undefined) != null
|
|
|
|
) {
|
|
|
|
// only for new pdf viewer
|
|
|
|
if (options.qs == null) {
|
|
|
|
options.qs = {}
|
|
|
|
}
|
|
|
|
options.qs.build = req.query.build
|
|
|
|
}
|
|
|
|
// if we are byte serving pdfs, pass through If-* and Range headers
|
|
|
|
// do not send any others, there's a proxying loop if Host: is passed!
|
|
|
|
if (req.query != null ? req.query.pdfng : undefined) {
|
|
|
|
const newHeaders = {}
|
|
|
|
for (let h in req.headers) {
|
|
|
|
const v = req.headers[h]
|
|
|
|
if (/^(If-|Range)/i.test(h)) {
|
|
|
|
newHeaders[h] = req.headers[h]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
options.headers = newHeaders
|
|
|
|
}
|
|
|
|
const proxy = request(options)
|
|
|
|
proxy.pipe(res)
|
|
|
|
return proxy.on('error', error =>
|
|
|
|
logger.warn({ err: error, url }, 'CLSI proxy error')
|
|
|
|
)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
wordCount(req, res, next) {
|
|
|
|
const project_id = req.params.Project_id
|
|
|
|
const file = req.query.file || false
|
|
|
|
return CompileController._compileAsUser(req, function(error, user_id) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return CompileManager.wordCount(project_id, user_id, file, function(
|
|
|
|
error,
|
|
|
|
body
|
|
|
|
) {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
res.contentType('application/json')
|
|
|
|
return res.send(body)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|