* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\FrameworkBundle; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\Client as BaseClient; use Symfony\Component\HttpKernel\Profiler\Profiler as HttpProfiler; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Client simulates a browser and makes requests to a Kernel object. * * @author Fabien Potencier */ class Client extends BaseClient { /** * Returns the container. * * @return ContainerInterface */ public function getContainer() { return $this->kernel->getContainer(); } /** * Returns the kernel. * * @return HttpKernelInterface */ public function getKernel() { return $this->kernel; } /** * Gets a profiler for the current Response. * * @return HttpProfiler A Profiler instance */ public function getProfiler() { if (!$this->kernel->getContainer()->has('profiler')) { return false; } return $this->kernel->getContainer()->get('profiler')->loadFromResponse($this->response); } /** * Makes a request. * * @param Request $request A Request instance * * @return Response A Response instance */ protected function doRequest($request) { $this->kernel->shutdown(); return $this->kernel->handle($request); } /** * 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; } }