1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\HttpKernel\Controller;
- use Psr\Container\ContainerInterface;
- use Psr\Log\LoggerInterface;
- use Symfony\Component\HttpFoundation\Request;
- /**
- * A controller resolver searching for a controller in a psr-11 container when using the "service:method" notation.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
- */
- class ContainerControllerResolver extends ControllerResolver
- {
- protected $container;
- public function __construct(ContainerInterface $container, LoggerInterface $logger = null)
- {
- $this->container = $container;
- parent::__construct($logger);
- }
- /**
- * {@inheritdoc}
- */
- public function getController(Request $request)
- {
- $controller = parent::getController($request);
- if (is_array($controller) && isset($controller[0]) && is_string($controller[0]) && $this->container->has($controller[0])) {
- $controller[0] = $this->instantiateController($controller[0]);
- }
- return $controller;
- }
- /**
- * Returns a callable for the given controller.
- *
- * @param string $controller A Controller string
- *
- * @return mixed A PHP callable
- *
- * @throws \LogicException When the name could not be parsed
- * @throws \InvalidArgumentException When the controller class does not exist
- */
- protected function createController($controller)
- {
- if (false !== strpos($controller, '::')) {
- return parent::createController($controller);
- }
- if (1 == substr_count($controller, ':')) {
- // controller in the "service:method" notation
- list($service, $method) = explode(':', $controller, 2);
- return array($this->container->get($service), $method);
- }
- if ($this->container->has($controller) && method_exists($service = $this->container->get($controller), '__invoke')) {
- // invokable controller in the "service" notation
- return $service;
- }
- throw new \LogicException(sprintf('Unable to parse the controller name "%s".', $controller));
- }
- /**
- * {@inheritdoc}
- */
- protected function instantiateController($class)
- {
- if ($this->container->has($class)) {
- return $this->container->get($class);
- }
- return parent::instantiateController($class);
- }
- }
|