Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What would be the canonical way to handle a file upload with Meteor?

share|improve this question
2  
That's a vague question... Are you asking how to handle it on the client side, or the server? Either way, I imagine (I've never used meteor) that the way to handle a file upload is pretty much the same as with any server. Client side: send POST request to a URL with the file as part of the request body. Server side: listen for POST requests at that URL, and when one comes in, read the request body and do whatever you want with any files it contains. That's basically how I've done it with node/spring... If you can be more specific about what you need help with, perhaps I can be more helpful... – JKing Apr 11 '12 at 3:25
9  
Hi JKing, you should check out Meteor, that's why it's an interesting question: meteor.com – Dave Apr 11 '12 at 13:28

6 Answers

up vote 7 down vote accepted

There currently doesn't seem to be a way to interact with the HTTP server or do anything related to HTTP.

The only things you can do is talk to server over the RPC methods exposed by Meteor.methods or talk to mongoDB directly over the mongoDB API exposed.

share|improve this answer
Thanks Raynos. Will probably try Luan's way and bypass the upload with JS uploaders to S3 or something of the sort. – Dave Apr 11 '12 at 13:29
1  
@Raynos Do you know if the exposed Mongo API supports GridFS? I can't see mention of it. – stevejalim Apr 12 '12 at 9:32
@stevejalim I dont know, go read the source code for the subset of the mongo API it supports – Raynos Apr 12 '12 at 13:47
1  
@stevejalim I looked at the source there isn't any GridFS support in minimongo (the package they use) – bobbywilson0 Apr 14 '12 at 3:15
Thanks @bobbywilson0 - I appreciate you doing the digging there! – stevejalim Apr 14 '12 at 8:03
show 4 more comments

I used http://filepicker.io. They'll upload the file, store it into your S3, and return you a URL where the file is. Then I just plop the url into a DB.

  1. Wget the filepicker script into your client folder.

    wget https://api.filepicker.io/v0/filepicker.js
    
  2. Insert a filepicker input tag

    <input type="filepicker" id="attachment">
    
  3. In the startup, initialize it:

    Meteor.startup( function() {
        filepicker.setKey("YOUR FILEPICKER API KEY");
        filepicker.constructWidget(document.getElementById('attachment'));
    });
    
  4. Attach a event handler

    Templates.template.events({
        'change #attachment': function(evt){
            console.log(evt.files);
        }
    });
    
share|improve this answer
Yay, filepicker.io! Totally worked like a charm with Heroku. – AbigailW Dec 25 '12 at 6:40

I've just come up with an implementation of file uploads using Meteor.methods and HTML5 File's API. Let me know what you think, DarĂ­o

share|improve this answer
So, those instructions worked surprisingly well. The solution was 10x easier than I expected, and the code pretty much worked flawlessly. That being said, the solution uploads the images directly to the node.js local file system. It worked great at first on local dev machines, but had problems with platform-as-a-service (PaaS) providers, including Heroku and Nodjitsu. Problem being that there are filesystem permission issues with this solution. So, this solution requires either hosting your own server, or having a more robust infrastructure, such as Amazon Elasticbeanstalk. – AbigailW Dec 25 '12 at 5:32

You could try uploading directly to amazon S3, doing some tricks with js uploaders and stuff. http://aws.amazon.com/articles/1434

share|improve this answer

For images, I use a method similar to Dario's except I don't write the file to disk. I store the data directly in the database as a field on the model. This works for me because I only need to support browsers that support the HTML5 File API. And I only need simple image support.

Template.myForm.events({
  'submit form': function(e, template) {
    e.preventDefault();
    var file = template.find('input type=["file"]').files[0];
    var reader = new FileReader();
    reader.onload = function(e) {
      // Add it to your model
      model.update(id, { $set: { src: e.target.result }});

      // Update an image on the page with the data
      $(template.find('img')).attr('src', e.target.result);
    }
    reader.readAsDataURL(file);
  }
});
share|improve this answer
Brilliant solution, thanks – rickyduck May 17 at 8:42

there is an atmosphere package called router which allows just that.

share|improve this answer
WTF? it is possible to create a file upload with the router package. Just create a POST method and send it a file. – Dr Gorb Jun 9 at 19:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.