Replace ZipStream with native ZipArchive for FrankenPHP compatibility

ZipStream writes via fwrite(php://output) which FrankenPHP silently
drops, resulting in 0-byte ZIP downloads. Switch to ZipArchive to build
the ZIP as a temp file on disk, then serve with response()->download().

- Rewrite download() to use ZipArchive + BinaryFileResponse
- Remove decryptFileToCallback() from FileEncryptionService
- Update tests for BinaryFileResponse instead of StreamedResponse
- Remove maennchen/zipstream-php dependency

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
surtic86
2026-02-25 20:34:05 +01:00
co-authored by Claude Opus 4.6
parent e37b322dde
commit 729e01462b
5 changed files with 127 additions and 133 deletions
+10 -20
View File
@@ -2,7 +2,6 @@
namespace App\Services;
use Closure;
use Generator;
use RuntimeException;
use Symfony\Component\HttpFoundation\HeaderUtils;
@@ -181,30 +180,21 @@ class FileEncryptionService
}
/**
* Return a closure that decrypts a file into a temporary stream resource.
* Suitable for ZipStream's addFileFromCallback.
* Stream decrypted file content directly to output (echo).
* Use this when you need to add post-streaming logic inside a StreamedResponse callback.
*/
public function decryptFileToCallback(string $encryptedPath, string $key): Closure
public function streamDecryptedFile(string $encryptedPath, string $key): void
{
return function () use ($encryptedPath, $key) {
$tmp = tmpfile();
if ($tmp === false) {
throw new RuntimeException('Cannot create temporary file');
if ($this->isChunkedFormat($encryptedPath)) {
foreach ($this->decryptChunks($encryptedPath, $key) as $chunk) {
echo $chunk;
flush();
}
if ($this->isChunkedFormat($encryptedPath)) {
foreach ($this->decryptChunks($encryptedPath, $key) as $chunk) {
fwrite($tmp, $chunk);
}
} else {
fwrite($tmp, $this->decryptLegacy($encryptedPath, $key));
}
return;
}
rewind($tmp);
return $tmp;
};
echo $this->decryptLegacy($encryptedPath, $key);
}
/**