1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-11 10:24:04 +00:00

Add ability to request the doc as plain text, rather than a json object.

This makes it much easier to stream-parse the document.
This commit is contained in:
Shane Kilkelly 2015-12-18 13:36:25 +00:00
parent 1ea13a74dd
commit e684968a59

View file

@ -6,15 +6,20 @@ module.exports =
getDocument: (req, res, next = (error) ->) ->
project_id = req.params.Project_id
doc_id = req.params.doc_id
plain = req?.query?.plain == 'true'
logger.log doc_id:doc_id, project_id:project_id, "receiving get document request from api (docupdater)"
ProjectEntityHandler.getDoc project_id, doc_id, (error, lines, rev) ->
if error?
logger.err err:error, doc_id:doc_id, project_id:project_id, "error finding element for getDocument"
return next(error)
res.type "json"
res.send JSON.stringify {
lines: lines
}
if plain
res.type "text/plain"
res.send lines.join('\n')
else
res.type "json"
res.send JSON.stringify {
lines: lines
}
setDocument: (req, res, next = (error) ->) ->
project_id = req.params.Project_id