wyrihaximus / s3-parallel-upload
Asyncronous upload to AWS S3
Requires
- aws/aws-sdk-php: ~3.0
- react/filesystem: *
- wyrihaximus/react-guzzle-ring: dev-master
Requires (Dev)
- phpunit/phpunit: ~4.0
- satooshi/php-coveralls: ~0.6
This package is auto-updated.
Last update: 2024-11-05 10:36:11 UTC
README
S3 upload tool using Guzzle and ReactPHP
Installation
Installation is easy with composer just run.
composer require wyrihaximus/s3-parallel-upload
Basic Usage
<?php require 'vendor/autoload.php'; use Aws\Common\Aws; use GuzzleHttp\Client; use GuzzleHttp\Message\Response; use React\EventLoop\Factory as EventLoopFactory; use WyriHaximus\S3ParallelUpload\Uploader; use WyriHaximus\React\RingPHP\HttpClientAdapter; $concurrentUploads = 13; // Number of async uploads $sourceDirectory = 'sea'; // The source directory $prefix = ''; // Filename prefix just in case $bucketName = 's3-bucket-name'; // The bucket we're uploading to $client = Aws::factory('/path/to/config.php')->get('s3'); $logfile = 'stats.log'; // Statistical log file for analysis later on, set to null to disable $loop = EventLoopFactory::create(); $guzzle = new Client([ 'handler' => new HttpClientAdapter($loop), ]); (new Uploader($client, $loop, $guzzle, [ 'concurrency' => $concurrentUploads, 'base-dir' => $sourceDirectory, 'prefix' => $prefix, 'bucket' => $bucketName, 'logfile' => $logfile, ]))->setup()->then(function () { echo 'Done', PHP_EOL; }); $loop->run();
License
Copyright 2014 Cees-Jan Kiewiet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.