mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 07:51:55 +03:00
bf7692b151
Fixes #1227 - Removed deprecated `multipart` references. - Setup `busboy` to pass along file streams and do a naive parse of form values. - Updated logic in file storage and db import to handle file streams instead of the temporary files created by `multipart`.
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
var BusBoy = require('busboy'),
|
|
fs = require('fs-extra'),
|
|
path = require('path'),
|
|
os = require('os');
|
|
|
|
// ### ghostBusboy
|
|
// Process multipart file streams and copies them to a memory stream to be
|
|
// processed later.
|
|
function ghostBusBoy(req, res, next) {
|
|
var busboy,
|
|
tmpDir,
|
|
hasError = false;
|
|
|
|
if (req.method && req.method.match(/get/i)) {
|
|
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;
|
|
|
|
// If the filename is invalid, mark an error
|
|
if (!filename) {
|
|
hasError = true;
|
|
}
|
|
// If we've flagged any errors, do not process any streams
|
|
if (hasError) {
|
|
return file.emit('end');
|
|
}
|
|
|
|
filePath = path.join(tmpDir, filename || 'temp.tmp');
|
|
|
|
file.on('end', function () {
|
|
req.files[fieldname] = {
|
|
type: mimetype,
|
|
encoding: encoding,
|
|
name: filename,
|
|
path: filePath
|
|
};
|
|
});
|
|
|
|
busboy.on('limit', function () {
|
|
hasError = true;
|
|
res.send(413, { errorCode: 413, message: 'File size limit breached.' });
|
|
});
|
|
|
|
file.pipe(fs.createWriteStream(filePath));
|
|
});
|
|
|
|
busboy.on('field', function (fieldname, val) {
|
|
req.body[fieldname] = val;
|
|
});
|
|
|
|
busboy.on('end', function () {
|
|
next();
|
|
});
|
|
|
|
req.pipe(busboy);
|
|
}
|
|
|
|
module.exports = ghostBusBoy; |