mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
f17b320a7b
- use hex instead of base64 as this can cause errors when trying to reopen the file due to characters like '/' appearing - added basic console log to errors.
86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
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,
|
|
tmpDir,
|
|
hasError = false;
|
|
|
|
// busboy is only used for POST requests
|
|
if (req.method && !req.method.match(/post/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,
|
|
tmpFileName,
|
|
md5 = crypto.createHash('md5');
|
|
|
|
// 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');
|
|
}
|
|
|
|
// 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
|
|
};
|
|
});
|
|
|
|
busboy.on('limit', function () {
|
|
hasError = true;
|
|
res.send(413, { errorCode: 413, message: 'File size limit breached.' });
|
|
});
|
|
|
|
busboy.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);
|
|
|
|
});
|
|
|
|
busboy.on('field', function (fieldname, val) {
|
|
req.body[fieldname] = val;
|
|
});
|
|
|
|
busboy.on('end', function () {
|
|
next();
|
|
});
|
|
|
|
req.pipe(busboy);
|
|
}
|
|
|
|
module.exports = ghostBusBoy; |