Laravel Tutorials

Simplifying Stream Handling with Laravel's resource Method

Published
Simplifying Stream Handling with Laravel's resource Method image

Laravel's HTTP Client now includes a resource() method that streamlines working with response streams, eliminating the verbose setup previously required for stream operations.

Before this enhancement, converting HTTP responses to streams required multiple steps and additional imports:

$response = Http::get($documentUrl);
$stream = StreamWrapper::getResource($response->toPsrResponse()->getBody());
Storage::writeStream('document.pdf', $stream);

The new approach reduces this to a single method call, making stream handling more intuitive and readable.

$response = Http::get($documentUrl);
Storage::writeStream('document.pdf', $response->resource());

Here's a file backup service that demonstrates practical stream usage:

class BackupService
{
public function downloadRemoteBackup(string $backupUrl, string $destinationPath)
{
try {
$this->validateBackupUrl($backupUrl);
 
$response = Http::timeout(300)->get($backupUrl);
 
if ($response->failed()) {
throw new BackupDownloadException("Failed to retrieve backup from {$backupUrl}");
}
 
$fileSize = $response->header('Content-Length');
$this->logBackupStart($backupUrl, $fileSize);
 
Storage::disk('backups')->writeStream(
$destinationPath,
$response->resource()
);
 
$this->verifyBackupIntegrity($destinationPath, $fileSize);
$this->logBackupCompletion($destinationPath);
 
return true;
 
} catch (Exception $e) {
$this->logBackupError($backupUrl, $e->getMessage());
throw new BackupProcessingException("Backup operation failed: {$e->getMessage()}");
}
}
 
public function syncMediaLibrary(array $mediaUrls)
{
$results = [];
 
foreach ($mediaUrls as $url) {
$filename = basename(parse_url($url, PHP_URL_PATH));
 
try {
$response = Http::get($url);
 
if ($response->successful()) {
Storage::disk('media')->writeStream(
"library/{$filename}",
$response->resource()
);
 
$results[$url] = 'success';
} else {
$results[$url] = 'failed';
}
 
} catch (Exception $e) {
$results[$url] = 'error: ' . $e->getMessage();
}
}
 
return $results;
}
 
private function validateBackupUrl(string $url)
{
if (!filter_var($url, FILTER_VALIDATE_URL)) {
throw new InvalidArgumentException("Invalid backup URL provided");
}
}
 
private function verifyBackupIntegrity(string $path, $expectedSize)
{
$actualSize = Storage::disk('backups')->size($path);
 
if ($expectedSize && $actualSize !== (int) $expectedSize) {
throw new BackupIntegrityException("File size mismatch during backup verification");
}
}
}

The resource() method simplifies file operations and reduces boilerplate code when working with HTTP response streams in Laravel applications.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article