codecombat/server/routes/file.coffee

164 lines
5.2 KiB
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
winston = require 'winston'
Grid = require 'gridfs-stream'
fs = require 'fs'
request = require 'request'
mongoose = require('mongoose')
errors = require '../commons/errors'
2014-01-03 13:32:13 -05:00
module.exports.setupRoutes = (app) ->
app.all '/file*', (req, res) ->
return fileGet(req, res) if req.route.method is 'get'
return filePost(req, res) if req.route.method is 'post'
return errors.badMethod(res)
2014-01-03 13:32:13 -05:00
fileGet = (req, res) ->
path = req.path[6..]
isFolder = false
try
objectId = mongoose.Types.ObjectId(path)
query = objectId
catch e
path = path.split('/')
filename = path[path.length-1]
path = path[...path.length-1].join('/')
query =
'metadata.path': path
if filename then query.filename = filename else isFolder = true
if isFolder
Grid.gfs.collection('media').find query, (err, cursor) ->
return errors.serverError(res) if err
2014-01-03 13:32:13 -05:00
results = cursor.toArray (err, results) ->
return errors.serverError(res) if err
2014-01-03 13:32:13 -05:00
res.setHeader('Content-Type', 'text/json')
res.send(results)
res.end()
else
Grid.gfs.collection('media').findOne query, (err, filedata) =>
return errors.notFound(res) if not filedata
2014-01-03 13:32:13 -05:00
readstream = Grid.gfs.createReadStream({_id: filedata._id, root:'media'})
if req.headers['if-modified-since'] is filedata.uploadDate
res.status(304)
return res.end()
res.setHeader('Content-Type', filedata.contentType)
res.setHeader('Last-Modified', filedata.uploadDate)
res.setHeader('Cache-Control', 'public')
readstream.pipe(res)
handleStreamEnd(res, res)
postFileSchema =
type: 'object'
properties:
# source
url: { type: 'string', description: 'The url to download the file from.' }
postName: { type: 'string', description: 'The input field this file was sent on.' }
2014-01-06 15:37:35 -05:00
b64png: { type: 'string', description: 'Raw png data to upload.' }
2014-01-03 13:32:13 -05:00
# options
force: { type: 'string', 'default': '', description: 'Whether to overwrite existing files (as opposed to throwing an error).' }
# metadata
filename: { type: 'string', description: 'What the file will be named in the system.' }
mimetype: { type: 'string' }
name: { type: 'string', description: 'Human readable and searchable string.' }
description: { type: 'string' }
path: { type: 'string', description: 'What "folder" this file goes into.' }
required: ['filename', 'mimetype', 'path']
filePost = (req, res) ->
return errors.forbidden(res) unless req.user.isAdmin()
2014-01-03 13:32:13 -05:00
options = req.body
tv4 = require('tv4').tv4
valid = tv4.validate(options, postFileSchema)
2014-01-06 15:37:35 -05:00
hasSource = options.url or options.postName or options.b64png
# TODO : give tv4.error to badInput
return errors.badInput(res) if (not valid) or (not hasSource)
2014-01-03 13:32:13 -05:00
return saveURL(req, res) if options.url
return saveFile(req, res) if options.postName
2014-01-06 15:37:35 -05:00
return savePNG(req, res) if options.b64png
2014-01-03 13:32:13 -05:00
saveURL = (req, res) ->
options = createPostOptions(req)
checkExistence options, res, req.body.force, (err) ->
return errors.serverError(res) if err
2014-01-03 13:32:13 -05:00
writestream = Grid.gfs.createWriteStream(options)
request(req.body.url).pipe(writestream)
handleStreamEnd(res, writestream)
saveFile = (req, res) ->
options = createPostOptions(req)
checkExistence options, res, req.body.force, (err) ->
return if err
writestream = Grid.gfs.createWriteStream(options)
f = req.files[req.body.postName]
fileStream = fs.createReadStream(f.path)
fileStream.pipe(writestream)
handleStreamEnd(res, writestream)
2014-01-06 15:37:35 -05:00
savePNG = (req, res) ->
options = createPostOptions(req)
checkExistence options, res, req.body.force, (err) ->
return errors.serverError(res) if err
2014-01-06 15:37:35 -05:00
writestream = Grid.gfs.createWriteStream(options)
img = new Buffer(req.body.b64png, 'base64')
streamBuffers = require 'stream-buffers'
myReadableStreamBuffer = new streamBuffers.ReadableStreamBuffer({frequency: 10,chunkSize: 2048})
myReadableStreamBuffer.put(img)
myReadableStreamBuffer.pipe(writestream)
handleStreamEnd(res, writestream)
2014-01-03 13:32:13 -05:00
checkExistence = (options, res, force, done) ->
q = {
filename: options.filename
'metadata.path': options.metadata.path
}
Grid.gfs.collection('media').find(q).toArray (err, files) ->
if files.length and not force
errors.conflict(res)
2014-01-03 13:32:13 -05:00
done(true)
else if files.length
2014-01-09 01:30:00 -05:00
q = { _id: files[0]._id }
2014-01-03 13:32:13 -05:00
q.root = 'media'
Grid.gfs.remove q, (err) ->
return errors.serverError(res) if err
2014-01-03 13:32:13 -05:00
done()
else
done()
handleStreamEnd = (res, stream) ->
stream.on 'close', (f) ->
res.send(f)
res.end()
stream.on 'error', ->
return errors.serverError(res)
2014-01-03 13:32:13 -05:00
CHUNK_SIZE = 1024*256
createPostOptions = (req) ->
unless req.body.name
name = req.body.filename.split('.')[0]
req.body.name = _.str.humanize(name)
path = req.body.path or ''
path = path[1...] if path and path[0] is '/'
path = path[...path.length-2] if path and path[path.length-1] is '/'
options =
mode: 'w'
filename: req.body.filename
chunk_size: CHUNK_SIZE
root: 'media'
content_type: req.body.mimetype
metadata:
name: req.body.name
path: path
creator: ''+req.user._id
options.metadata.description = req.body.description if req.body.description?
options