I’d love to give my users the option to upload user-images/avatars
and I am searching for an easy solution with the following features:
a secure image-upload (S3 would be good)
a “show Initials if NO image is available”-fallback
the ability to load images from facebook / twitter, with manual text-fields for the user to enter their twitter#, or facebook-id. On accounts I am just using accounts-password, so I need manual text-fields.
So far https://github.com/okgrow/meteor-image-upload/ looks like the best solution out there - altough it is NOT actively supported anymore and based on CollectionFS (which afaik is also running out of maintainers).
Meteor-Files is the current best option with Meteor. Their wiki has a guide for using S3. Other things you’re gonna have to implement yourself with most file upload solutions.
Update: Today I checked out S3 and gave up due to configuration hassles. I was NOT able to quickly configure S3 in a way that makes me feel good putting out the api-keys. Furthermore I realized that it would good to have the option to only PUBLISH images to logged in users… so right now I am playing around with https://github.com/vsivsi/meteor-file-collection, but it lacks autoform support.
Yes, that is the one I mean. I decided to go with a Dropzone+Express based solution for handling uploads, but it was easy since the app already used a microservice approach. Might be something you’d wanna consider, since I found all the Meteor-based solutions lacking in one way or another.
after successully implementing image-upload using GridFS I want to give future readers the following summary:
NOTE that galaxy does NOT have persistent storage, so when uploading images you need to have an external storage, like GridFS, S3, etc
I did NOT have much luck with https://github.com/VeliovGroup/Meteor-Files package. In my eyes GridFS implementation is NOT implemented well. There is a lot of manual work you have to do and there is missing a REAL drop-in API to get GridFS working out of the box. Still thanks again for the author for being really responsive, BUT after all it has been a timewaster for me.
My recommendation is to go with the AWESOME(!!!) https://github.com/jalik/jalik-ufs which has worked really really well for me out of the box. The API is really clean and when looking at its codebase you can tell that it is implemented really clean. All you have to do to get GridFS working is installing an additional package.