This extension is used to interact with Amazon S3 using the S3 class created by Donovan Schönknecht (see Resources for link). I wrote this about a year ago and am posting it now simply because of the number of questions about CDNs that have come up today. I added a minimum of direct methods to add to the base class, and for everything else there is a simple 'call' method which will pass through to the base class.
Yii 1.1+
CFile Extension (required for using the upload method, otherwise optional)
Add the following to your app component configuration
's3'=>array( 'class'=>'ext.s3.ES3', 'aKey'=>'ADD YOUR AKEY HERE', 'sKey'=>'ADD YOUR SKEY HERE', ),
The extension assumes that you have CFile Extension configured to use 'file' as the application component name.
Then to upload a file to S3, simply:
// upload the original version $success = Yii::app()->s3->upload( 'originalfile' , 'uploadedfile', 's3_BucketName' );
The original S3 class by and documentation by Donovan Schönknecht can be found here: http://undesigned.org.za/2007/10/22/amazon-s3-php-class
Total 5 comments
Is there is any way to delete,rename,copy or move in S3 through this extension?
Thanks for the nice extension, upload to s3 went smoothly. I'm eager to know how the extension is supposed to handle deletions. I tried $s3->deleteObject($s3->bucket, $uri), following the convention of $s3->putObjectFile(...), though both methods are static. For me, it throws an exception no such method exists, but I wonder how pubObjectFile worked. I also tried to call the method using class name s3::deleteObject(...), it failed with auth error since the authkey/secret key was not accessible when accessing the method directly. Could anyone please guide how you people are managing deletes?
Could you make the endpoint configurable? The default is US but I'm using Ireland.
I've patched it myself but I guess other people will have the same problem :)
I'm adding some methods to fit my needs. Many thanks for this wrapper!
Angelo
This extension comes just in time for me...
Leave a comment
Please login to leave your comment.