Ghost/core/server/middleware/ghost-busboy.js

81 lines
2.1 KiB
JavaScript
Raw Normal View History

var BusBoy = require('busboy'),
fs = require('fs-extra'),
path = require('path'),
os = require('os'),
crypto = require('crypto');
// ### ghostBusboy
// Process multipart file streams
function ghostBusBoy(req, res, next) {
var busboy,
stream,
2014-03-02 05:37:15 +04:00
tmpDir;
// busboy is only used for POST requests
2014-03-02 05:37:15 +04:00
if (req.method && !/post/i.test(req.method)) {
return next();
}
busboy = new BusBoy({headers: req.headers});
tmpDir = os.tmpdir();
req.files = req.files || {};
req.body = req.body || {};
busboy.on('file', function (fieldname, file, filename, encoding, mimetype) {
var filePath,
tmpFileName,
md5 = crypto.createHash('md5');
2014-03-02 05:37:15 +04:00
// If the filename is invalid, skip the stream
if (!filename) {
2014-03-02 05:37:15 +04:00
return file.resume();
}
// Create an MD5 hash of original filename
md5.update(filename, 'utf8');
tmpFileName = (new Date()).getTime() + md5.digest('hex');
filePath = path.join(tmpDir, tmpFileName || 'temp.tmp');
file.on('end', function () {
req.files[fieldname] = {
type: mimetype,
encoding: encoding,
name: filename,
path: filePath
};
});
2014-03-02 05:37:15 +04:00
file.on('error', function (error) {
console.log('Error', 'Something went wrong uploading the file', error);
});
stream = fs.createWriteStream(filePath);
stream.on('error', function (error) {
console.log('Error', 'Something went wrong uploading the file', error);
});
file.pipe(stream);
});
2014-03-02 05:37:15 +04:00
busboy.on('error', function (error) {
console.log('Error', 'Something went wrong parsing the form', error);
res.status(500).send({code: 500, message: 'Could not parse upload completely.'});
2014-03-02 05:37:15 +04:00
});
busboy.on('field', function (fieldname, val) {
req.body[fieldname] = val;
});
2014-03-02 05:37:15 +04:00
busboy.on('finish', function () {
next();
});
req.pipe(busboy);
}
module.exports = ghostBusBoy;