|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Symfony package. |
| 5 | + * |
| 6 | + * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +namespace Symfony\Component\BrowserKit; |
| 13 | + |
| 14 | +use Symfony\Component\HttpClient\HttpClient; |
| 15 | +use Symfony\Component\Mime\Part\AbstractPart; |
| 16 | +use Symfony\Component\Mime\Part\Multipart\FormDataPart; |
| 17 | +use Symfony\Component\Mime\Part\TextPart; |
| 18 | +use Symfony\Contracts\HttpClient\HttpClientInterface; |
| 19 | + |
| 20 | +/** |
| 21 | + * An implementation of a browser using the HttpClient component |
| 22 | + * to make real HTTP requests. |
| 23 | + * |
| 24 | + * @author Fabien Potencier <fabien@symfony.com> |
| 25 | + * |
| 26 | + * @final |
| 27 | + */ |
| 28 | +class HttpBrowser extends AbstractBrowser |
| 29 | +{ |
| 30 | + private $client; |
| 31 | + |
| 32 | + public function __construct(HttpClientInterface $client = null, History $history = null, CookieJar $cookieJar = null) |
| 33 | + { |
| 34 | + if (!class_exists(HttpClient::class)) { |
| 35 | + throw new \LogicException(sprintf('You cannot use "%s" as the HttpClient component is not installed. Try running "composer require symfony/http-client".', __CLASS__)); |
| 36 | + } |
| 37 | + |
| 38 | + $this->client = $client ?? HttpClient::create(); |
| 39 | + |
| 40 | + parent::__construct([], $history, $cookieJar); |
| 41 | + } |
| 42 | + |
| 43 | + protected function doRequest($request) |
| 44 | + { |
| 45 | + $headers = $this->getHeaders($request); |
| 46 | + $body = ''; |
| 47 | + if (null !== $part = $this->getBody($request)) { |
| 48 | + $headers = array_merge($headers, $part->getPreparedHeaders()->toArray()); |
| 49 | + $body = $part->bodyToIterable(); |
| 50 | + } |
| 51 | + $response = $this->client->request($request->getMethod(), $request->getUri(), [ |
| 52 | + 'headers' => $headers, |
| 53 | + 'body' => $body, |
| 54 | + 'max_redirects' => 0, |
| 55 | + ]); |
| 56 | + |
| 57 | + return new Response($response->getContent(false), $response->getStatusCode(), $response->getHeaders(false)); |
| 58 | + } |
| 59 | + |
| 60 | + private function getBody(Request $request): ?AbstractPart |
| 61 | + { |
| 62 | + if (\in_array($request->getMethod(), ['GET', 'HEAD'])) { |
| 63 | + return null; |
| 64 | + } |
| 65 | + |
| 66 | + if (!class_exists(AbstractPart::class)) { |
| 67 | + throw new \LogicException('You cannot pass non-empty bodies as the Mime component is not installed. Try running "composer require symfony/mime".'); |
| 68 | + } |
| 69 | + |
| 70 | + if (null !== $content = $request->getContent()) { |
| 71 | + return new TextPart($content, 'utf-8', 'plain', '8bit'); |
| 72 | + } |
| 73 | + |
| 74 | + $fields = $request->getParameters(); |
| 75 | + foreach ($request->getFiles() as $name => $file) { |
| 76 | + if (!isset($file['tmp_name'])) { |
| 77 | + continue; |
| 78 | + } |
| 79 | + |
| 80 | + $fields[$name] = DataPart::fromPath($file['tmp_name'], $file['name']); |
| 81 | + } |
| 82 | + |
| 83 | + return new FormDataPart($fields); |
| 84 | + } |
| 85 | + |
| 86 | + private function getHeaders(Request $request): array |
| 87 | + { |
| 88 | + $headers = []; |
| 89 | + foreach ($request->getServer() as $key => $value) { |
| 90 | + $key = strtolower(str_replace('_', '-', $key)); |
| 91 | + $contentHeaders = ['content-length' => true, 'content-md5' => true, 'content-type' => true]; |
| 92 | + if (0 === strpos($key, 'http-')) { |
| 93 | + $headers[substr($key, 5)] = $value; |
| 94 | + } elseif (isset($contentHeaders[$key])) { |
| 95 | + // CONTENT_* are not prefixed with HTTP_ |
| 96 | + $headers[$key] = $value; |
| 97 | + } |
| 98 | + } |
| 99 | + $cookies = []; |
| 100 | + foreach ($this->getCookieJar()->allRawValues($request->getUri()) as $name => $value) { |
| 101 | + $cookies[] = $name.'='.$value; |
| 102 | + } |
| 103 | + if ($cookies) { |
| 104 | + $headers['cookie'] = implode('; ', $cookies); |
| 105 | + } |
| 106 | + |
| 107 | + return $headers; |
| 108 | + } |
| 109 | +} |
0 commit comments