1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
<?php
/*
* $Id: 37e9c57cc495b2eb764a5bbd6221a7d6ad115127 $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://phing.info>.
*/
require_once dirname(dirname(__FILE__)) . '/S3.php';
/**
* Stores an object on S3
*
* @version $Id: 37e9c57cc495b2eb764a5bbd6221a7d6ad115127 $
* @package phing.tasks.ext
* @author Andrei Serdeliuc <andrei@serdeliuc.ro>
* @extends Service_Amazon_S3
*/
class S3PutTask extends Service_Amazon_S3
{
/**
* File we're trying to upload
*
* (default value: null)
*
* @var string
*/
protected $_source = null;
/**
* Content we're trying to upload
*
* The user can specify either a file to upload or just a bit of content
*
* (default value: null)
*
* @var mixed
*/
protected $_content = null;
/**
* Collection of filesets
* Used for uploading multiple files
*
* (default value: array())
*
* @var array
*/
protected $_filesets = array();
/**
* Whether to try to create buckets or not
*
* (default value: false)
*
* @var bool
*/
protected $_createBuckets = false;
/**
* File ACL
* Use to set the permission to the uploaded files
*
* (default value: 'private')
*
* @var string
*/
protected $_acl = 'private';
/**
* File content type
* Use this to set the content type of your static files
* Set contentType to "auto" if you want to autodetect the content type based on the source file extension
*
* (default value: 'binary/octet-stream')
*
* @var string
*/
protected $_contentType = 'binary/octet-stream';
/**
* Object maxage (in seconds).
*
* @var int
*/
protected $_maxage = null;
/**
* Content is gzipped.
*
* @var boolean
*/
protected $_gzipped = false;
/**
* Extension content type mapper
*
* @var array
*/
protected $_extensionContentTypeMapper = array(
'js' => 'application/x-javascript',
'css' => 'text/css',
'html' => 'text/html',
'gif' => 'image/gif',
'png' => 'image/png',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'txt' => 'text/plain'
);
/**
* Whether filenames contain paths
*
* (default value: false)
*
* @var bool
*/
protected $_fileNameOnly = false;
/**
* @param $source
* @throws BuildException
*/
public function setSource($source)
{
if (!is_readable($source)) {
throw new BuildException('Source is not readable: ' . $source);
}
$this->_source = $source;
}
/**
* @return string
* @throws BuildException
*/
public function getSource()
{
if ($this->_source === null) {
throw new BuildException('Source is not set');
}
return $this->_source;
}
/**
* @param $content
* @throws BuildException
*/
public function setContent($content)
{
if (empty($content) || !is_string($content)) {
throw new BuildException('Content must be a non-empty string');
}
$this->_content = $content;
}
/**
* @return mixed
* @throws BuildException
*/
public function getContent()
{
if ($this->_content === null) {
throw new BuildException('Content is not set');
}
return $this->_content;
}
/**
* @param $object
* @throws BuildException
*/
public function setObject($object)
{
if (empty($object) || !is_string($object)) {
throw new BuildException('Object must be a non-empty string');
}
$this->_object = $object;
}
public function getObject()
{
if ($this->_object === null) {
throw new BuildException('Object is not set');
}
return $this->_object;
}
/**
* @param $permission
* @throws BuildException
*/
public function setAcl($permission)
{
$valid_acl = array('private', 'public-read', 'public-read-write', 'authenticated-read');
if (empty($permission) || !is_string($permission) || !in_array($permission, $valid_acl)) {
throw new BuildException('Object must be one of the following values: ' . implode('|', $valid_acl));
}
$this->_acl = $permission;
}
/**
* @return string
*/
public function getAcl()
{
return $this->_acl;
}
/**
* @param $contentType
*/
public function setContentType($contentType)
{
$this->_contentType = $contentType;
}
/**
* @return string
* @throws BuildException
*/
public function getContentType()
{
if ($this->_contentType === 'auto') {
$ext = strtolower(substr(strrchr($this->getSource(), '.'), 1));
if (isset($this->_extensionContentTypeMapper[$ext])) {
return $this->_extensionContentTypeMapper[$ext];
} else {
return 'binary/octet-stream';
}
} else {
return $this->_contentType;
}
}
/**
* @param $createBuckets
*/
public function setCreateBuckets($createBuckets)
{
$this->_createBuckets = (bool) $createBuckets;
}
/**
* @return bool
*/
public function getCreateBuckets()
{
return (bool) $this->_createBuckets;
}
/**
* Set seconds in max-age, null value exclude max-age setup.
*
* @param int $seconds
*/
public function setMaxage($seconds)
{
$this->_maxage = $seconds;
}
/**
* Get seconds in max-age or null.
*
* @return int
* Number of seconds in maxage or null.
*/
public function getMaxage()
{
return $this->_maxage;
}
/**
* Set if content is gzipped.
*
* @param boolean $gzipped
*/
public function setGzip($gzipped)
{
$this->_gzipped = $gzipped;
}
/**
* Return if content is gzipped.
*
* @return booleand
* Indicate if content is gzipped.
*/
public function getGzip()
{
return $this->_gzipped;
}
/**
* Generate HTTPHEader array sent to S3.
*
* @return array
* HttpHeader to set in S3 Object.
*/
protected function getHttpHeaders()
{
$headers = array();
if (!is_null($this->_maxage)) {
$headers['Cache-Control'] = 'max-age=' . $this->_maxage;
}
if ($this->_gzipped) {
$headers['Content-Encoding'] = 'gzip';
}
return $headers;
}
/**
* @param $fileNameOnly
*/
public function setFileNameOnly($fileNameOnly)
{
$this->_fileNameOnly = (bool) $fileNameOnly;
}
/**
* creator for _filesets
*
* @return FileSet
*/
public function createFileset()
{
$num = array_push($this->_filesets, new FileSet());
return $this->_filesets[$num - 1];
}
/**
* getter for _filesets
*
* @return array
*/
public function getFilesets()
{
return $this->_filesets;
}
/**
* Determines what we're going to store in the object
*
* If _content has been set, this will get stored,
* otherwise, we read from _source
*
* @throws BuildException
* @return string
*/
public function getObjectData()
{
try {
$content = $this->getContent();
} catch (BuildException $e) {
$source = $this->getSource();
if (!is_file($source)) {
throw new BuildException('Currently only files can be used as source');
}
$content = file_get_contents($source);
}
return $content;
}
/**
* Store the object on S3
*
* @throws BuildException
* @return void
*/
public function execute()
{
if (!$this->isBucketAvailable()) {
if (!$this->getCreateBuckets()) {
throw new BuildException('Bucket doesn\'t exist and createBuckets not specified');
} else {
if (!$this->createBucket()) {
throw new BuildException('Bucket cannot be created');
}
}
}
// Filesets take precedence
if (!empty($this->_filesets)) {
$objects = array();
foreach ($this->_filesets as $fs) {
if (!($fs instanceof FileSet)) {
continue;
}
$ds = $fs->getDirectoryScanner($this->getProject());
$objects = array_merge($objects, $ds->getIncludedFiles());
}
$fromDir = $fs->getDir($this->getProject())->getAbsolutePath();
if ($this->_fileNameOnly) {
foreach ($objects as $object) {
$this->_source = $object;
$this->saveObject(basename($object), file_get_contents($fromDir . DIRECTORY_SEPARATOR . $object));
}
} else {
foreach ($objects as $object) {
$this->_source = $object;
$this->saveObject(
str_replace('\\', '/', $object),
file_get_contents($fromDir . DIRECTORY_SEPARATOR . $object)
);
}
}
return true;
}
$this->saveObject($this->getObject(), $this->getObjectData());
}
/**
* @param $object
* @param $data
* @throws BuildException
*/
protected function saveObject($object, $data)
{
$object = $this->getObjectInstance($object);
$object->data = $data;
$object->acl = $this->getAcl();
$object->contentType = $this->getContentType();
$object->httpHeaders = $this->getHttpHeaders();
$object->save();
if (!$this->isObjectAvailable($object->key)) {
throw new BuildException('Upload failed');
}
}
}
|