vendor/symfony/http-kernel/Controller/ControllerResolver.php line 94

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\Controller;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. /**
  14.  * This implementation uses the '_controller' request attribute to determine
  15.  * the controller to execute.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  * @author Tobias Schultze <http://tobion.de>
  19.  */
  20. class ControllerResolver implements ControllerResolverInterface
  21. {
  22.     private ?LoggerInterface $logger;
  23.     public function __construct(LoggerInterface $logger null)
  24.     {
  25.         $this->logger $logger;
  26.     }
  27.     public function getController(Request $request): callable|false
  28.     {
  29.         if (!$controller $request->attributes->get('_controller')) {
  30.             $this->logger?->warning('Unable to look for the controller as the "_controller" parameter is missing.');
  31.             return false;
  32.         }
  33.         if (\is_array($controller)) {
  34.             if (isset($controller[0]) && \is_string($controller[0]) && isset($controller[1])) {
  35.                 try {
  36.                     $controller[0] = $this->instantiateController($controller[0]);
  37.                 } catch (\Error|\LogicException $e) {
  38.                     if (\is_callable($controller)) {
  39.                         return $controller;
  40.                     }
  41.                     throw $e;
  42.                 }
  43.             }
  44.             if (!\is_callable($controller)) {
  45.                 throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: '$request->getPathInfo()).$this->getControllerError($controller));
  46.             }
  47.             return $controller;
  48.         }
  49.         if (\is_object($controller)) {
  50.             if (!\is_callable($controller)) {
  51.                 throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: '$request->getPathInfo()).$this->getControllerError($controller));
  52.             }
  53.             return $controller;
  54.         }
  55.         if (\function_exists($controller)) {
  56.             return $controller;
  57.         }
  58.         try {
  59.             $callable $this->createController($controller);
  60.         } catch (\InvalidArgumentException $e) {
  61.             throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: '$request->getPathInfo()).$e->getMessage(), 0$e);
  62.         }
  63.         if (!\is_callable($callable)) {
  64.             throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: '$request->getPathInfo()).$this->getControllerError($callable));
  65.         }
  66.         return $callable;
  67.     }
  68.     /**
  69.      * Returns a callable for the given controller.
  70.      *
  71.      * @throws \InvalidArgumentException When the controller cannot be created
  72.      */
  73.     protected function createController(string $controller): callable
  74.     {
  75.         if (!str_contains($controller'::')) {
  76.             $controller $this->instantiateController($controller);
  77.             if (!\is_callable($controller)) {
  78.                 throw new \InvalidArgumentException($this->getControllerError($controller));
  79.             }
  80.             return $controller;
  81.         }
  82.         [$class$method] = explode('::'$controller2);
  83.         try {
  84.             $controller = [$this->instantiateController($class), $method];
  85.         } catch (\Error|\LogicException $e) {
  86.             try {
  87.                 if ((new \ReflectionMethod($class$method))->isStatic()) {
  88.                     return $class.'::'.$method;
  89.                 }
  90.             } catch (\ReflectionException) {
  91.                 throw $e;
  92.             }
  93.             throw $e;
  94.         }
  95.         if (!\is_callable($controller)) {
  96.             throw new \InvalidArgumentException($this->getControllerError($controller));
  97.         }
  98.         return $controller;
  99.     }
  100.     /**
  101.      * Returns an instantiated controller.
  102.      */
  103.     protected function instantiateController(string $class): object
  104.     {
  105.         return new $class();
  106.     }
  107.     private function getControllerError(mixed $callable): string
  108.     {
  109.         if (\is_string($callable)) {
  110.             if (str_contains($callable'::')) {
  111.                 $callable explode('::'$callable2);
  112.             } else {
  113.                 return sprintf('Function "%s" does not exist.'$callable);
  114.             }
  115.         }
  116.         if (\is_object($callable)) {
  117.             $availableMethods $this->getClassMethodsWithoutMagicMethods($callable);
  118.             $alternativeMsg $availableMethods sprintf(' or use one of the available methods: "%s"'implode('", "'$availableMethods)) : '';
  119.             return sprintf('Controller class "%s" cannot be called without a method name. You need to implement "__invoke"%s.'get_debug_type($callable), $alternativeMsg);
  120.         }
  121.         if (!\is_array($callable)) {
  122.             return sprintf('Invalid type for controller given, expected string, array or object, got "%s".'get_debug_type($callable));
  123.         }
  124.         if (!isset($callable[0]) || !isset($callable[1]) || !== \count($callable)) {
  125.             return 'Invalid array callable, expected [controller, method].';
  126.         }
  127.         [$controller$method] = $callable;
  128.         if (\is_string($controller) && !class_exists($controller)) {
  129.             return sprintf('Class "%s" does not exist.'$controller);
  130.         }
  131.         $className \is_object($controller) ? get_debug_type($controller) : $controller;
  132.         if (method_exists($controller$method)) {
  133.             return sprintf('Method "%s" on class "%s" should be public and non-abstract.'$method$className);
  134.         }
  135.         $collection $this->getClassMethodsWithoutMagicMethods($controller);
  136.         $alternatives = [];
  137.         foreach ($collection as $item) {
  138.             $lev levenshtein($method$item);
  139.             if ($lev <= \strlen($method) / || str_contains($item$method)) {
  140.                 $alternatives[] = $item;
  141.             }
  142.         }
  143.         asort($alternatives);
  144.         $message sprintf('Expected method "%s" on class "%s"'$method$className);
  145.         if (\count($alternatives) > 0) {
  146.             $message .= sprintf(', did you mean "%s"?'implode('", "'$alternatives));
  147.         } else {
  148.             $message .= sprintf('. Available methods: "%s".'implode('", "'$collection));
  149.         }
  150.         return $message;
  151.     }
  152.     private function getClassMethodsWithoutMagicMethods($classOrObject): array
  153.     {
  154.         $methods get_class_methods($classOrObject);
  155.         return array_filter($methods, function (string $method) {
  156.             return !== strncmp($method'__'2);
  157.         });
  158.     }
  159. }