Created
March 30, 2012 19:06
-
-
Save simenbrekken/2254108 to your computer and use it in GitHub Desktop.
Store and retrieve binary file in MongoDB from Express via Mongolian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create | |
app.post('/api/attachments/stage', function(req, res) { | |
var attachments = db.gridfs('attachments'); | |
var file = attachments.create({ | |
filename: shortid.generate() | |
}); | |
var stream = file.writeStream(); | |
stream.on('close', function() { | |
var attachment = { | |
id: file.filename | |
}; | |
res.send(attachment, 201); | |
}); | |
req.pipe(stream); | |
}); | |
// Read | |
app.get('/api/attachments/:id', function(req, res) { | |
var attachments = db.gridfs('attachments'); | |
attachments.findOne(req.params.id, function(err, file) { | |
if (err) return res.end(404); | |
var stream = file.readStream(); | |
stream.pipe(res); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment