mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
31 lines
811 B
CoffeeScript
31 lines
811 B
CoffeeScript
express = require("express")
|
|
app = express()
|
|
|
|
module.exports = MockFileStoreApi =
|
|
files: {}
|
|
|
|
run: () ->
|
|
app.post "/project/:project_id/file/:file_id", (req, res, next) =>
|
|
chunks = []
|
|
req.on 'data', (chunk) ->
|
|
chunks.push(chunk)
|
|
|
|
req.on 'end', =>
|
|
content = Buffer.concat(chunks).toString()
|
|
{project_id, file_id} = req.params
|
|
@files[project_id] ?= {}
|
|
@files[project_id][file_id] = { content }
|
|
res.sendStatus 200
|
|
|
|
app.get "/project/:project_id/file/:file_id", (req, res, next) =>
|
|
{project_id, file_id} = req.params
|
|
{ content } = @files[project_id][file_id]
|
|
res.send content
|
|
|
|
app.listen 3009, (error) ->
|
|
throw error if error?
|
|
.on "error", (error) ->
|
|
console.error "error starting MockFileStoreApi:", error.message
|
|
process.exit(1)
|
|
|
|
MockFileStoreApi.run()
|