Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issues with multer #207

Closed
aegyed91 opened this issue Aug 16, 2015 · 4 comments
Closed

issues with multer #207

aegyed91 opened this issue Aug 16, 2015 · 4 comments

Comments

@aegyed91
Copy link

Hello, I am using Multer with GraphicsMagick and ran into a few issues.

1, I am experiencing that whenever an error occurs and i redirect the user, the browser will hang and never redirect.

2, for some reason fileSize limit doesn't work, on big images. I tested this by uploading a 14mb JPG image, I didnt get back a LIMIT_FILE_SIZE error object, but req.file was undefined.

3, how can i remove the temp files from dest path? They don't seem to be removed automatically after upload finishes.

The code:

image-uploader.js (multer related part)

    upload: multer({
      dest: path.join('.tmp', 'uploads'),
      limits: {
        files: 1,
        fileSize: 5 * 1024 * 1024
      },
      fileFilter: function(req, file, cb) {
        var type = file.mimetype;
        if (type !== 'image/png' && type !== 'image/jpg' && type !== 'image/jpeg') {
          cb(new Error(lang.error.invalidImgType));
        } else {
          cb(null, true);
        }
      }
    }),

router.js

function uploadImage(req, res, next) {
    var upload = IMU.upload.single('avatar');

    upload(req, res, function(err) {
      if (err) {
        if (err.code === 'LIMIT_FILE_SIZE') err.message = lang.error.minImgSize;

        req.flash('error', err.message);
        return res.redirect('/en');
      }

      if (_.isUndefined(req.file)) {
        req.flash('error', lang.error.noImageUploaded);
        return res.redirect('/en');
      }

      IMU.handleImage(req.file, req.user.name, function(err, image) {
        if (err) {
          req.flash('error', err.message);
          return res.redirect('/en');
        }

        res.render('my-account', {
          status: 'Finished uploading',
          newImage: image
        });
      });
    })
  }
@LinusU
Copy link
Member

LinusU commented Aug 16, 2015

@tsm91 This is very possibly related to a stream bug in Node.js itself (nodejs/node#2323)

Could you please test the code in #205 and see if that solves the problems for you?

@aegyed91
Copy link
Author

@LinusU I tested it, i couldn't reproduce the browser hang. Tested on v0.12.7

In my case this fixes the first (and most serious) problem.

Any idea for the 3rd one? I saw there is a bug for my 2nd issue too

@kadishmal
Copy link

Today I upgraded multer from 0.x to 1.0.3 and encountered the same error. The test passes in Node 0.10.38 but fails in 0.10.30.

What I have noticed is that busboy successfully detects that the limit has been hit, and successfully emits the limit event. multer successfully receives this event and is about to call the callback, however, bosboy seems to fire the finish event before multer is able to call the abortWithError function.

I've added some logs and here we can see the above behavior.

file size 15761432 exceeded 15728640. Emitting `limit` in busboy...
LIMIT_FILE_SIZE in `multer`
fileUploadMiddlewares { '0': undefined } in my callback for multer `upload()`
Trace
    at /home1/user/TeamCity/work/a5695b8ef9056876/lib/projects/upload_controller.js:57:9
    at done (/home1/user/TeamCity/work/a5695b8ef9056876/node_modules/multer/lib/make-middleware.js:36:7)
    at indicateDone (/home1/user/TeamCity/work/a5695b8ef9056876/node_modules/multer/lib/make-middleware.js:40:51)
    at Busboy.<anonymous> (/home1/user/TeamCity/work/a5695b8ef9056876/node_modules/multer/lib/make-middleware.js:155:7)
    at Busboy.emit (events.js:117:20)
    at Busboy.emit (/home1/user/TeamCity/work/a5695b8ef9056876/node_modules/multer/node_modules/busboy/lib/main.js:31:35)
    at /home1/user/TeamCity/work/a5695b8ef9056876/node_modules/multer/node_modules/busboy/lib/types/multipart.js:53:13
    at process._tickCallback (node.js:419:13)

Have updated Node to 0.10.38 and then 0.10.40. Still fail.

Ok. I've rolled back to 0.1.8.

@LinusU
Copy link
Member

LinusU commented Sep 19, 2015

This should be fixed by #205 and released on npm as version 1.0.5 🚀

Please reopen if issue persists.

@LinusU LinusU closed this as completed Sep 19, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants