Last active
April 6, 2020 08:28
-
-
Save tillkruss/4109aa3de72788f25b21699ff9023ecc to your computer and use it in GitHub Desktop.
Stream files from S3 as ZIP file.
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 | |
use Aws\S3\S3Client; | |
use ZipStream\ZipStream; // https://github.com/maennchen/ZipStream-PHP | |
use GuzzleHttp\Client as HttpClient; | |
protected function streamAsZip($files) | |
{ | |
$s3 = S3Client::factory('...'); | |
$zip = new ZipStream("foobar.zip"); | |
foreach ($files as $file) { | |
$request = $s3->createPresignedRequest( | |
$s3->getCommand('GetObject', [ | |
'Key' => $file->path, | |
'Bucket' => 'bucket-name', | |
]), | |
'+20 seconds' | |
); | |
$tmpfile = tempnam(sys_get_temp_dir(), str_random()); | |
(new HttpClient)->request('GET', (string) $request->getUri(), ['sink' => fopen($tmpfile, 'w+')]); | |
$fp = fopen($tmpfile, 'r'); | |
$zip->addFileFromStream(basename($file->path), $fp); | |
fclose($fp); | |
} | |
$zip->finish(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is this a Guzzle HttpClient?