Created
November 26, 2010 22:58
-
-
Save iamjonbradley/717317 to your computer and use it in GitHub Desktop.
Amazon S3 Upload Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
App::import('Vendor', 'Upload.S3'); | |
Configure::load('Upload.config'); | |
class UploadComponent extends Object { | |
// set name of the component | |
public $name = 'Upload'; | |
// set keys for S3 | |
public $AccessKey = ''; | |
public $SecretKey = ''; | |
// set address you are going to utilize | |
public $Address = 'https://s3.amazonaws.com'; | |
// set preliminary object for S3 | |
public $s3 = ''; | |
public function startup () { | |
$this->AccessKey = Configure::read('S3.AccessKey'); | |
$this->SecretKey = Configure::read('S3.SecretKey'); | |
$this->Address = Configure::read('S3.Address'); | |
$this->s3 = new S3($this->AccessKey, $this->SecretKey); | |
} | |
public function put ($file, $bucket) { | |
// set the temp filename | |
$fileTempName = $file['tmp_name']; | |
// create the filename | |
list($name, $ext) = explode('.', $file['name']); | |
$fileName = microtime(); | |
$fileName = str_replace(array(' ', '.'), '', $fileName); | |
$fileName = $fileName .'.'. $ext; | |
//move the file | |
$this->s3->putObjectFile($fileTempName, $bucket, $fileName, S3::ACL_PUBLIC_READ); | |
// return url for link | |
return $this->Address .'/'. $bucket .'/'. $fileName; | |
} | |
public function newBucket($name) { | |
return $this->s3->putBucket($name, S3::ACL_PUBLIC_READ); | |
} | |
public function getBuckets () { | |
return $this->s3->listBuckets(); | |
} | |
public function getList ($bucket = 'STAV') { | |
return $this->s3->getBucket($bucket); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment