* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Client simulates a browser and makes requests to a Kernel object. * * @author Fabien Potencier */ class Client extends BaseClient { protected $container; /** * Constructor. * * @param HttpKernelInterface $kernel A Kernel instance * @param array $server The server parameters (equivalent of $_SERVER) * @param History $history A History instance to store the browser history * @param CookieJar $cookieJar A CookieJar instance to store the cookies */ public function __construct(HttpKernelInterface $kernel, array $server = array(), History $history = null, CookieJar $cookieJar = null) { parent::__construct($kernel, $server, $history, $cookieJar); $this->container = $kernel->getContainer(); } /** * Returns the container. * * @return ContainerInterface */ public function getContainer() { return $this->container; } /** * Returns the kernel. * * @return Kernel */ public function getKernel() { return $this->kernel; } /** * Gets a profiler for the current Response. * * @return HttpProfiler A Profiler instance */ public function getProfiler() { if (!$this->container->has('profiler')) { return false; } return $this->container->get('profiler')->loadFromResponse($this->response); } /** * Makes a request. * * @param Request $request A Request instance * * @return Response A Response instance */ protected function doRequest($request) { $returnValue = $this->kernel->handle($request); $this->kernel->reboot(); return $returnValue; } /** * Returns the script to execute when the request must be insulated. * * @param Request $request A Request instance * * @return string The script content */ protected function getScript($request) { $kernel = serialize($this->kernel); $request = serialize($request); $r = new \ReflectionObject($this->kernel); $path = $r->getFileName(); return <<boot(); echo serialize(\$kernel->handle(unserialize('$request'))); EOF; } }