123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740 |
- <?php
- namespace Symfony\Component\BrowserKit;
- use Symfony\Component\BrowserKit\Exception\BadMethodCallException;
- use Symfony\Component\DomCrawler\Crawler;
- use Symfony\Component\DomCrawler\Form;
- use Symfony\Component\DomCrawler\Link;
- use Symfony\Component\Process\PhpProcess;
- abstract class Client
- {
- protected $history;
- protected $cookieJar;
- protected $server = [];
- protected $internalRequest;
- protected $request;
- protected $internalResponse;
- protected $response;
- protected $crawler;
- protected $insulated = false;
- protected $redirect;
- protected $followRedirects = true;
- protected $followMetaRefresh = false;
- private $maxRedirects = -1;
- private $redirectCount = 0;
- private $redirects = [];
- private $isMainRequest = true;
-
- public function __construct(array $server = [], History $history = null, CookieJar $cookieJar = null)
- {
- $this->setServerParameters($server);
- $this->history = $history ?: new History();
- $this->cookieJar = $cookieJar ?: new CookieJar();
- }
-
- public function followRedirects($followRedirect = true)
- {
- $this->followRedirects = (bool) $followRedirect;
- }
-
- public function followMetaRefresh(bool $followMetaRefresh = true)
- {
- $this->followMetaRefresh = $followMetaRefresh;
- }
-
- public function isFollowingRedirects()
- {
- return $this->followRedirects;
- }
-
- public function setMaxRedirects($maxRedirects)
- {
- $this->maxRedirects = $maxRedirects < 0 ? -1 : $maxRedirects;
- $this->followRedirects = -1 != $this->maxRedirects;
- }
-
- public function getMaxRedirects()
- {
- return $this->maxRedirects;
- }
-
- public function insulate($insulated = true)
- {
- if ($insulated && !class_exists('Symfony\\Component\\Process\\Process')) {
- throw new \LogicException('Unable to isolate requests as the Symfony Process Component is not installed.');
- }
- $this->insulated = (bool) $insulated;
- }
-
- public function setServerParameters(array $server)
- {
- $this->server = array_merge([
- 'HTTP_USER_AGENT' => 'Symfony BrowserKit',
- ], $server);
- }
-
- public function setServerParameter($key, $value)
- {
- $this->server[$key] = $value;
- }
-
- public function getServerParameter($key, $default = '')
- {
- return isset($this->server[$key]) ? $this->server[$key] : $default;
- }
- public function xmlHttpRequest(string $method, string $uri, array $parameters = [], array $files = [], array $server = [], string $content = null, bool $changeHistory = true): Crawler
- {
- $this->setServerParameter('HTTP_X_REQUESTED_WITH', 'XMLHttpRequest');
- try {
- return $this->request($method, $uri, $parameters, $files, $server, $content, $changeHistory);
- } finally {
- unset($this->server['HTTP_X_REQUESTED_WITH']);
- }
- }
-
- public function getHistory()
- {
- return $this->history;
- }
-
- public function getCookieJar()
- {
- return $this->cookieJar;
- }
-
- public function getCrawler()
- {
- if (null === $this->crawler) {
- @trigger_error(sprintf('Calling the "%s()" method before the "request()" one is deprecated since Symfony 4.1 and will throw an exception in 5.0.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
-
- }
- return $this->crawler;
- }
-
- public function getInternalResponse()
- {
- if (null === $this->internalResponse) {
- @trigger_error(sprintf('Calling the "%s()" method before the "request()" one is deprecated since Symfony 4.1 and will throw an exception in 5.0.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
-
- }
- return $this->internalResponse;
- }
-
- public function getResponse()
- {
- if (null === $this->response) {
- @trigger_error(sprintf('Calling the "%s()" method before the "request()" one is deprecated since Symfony 4.1 and will throw an exception in 5.0.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
-
- }
- return $this->response;
- }
-
- public function getInternalRequest()
- {
- if (null === $this->internalRequest) {
- @trigger_error(sprintf('Calling the "%s()" method before the "request()" one is deprecated since Symfony 4.1 and will throw an exception in 5.0.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
-
- }
- return $this->internalRequest;
- }
-
- public function getRequest()
- {
- if (null === $this->request) {
- @trigger_error(sprintf('Calling the "%s()" method before the "request()" one is deprecated since Symfony 4.1 and will throw an exception in 5.0.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
-
- }
- return $this->request;
- }
-
- public function click(Link $link)
- {
- if ($link instanceof Form) {
- return $this->submit($link);
- }
- return $this->request($link->getMethod(), $link->getUri());
- }
-
- public function clickLink(string $linkText): Crawler
- {
- if (null === $this->crawler) {
- throw new BadMethodCallException(sprintf('The "request()" method must be called before "%s()".', __METHOD__));
- }
- return $this->click($this->crawler->selectLink($linkText)->link());
- }
-
- public function submit(Form $form, array $values = [])
- {
- if (\func_num_args() < 3 && __CLASS__ !== \get_class($this) && __CLASS__ !== (new \ReflectionMethod($this, __FUNCTION__))->getDeclaringClass()->getName() && !$this instanceof \PHPUnit\Framework\MockObject\MockObject && !$this instanceof \Prophecy\Prophecy\ProphecySubjectInterface) {
- @trigger_error(sprintf('The "%s()" method will have a new "array $serverParameters = []" argument in version 5.0, not defining it is deprecated since Symfony 4.2.', \get_class($this).'::'.__FUNCTION__), E_USER_DEPRECATED);
- }
- $form->setValues($values);
- $serverParameters = 2 < \func_num_args() ? func_get_arg(2) : [];
- return $this->request($form->getMethod(), $form->getUri(), $form->getPhpValues(), $form->getPhpFiles(), $serverParameters);
- }
-
- public function submitForm(string $button, array $fieldValues = [], string $method = 'POST', array $serverParameters = []): Crawler
- {
- if (null === $this->crawler) {
- throw new BadMethodCallException(sprintf('The "request()" method must be called before "%s()".', __METHOD__));
- }
- $buttonNode = $this->crawler->selectButton($button);
- $form = $buttonNode->form($fieldValues, $method);
- return $this->submit($form, [], $serverParameters);
- }
-
- public function request(string $method, string $uri, array $parameters = [], array $files = [], array $server = [], string $content = null, bool $changeHistory = true)
- {
- if ($this->isMainRequest) {
- $this->redirectCount = 0;
- } else {
- ++$this->redirectCount;
- }
- $originalUri = $uri;
- $uri = $this->getAbsoluteUri($uri);
- $server = array_merge($this->server, $server);
- if (!empty($server['HTTP_HOST']) && null === parse_url($originalUri, PHP_URL_HOST)) {
- $uri = preg_replace('{^(https?\://)'.preg_quote($this->extractHost($uri)).'}', '${1}'.$server['HTTP_HOST'], $uri);
- }
- if (isset($server['HTTPS']) && null === parse_url($originalUri, PHP_URL_SCHEME)) {
- $uri = preg_replace('{^'.parse_url($uri, PHP_URL_SCHEME).'}', $server['HTTPS'] ? 'https' : 'http', $uri);
- }
- if (!$this->history->isEmpty()) {
- $server['HTTP_REFERER'] = $this->history->current()->getUri();
- }
- if (empty($server['HTTP_HOST'])) {
- $server['HTTP_HOST'] = $this->extractHost($uri);
- }
- $server['HTTPS'] = 'https' == parse_url($uri, PHP_URL_SCHEME);
- $this->internalRequest = new Request($uri, $method, $parameters, $files, $this->cookieJar->allValues($uri), $server, $content);
- $this->request = $this->filterRequest($this->internalRequest);
- if (true === $changeHistory) {
- $this->history->add($this->internalRequest);
- }
- if ($this->insulated) {
- $this->response = $this->doRequestInProcess($this->request);
- } else {
- $this->response = $this->doRequest($this->request);
- }
- $this->internalResponse = $this->filterResponse($this->response);
- $this->cookieJar->updateFromResponse($this->internalResponse, $uri);
- $status = $this->internalResponse->getStatusCode();
- if ($status >= 300 && $status < 400) {
- $this->redirect = $this->internalResponse->getHeader('Location');
- } else {
- $this->redirect = null;
- }
- if ($this->followRedirects && $this->redirect) {
- $this->redirects[serialize($this->history->current())] = true;
- return $this->crawler = $this->followRedirect();
- }
- $this->crawler = $this->createCrawlerFromContent($this->internalRequest->getUri(), $this->internalResponse->getContent(), $this->internalResponse->getHeader('Content-Type'));
-
- if ($this->followMetaRefresh && null !== $redirect = $this->getMetaRefreshUrl()) {
- $this->redirect = $redirect;
- $this->redirects[serialize($this->history->current())] = true;
- $this->crawler = $this->followRedirect();
- }
- return $this->crawler;
- }
-
- protected function doRequestInProcess($request)
- {
- $deprecationsFile = tempnam(sys_get_temp_dir(), 'deprec');
- putenv('SYMFONY_DEPRECATIONS_SERIALIZE='.$deprecationsFile);
- $_ENV['SYMFONY_DEPRECATIONS_SERIALIZE'] = $deprecationsFile;
- $process = new PhpProcess($this->getScript($request), null, null);
- $process->run();
- if (file_exists($deprecationsFile)) {
- $deprecations = file_get_contents($deprecationsFile);
- unlink($deprecationsFile);
- foreach ($deprecations ? unserialize($deprecations) : [] as $deprecation) {
- if ($deprecation[0]) {
-
- trigger_error($deprecation[1], E_USER_DEPRECATED);
- } else {
- @trigger_error($deprecation[1], E_USER_DEPRECATED);
- }
- }
- }
- if (!$process->isSuccessful() || !preg_match('/^O\:\d+\:/', $process->getOutput())) {
- throw new \RuntimeException(sprintf('OUTPUT: %s ERROR OUTPUT: %s', $process->getOutput(), $process->getErrorOutput()));
- }
- return unserialize($process->getOutput());
- }
-
- abstract protected function doRequest($request);
-
- protected function getScript($request)
- {
- throw new \LogicException('To insulate requests, you need to override the getScript() method.');
- }
-
- protected function filterRequest(Request $request)
- {
- return $request;
- }
-
- protected function filterResponse($response)
- {
- return $response;
- }
-
- protected function createCrawlerFromContent($uri, $content, $type)
- {
- if (!class_exists('Symfony\Component\DomCrawler\Crawler')) {
- return;
- }
- $crawler = new Crawler(null, $uri);
- $crawler->addContent($content, $type);
- return $crawler;
- }
-
- public function back()
- {
- do {
- $request = $this->history->back();
- } while (\array_key_exists(serialize($request), $this->redirects));
- return $this->requestFromRequest($request, false);
- }
-
- public function forward()
- {
- do {
- $request = $this->history->forward();
- } while (\array_key_exists(serialize($request), $this->redirects));
- return $this->requestFromRequest($request, false);
- }
-
- public function reload()
- {
- return $this->requestFromRequest($this->history->current(), false);
- }
-
- public function followRedirect()
- {
- if (empty($this->redirect)) {
- throw new \LogicException('The request was not redirected.');
- }
- if (-1 !== $this->maxRedirects) {
- if ($this->redirectCount > $this->maxRedirects) {
- $this->redirectCount = 0;
- throw new \LogicException(sprintf('The maximum number (%d) of redirections was reached.', $this->maxRedirects));
- }
- }
- $request = $this->internalRequest;
- if (\in_array($this->internalResponse->getStatusCode(), [301, 302, 303])) {
- $method = 'GET';
- $files = [];
- $content = null;
- } else {
- $method = $request->getMethod();
- $files = $request->getFiles();
- $content = $request->getContent();
- }
- if ('GET' === strtoupper($method)) {
-
- $parameters = [];
- } else {
- $parameters = $request->getParameters();
- }
- $server = $request->getServer();
- $server = $this->updateServerFromUri($server, $this->redirect);
- $this->isMainRequest = false;
- $response = $this->request($method, $this->redirect, $parameters, $files, $server, $content);
- $this->isMainRequest = true;
- return $response;
- }
-
- private function getMetaRefreshUrl(): ?string
- {
- $metaRefresh = $this->getCrawler()->filter('head meta[http-equiv="refresh"]');
- foreach ($metaRefresh->extract(['content']) as $content) {
- if (preg_match('/^\s*0\s*;\s*URL\s*=\s*(?|\'([^\']++)|"([^"]++)|([^\'"].*))/i', $content, $m)) {
- return str_replace("\t\r\n", '', rtrim($m[1]));
- }
- }
- return null;
- }
-
- public function restart()
- {
- $this->cookieJar->clear();
- $this->history->clear();
- }
-
- protected function getAbsoluteUri($uri)
- {
-
- if (0 === strpos($uri, 'http://') || 0 === strpos($uri, 'https://')) {
- return $uri;
- }
- if (!$this->history->isEmpty()) {
- $currentUri = $this->history->current()->getUri();
- } else {
- $currentUri = sprintf('http%s://%s/',
- isset($this->server['HTTPS']) ? 's' : '',
- isset($this->server['HTTP_HOST']) ? $this->server['HTTP_HOST'] : 'localhost'
- );
- }
-
- if (0 === strpos($uri, '//')) {
- return parse_url($currentUri, PHP_URL_SCHEME).':'.$uri;
- }
-
- if (!$uri || '#' == $uri[0] || '?' == $uri[0]) {
- return preg_replace('/[#?].*?$/', '', $currentUri).$uri;
- }
- if ('/' !== $uri[0]) {
- $path = parse_url($currentUri, PHP_URL_PATH);
- if ('/' !== substr($path, -1)) {
- $path = substr($path, 0, strrpos($path, '/') + 1);
- }
- $uri = $path.$uri;
- }
- return preg_replace('#^(.*?//[^/]+)\/.*$#', '$1', $currentUri).$uri;
- }
-
- protected function requestFromRequest(Request $request, $changeHistory = true)
- {
- return $this->request($request->getMethod(), $request->getUri(), $request->getParameters(), $request->getFiles(), $request->getServer(), $request->getContent(), $changeHistory);
- }
- private function updateServerFromUri($server, $uri)
- {
- $server['HTTP_HOST'] = $this->extractHost($uri);
- $scheme = parse_url($uri, PHP_URL_SCHEME);
- $server['HTTPS'] = null === $scheme ? $server['HTTPS'] : 'https' == $scheme;
- unset($server['HTTP_IF_NONE_MATCH'], $server['HTTP_IF_MODIFIED_SINCE']);
- return $server;
- }
- private function extractHost($uri)
- {
- $host = parse_url($uri, PHP_URL_HOST);
- if ($port = parse_url($uri, PHP_URL_PORT)) {
- return $host.':'.$port;
- }
- return $host;
- }
- }
|