This package is no longer supporting meteor releases before 0.9.0. S3 provides a simple way for uploading files to the Amazon S3 service with a progress bar. This is useful for uploading images and files that you want accesible to the public. S3 is built on Knox, a module that becomes available server-side after installing this package.
If you want to keep using the older version of this package check it out using meteor add lepozepo:s3@=3.0.1
$ meteor add lepozepo:s3
Define your Amazon S3 credentials. SERVER SIDE.
S3.config = {
key: 'amazonKey',
secret: 'amazonSecret',
bucket: 'bucketName'
};
Create a file input and progress indicator. CLIENT SIDE.
Create a function to upload the files and a helper to see the uploads progress. CLIENT SIDE.
Template.s3_tester.events({
"click button.upload": function(){
var files = $("input.file_bag")[0].files
S3.upload(files,"/subfolder",function(e,r){
console.log(r);
});
}
})
Template.s3_tester.helpers({
"files": function(){
return S3.collection.find();
}
})
For all of this to work you need to create an aws account. On their website create navigate to S3 and create a bucket. Navigate to your bucket and on the top right side you'll see your account name. Click it and go to Security Credentials. Once you're in Security Credentials create a new access key under the Access Keys (Access Key ID and Secret Access Key) tab. This is the info you will use for the first step of this plug. Go back to your bucket and select the properties OF THE BUCKET, not a file. Under Static Website Hosting you can Enable website hosting, to do that first upload a blank index.html file and then enable it. YOU'RE NOT DONE.
You need to set permissions so that everyone can see what's in there. Under the Permissions tab click Edit CORS Configuration and paste this:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
</CORSRule>
</CORSConfiguration>
Save it. Now click Edit bucket policy and paste this, REPLACE THE BUCKET NAME WITH YOUR OWN:
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YOURBUCKETNAMEHERE/*"
}
]
}
Enjoy, this took me a long time to figure out and I'm sharing it so that nobody has to go through all that. NOTE: It might take a couple of hours before you can actually start uploading to S3. Amazon takes some time to make things work.
This is a null Meteor.Collection that exists only on the users client. After the user leaves the page or refreshes, the collection disappears forever.
This is the meteor stream that is created between the server and the S3.collection object on the client to relay information. You probably don't need access to this.
This is the upload function that manages all the dramatic things you need to do for something so essentially simple.
Parameters:
- files: Must be a FileList object. You can get this via jQuery via $("input[type='file']")[0].files
- path: Must be in this format ("/folder/other_folder"). So basically always start with "/" and never end with "/". This is required.
- callback: A function that is run after the upload is complete returning an Error as the first parameter (if there is one), and a Result as the second.
- Result: The returned value of the callback function if there is no error. It returns an object with these keys:
- total_uploaded: Integer (bytes)
- percent_uploaded: Integer (out of 100)
- uploading: Boolean (false if done uploading)
- url: String (S3 hosted URL)
- secure_url: String (S3 hosted URL for https)
This function permanently destroys files located in your S3 bucket. It still needs more work for security in the form of allow/deny rules.
Parameters:
- path: Must be in this format ("/folder/other_folder/file.extension"). So basically always start with "/" and never end with "/". This is required.
- callback: A function that is run after the upload is complete returning an Error as the first parameter (if there is one), and a Result as the second.
This is where you define your key, secret, and bucket.
S3.config = {
key: 'amazonKey',
secret: 'amazonSecret',
bucket: 'bucketName'
};
This is the meteor stream that is created between the server and the S3.collection object on the client to relay information. You probably don't need access to this.
The current knox client.
http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/frames.html https://github.com/Differential/meteor-uploader/blob/master/lib/UploaderFile.coffee#L169-L178