| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- Metrics = require "metrics-sharelatex"
- Project = require("../../models/Project").Project
- CompileManager = require("./CompileManager")
- ClsiManager = require("./ClsiManager")
- logger = require "logger-sharelatex"
- request = require "request"
- Settings = require "settings-sharelatex"
- AuthenticationController = require "../Authentication/AuthenticationController"
- UserGetter = require "../User/UserGetter"
- RateLimiter = require("../../infrastructure/RateLimiter")
- ClsiCookieManager = require("./ClsiCookieManager")
- Path = require("path")
- module.exports = CompileController =
- compile: (req, res, next = (error) ->) ->
- res.setTimeout(5 * 60 * 1000)
- project_id = req.params.Project_id
- isAutoCompile = !!req.query?.auto_compile
- user_id = AuthenticationController.getLoggedInUserId req
- options = {
- isAutoCompile: isAutoCompile
- }
- if req.body?.rootDoc_id?
- options.rootDoc_id = req.body.rootDoc_id
- else if req.body?.settingsOverride?.rootDoc_id? # Can be removed after deploy
- options.rootDoc_id = req.body.settingsOverride.rootDoc_id
- if req.body?.compiler
- options.compiler = req.body.compiler
- if req.body?.draft
- options.draft = req.body.draft
- if req.body?.check in ['validate', 'error', 'silent']
- options.check = req.body.check
- logger.log {options:options, project_id:project_id, user_id:user_id}, "got compile request"
- CompileManager.compile project_id, user_id, options, (error, status, outputFiles, clsiServerId, limits, validationProblems) ->
- return next(error) if error?
- res.contentType("application/json")
- res.status(200).send JSON.stringify {
- status: status
- outputFiles: outputFiles
- compileGroup: limits?.compileGroup
- clsiServerId:clsiServerId
- validationProblems:validationProblems
- }
- stopCompile: (req, res, next = (error) ->) ->
- project_id = req.params.Project_id
- user_id = AuthenticationController.getLoggedInUserId req
- logger.log {project_id:project_id, user_id:user_id}, "stop compile request"
- CompileManager.stopCompile project_id, user_id, (error) ->
- return next(error) if error?
- res.status(200).send()
- _compileAsUser: (req, callback) ->
- # callback with user_id if per-user, undefined otherwise
- if not Settings.disablePerUserCompiles
- user_id = AuthenticationController.getLoggedInUserId req
- return callback(null, user_id)
- else
- callback() # do a per-project compile, not per-user
- _downloadAsUser: (req, callback) ->
- # callback with user_id if per-user, undefined otherwise
- if not Settings.disablePerUserCompiles
- user_id = AuthenticationController.getLoggedInUserId req
- return callback(null, user_id)
- else
- callback() # do a per-project compile, not per-user
- downloadPdf: (req, res, next = (error) ->)->
- Metrics.inc "pdf-downloads"
- project_id = req.params.Project_id
- isPdfjsPartialDownload = req.query?.pdfng
- rateLimit = (callback)->
- if isPdfjsPartialDownload
- callback null, true
- else
- rateLimitOpts =
- endpointName: "full-pdf-download"
- throttle: 1000
- subjectName : req.ip
- timeInterval : 60 * 60
- RateLimiter.addCount rateLimitOpts, callback
- Project.findById project_id, {name: 1}, (err, project)->
- res.contentType("application/pdf")
- if !!req.query.popupDownload
- logger.log project_id: project_id, "download pdf as popup download"
- res.header('Content-Disposition', "attachment; filename=#{project.getSafeProjectName()}.pdf")
- else
- logger.log project_id: project_id, "download pdf to embed in browser"
- res.header('Content-Disposition', "filename=#{project.getSafeProjectName()}.pdf")
- rateLimit (err, canContinue)->
- if err?
- logger.err err:err, "error checking rate limit for pdf download"
- return res.send 500
- else if !canContinue
- logger.log project_id:project_id, ip:req.ip, "rate limit hit downloading pdf"
- res.send 500
- else
- CompileController._downloadAsUser req, (error, user_id) ->
- url = CompileController._getFileUrl project_id, user_id, req.params.build_id, "output.pdf"
- CompileController.proxyToClsi(project_id, url, req, res, next)
- deleteAuxFiles: (req, res, next) ->
- project_id = req.params.Project_id
- CompileController._compileAsUser req, (error, user_id) ->
- return next(error) if error?
- CompileManager.deleteAuxFiles project_id, user_id, (error) ->
- return next(error) if error?
- res.sendStatus(200)
- # this is only used by templates, so is not called with a user_id
- compileAndDownloadPdf: (req, res, next)->
- project_id = req.params.project_id
- # pass user_id as null, since templates are an "anonymous" compile
- CompileManager.compile project_id, null, {}, (err)->
- if err?
- logger.err err:err, project_id:project_id, "something went wrong compile and downloading pdf"
- res.sendStatus 500
- url = "/project/#{project_id}/output/output.pdf"
- CompileController.proxyToClsi project_id, url, req, res, next
- getFileFromClsi: (req, res, next = (error) ->) ->
- project_id = req.params.Project_id
- CompileController._downloadAsUser req, (error, user_id) ->
- return next(error) if error?
- url = CompileController._getFileUrl project_id, user_id, req.params.build_id, req.params.file
- CompileController.proxyToClsi(project_id, url, 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) ->
- if user_id? and build_id?
- url = "/project/#{project_id}/user/#{user_id}/build/#{build_id}/output/#{file}"
- else if user_id?
- url = "/project/#{project_id}/user/#{user_id}/output/#{file}"
- else if build_id?
- 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) ->
- path = "/project/#{project_id}"
- path += "/user/#{user_id}" if user_id?
- return "#{path}/#{action}"
- proxySyncPdf: (req, res, next = (error) ->) ->
- project_id = req.params.Project_id
- {page, h, v} = req.query
- if not page?.match(/^\d+$/)
- return next(new Error("invalid page parameter"))
- if not h?.match(/^-?\d+\.\d+$/)
- return next(new Error("invalid h parameter"))
- if not v?.match(/^-?\d+\.\d+$/)
- return next(new Error("invalid v parameter"))
- # whether this request is going to a per-user container
- CompileController._compileAsUser req, (error, user_id) ->
- return next(error) if error?
- url = CompileController._getUrl(project_id, user_id, "sync/pdf")
- destination = {url: url, qs: {page, h, v}}
- CompileController.proxyToClsi(project_id, destination, req, res, next)
- proxySyncCode: (req, res, next = (error) ->) ->
- project_id = req.params.Project_id
- {file, line, column} = req.query
- if not file?
- 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 /
- testPath = file.replace '/./', '/'
- if Path.resolve("/", testPath) isnt "/#{testPath}"
- return next(new Error("invalid file parameter"))
- if not line?.match(/^\d+$/)
- return next(new Error("invalid line parameter"))
- if not column?.match(/^\d+$/)
- return next(new Error("invalid column parameter"))
- CompileController._compileAsUser req, (error, user_id) ->
- return next(error) if error?
- url = CompileController._getUrl(project_id, user_id, "sync/code")
- destination = {url:url, qs: {file, line, column}}
- CompileController.proxyToClsi(project_id, destination, req, res, next)
- proxyToClsi: (project_id, url, req, res, next = (error) ->) ->
- if req.query?.compileGroup
- CompileController.proxyToClsiWithLimits(project_id, url, {compileGroup: req.query.compileGroup}, req, res, next)
- else
- CompileManager.getProjectCompileLimits project_id, (error, limits) ->
- return next(error) if error?
- CompileController.proxyToClsiWithLimits(project_id, url, limits, req, res, next)
- proxyToClsiWithLimits: (project_id, url, limits, req, res, next = (error) ->) ->
- ClsiCookieManager.getCookieJar project_id, (err, jar)->
- if err?
- logger.err err:err, "error getting cookie jar for clsi request"
- return callback(err)
- # expand any url parameter passed in as {url:..., qs:...}
- if typeof url is "object"
- {url, qs} = url
- compilerUrl = Settings.apis.clsi.url
- url = "#{compilerUrl}#{url}"
- logger.log url: url, "proxying to CLSI"
- oneMinute = 60 * 1000
- # the base request
- options = { url: url, method: req.method, timeout: oneMinute, jar : jar }
- # add any provided query string
- options.qs = qs if qs?
- # if we have a build parameter, pass it through to the clsi
- if req.query?.pdfng && req.query?.build? # only for new pdf viewer
- 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?.pdfng
- newHeaders = {}
- for h, v of req.headers
- newHeaders[h] = req.headers[h] if h.match /^(If-|Range)/i
- options.headers = newHeaders
- proxy = request(options)
- proxy.pipe(res)
- proxy.on "error", (error) ->
- logger.warn err: error, url: url, "CLSI proxy error"
- wordCount: (req, res, next) ->
- project_id = req.params.Project_id
- file = req.query.file || false
- CompileController._compileAsUser req, (error, user_id) ->
- return next(error) if error?
- CompileManager.wordCount project_id, user_id, file, (error, body) ->
- return next(error) if error?
- res.contentType("application/json")
- res.send body
|