mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #45 from sharelatex/bg-avoid-text-html-content-type-in-responses
use explicit json content-type to avoid security issues with text/html
This commit is contained in:
commit
11f07d1f09
2 changed files with 11 additions and 8 deletions
|
@ -25,7 +25,7 @@ module.exports = HttpController =
|
|||
logger.log project_id: project_id, doc_id: doc_id, "got doc via http"
|
||||
if !lines? or !version?
|
||||
return next(new Errors.NotFoundError("document not found"))
|
||||
res.send JSON.stringify
|
||||
res.json
|
||||
id: doc_id
|
||||
lines: lines
|
||||
version: version
|
||||
|
|
|
@ -22,6 +22,7 @@ describe "HttpController", ->
|
|||
@next = sinon.stub()
|
||||
@res =
|
||||
send: sinon.stub()
|
||||
json: sinon.stub()
|
||||
|
||||
describe "getDoc", ->
|
||||
beforeEach ->
|
||||
|
@ -47,15 +48,15 @@ describe "HttpController", ->
|
|||
.should.equal true
|
||||
|
||||
it "should return the doc as JSON", ->
|
||||
@res.send
|
||||
.calledWith(JSON.stringify({
|
||||
@res.json
|
||||
.calledWith({
|
||||
id: @doc_id
|
||||
lines: @lines
|
||||
version: @version
|
||||
ops: []
|
||||
ranges: @ranges
|
||||
pathname: @pathname
|
||||
}))
|
||||
})
|
||||
.should.equal true
|
||||
|
||||
it "should log the request", ->
|
||||
|
@ -68,7 +69,7 @@ describe "HttpController", ->
|
|||
|
||||
describe "when recent ops are requested", ->
|
||||
beforeEach ->
|
||||
@DocumentManager.getDocAndRecentOpsWithLock = sinon.stub().callsArgWith(3, null, @lines, @version, @ops)
|
||||
@DocumentManager.getDocAndRecentOpsWithLock = sinon.stub().callsArgWith(3, null, @lines, @version, @ops, @ranges, @pathname)
|
||||
@req.query = fromVersion: "#{@fromVersion}"
|
||||
@HttpController.getDoc(@req, @res, @next)
|
||||
|
||||
|
@ -78,13 +79,15 @@ describe "HttpController", ->
|
|||
.should.equal true
|
||||
|
||||
it "should return the doc as JSON", ->
|
||||
@res.send
|
||||
.calledWith(JSON.stringify({
|
||||
@res.json
|
||||
.calledWith({
|
||||
id: @doc_id
|
||||
lines: @lines
|
||||
version: @version
|
||||
ops: @ops
|
||||
}))
|
||||
ranges: @ranges
|
||||
pathname: @pathname
|
||||
})
|
||||
.should.equal true
|
||||
|
||||
it "should log the request", ->
|
||||
|
|
Loading…
Reference in a new issue