FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
php-http
/
client-common
/
src
/
Plugin
Edit File: ContentLengthPlugin.php
<?php namespace AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Message\Encoding\ChunkStream; use AmeliaPsr\Http\Message\RequestInterface; /** * Allow to set the correct content length header on the request or to transfer it as a chunk if not possible. * * @author Joel Wurtz <joel.wurtz@gmail.com> */ final class ContentLengthPlugin implements Plugin { /** * {@inheritdoc} */ public function handleRequest(RequestInterface $request, callable $next, callable $first) { if (!$request->hasHeader('Content-Length')) { $stream = $request->getBody(); // Cannot determine the size so we use a chunk stream if (null === $stream->getSize()) { $stream = new ChunkStream($stream); $request = $request->withBody($stream); $request = $request->withAddedHeader('Transfer-Encoding', 'chunked'); } else { $request = $request->withHeader('Content-Length', (string) $stream->getSize()); } } return $next($request); } }
Save
Back