CurlFactory.php
2 years ago
CurlFactoryInterface.php
2 years ago
CurlHandler.php
2 years ago
CurlMultiHandler.php
2 years ago
EasyHandle.php
2 years ago
HeaderProcessor.php
2 years ago
MockHandler.php
2 years ago
Proxy.php
2 years ago
StreamHandler.php
2 years ago
Proxy.php
50 lines
| 1 | <?php |
| 2 | |
| 3 | namespace YoastSEO_Vendor\GuzzleHttp\Handler; |
| 4 | |
| 5 | use YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface; |
| 6 | use YoastSEO_Vendor\GuzzleHttp\RequestOptions; |
| 7 | use YoastSEO_Vendor\Psr\Http\Message\RequestInterface; |
| 8 | /** |
| 9 | * Provides basic proxies for handlers. |
| 10 | * |
| 11 | * @final |
| 12 | */ |
| 13 | class Proxy |
| 14 | { |
| 15 | /** |
| 16 | * Sends synchronous requests to a specific handler while sending all other |
| 17 | * requests to another handler. |
| 18 | * |
| 19 | * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default Handler used for normal responses |
| 20 | * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $sync Handler used for synchronous responses. |
| 21 | * |
| 22 | * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler. |
| 23 | */ |
| 24 | public static function wrapSync(callable $default, callable $sync) : callable |
| 25 | { |
| 26 | return static function (\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options) use($default, $sync) : PromiseInterface { |
| 27 | return empty($options[\YoastSEO_Vendor\GuzzleHttp\RequestOptions::SYNCHRONOUS]) ? $default($request, $options) : $sync($request, $options); |
| 28 | }; |
| 29 | } |
| 30 | /** |
| 31 | * Sends streaming requests to a streaming compatible handler while sending |
| 32 | * all other requests to a default handler. |
| 33 | * |
| 34 | * This, for example, could be useful for taking advantage of the |
| 35 | * performance benefits of curl while still supporting true streaming |
| 36 | * through the StreamHandler. |
| 37 | * |
| 38 | * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default Handler used for non-streaming responses |
| 39 | * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $streaming Handler used for streaming responses |
| 40 | * |
| 41 | * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler. |
| 42 | */ |
| 43 | public static function wrapStreaming(callable $default, callable $streaming) : callable |
| 44 | { |
| 45 | return static function (\YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, array $options) use($default, $streaming) : PromiseInterface { |
| 46 | return empty($options['stream']) ? $default($request, $options) : $streaming($request, $options); |
| 47 | }; |
| 48 | } |
| 49 | } |
| 50 |