vendor/symfony/routing/Loader/YamlFileLoader.php line 177

Open in your IDE?
  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\Routing\Loader;
  11. use Symfony\Component\Config\Loader\FileLoader;
  12. use Symfony\Component\Config\Resource\FileResource;
  13. use Symfony\Component\Routing\Loader\Configurator\Traits\HostTrait;
  14. use Symfony\Component\Routing\Loader\Configurator\Traits\LocalizedRouteTrait;
  15. use Symfony\Component\Routing\Loader\Configurator\Traits\PrefixTrait;
  16. use Symfony\Component\Routing\RouteCollection;
  17. use Symfony\Component\Yaml\Exception\ParseException;
  18. use Symfony\Component\Yaml\Parser as YamlParser;
  19. use Symfony\Component\Yaml\Yaml;
  20. /**
  21.  * YamlFileLoader loads Yaml routing files.
  22.  *
  23.  * @author Fabien Potencier <fabien@symfony.com>
  24.  * @author Tobias Schultze <http://tobion.de>
  25.  */
  26. class YamlFileLoader extends FileLoader
  27. {
  28.     use HostTrait;
  29.     use LocalizedRouteTrait;
  30.     use PrefixTrait;
  31.     private const AVAILABLE_KEYS = [
  32.         'resource''type''prefix''path''host''schemes''methods''defaults''requirements''options''condition''controller''name_prefix''trailing_slash_on_root''locale''format''utf8''exclude''stateless',
  33.     ];
  34.     private YamlParser $yamlParser;
  35.     /**
  36.      * @throws \InvalidArgumentException When a route can't be parsed because YAML is invalid
  37.      */
  38.     public function load(mixed $filestring $type null): RouteCollection
  39.     {
  40.         $path $this->locator->locate($file);
  41.         if (!stream_is_local($path)) {
  42.             throw new \InvalidArgumentException(sprintf('This is not a local file "%s".'$path));
  43.         }
  44.         if (!file_exists($path)) {
  45.             throw new \InvalidArgumentException(sprintf('File "%s" not found.'$path));
  46.         }
  47.         $this->yamlParser ??= new YamlParser();
  48.         try {
  49.             $parsedConfig $this->yamlParser->parseFile($pathYaml::PARSE_CONSTANT);
  50.         } catch (ParseException $e) {
  51.             throw new \InvalidArgumentException(sprintf('The file "%s" does not contain valid YAML: '$path).$e->getMessage(), 0$e);
  52.         }
  53.         $collection = new RouteCollection();
  54.         $collection->addResource(new FileResource($path));
  55.         // empty file
  56.         if (null === $parsedConfig) {
  57.             return $collection;
  58.         }
  59.         // not an array
  60.         if (!\is_array($parsedConfig)) {
  61.             throw new \InvalidArgumentException(sprintf('The file "%s" must contain a YAML array.'$path));
  62.         }
  63.         foreach ($parsedConfig as $name => $config) {
  64.             if (str_starts_with($name'when@')) {
  65.                 if (!$this->env || 'when@'.$this->env !== $name) {
  66.                     continue;
  67.                 }
  68.                 foreach ($config as $name => $config) {
  69.                     $this->validate($config$name.'" when "@'.$this->env$path);
  70.                     if (isset($config['resource'])) {
  71.                         $this->parseImport($collection$config$path$file);
  72.                     } else {
  73.                         $this->parseRoute($collection$name$config$path);
  74.                     }
  75.                 }
  76.                 continue;
  77.             }
  78.             $this->validate($config$name$path);
  79.             if (isset($config['resource'])) {
  80.                 $this->parseImport($collection$config$path$file);
  81.             } else {
  82.                 $this->parseRoute($collection$name$config$path);
  83.             }
  84.         }
  85.         return $collection;
  86.     }
  87.     /**
  88.      * {@inheritdoc}
  89.      */
  90.     public function supports(mixed $resourcestring $type null): bool
  91.     {
  92.         return \is_string($resource) && \in_array(pathinfo($resource\PATHINFO_EXTENSION), ['yml''yaml'], true) && (!$type || 'yaml' === $type);
  93.     }
  94.     /**
  95.      * Parses a route and adds it to the RouteCollection.
  96.      */
  97.     protected function parseRoute(RouteCollection $collectionstring $name, array $configstring $path)
  98.     {
  99.         if (isset($config['alias'])) {
  100.             $alias $collection->addAlias($name$config['alias']);
  101.             $deprecation $config['deprecated'] ?? null;
  102.             if (null !== $deprecation) {
  103.                 $alias->setDeprecated(
  104.                     $deprecation['package'],
  105.                     $deprecation['version'],
  106.                     $deprecation['message'] ?? ''
  107.                 );
  108.             }
  109.             return;
  110.         }
  111.         $defaults $config['defaults'] ?? [];
  112.         $requirements $config['requirements'] ?? [];
  113.         $options $config['options'] ?? [];
  114.         foreach ($requirements as $placeholder => $requirement) {
  115.             if (\is_int($placeholder)) {
  116.                 throw new \InvalidArgumentException(sprintf('A placeholder name must be a string (%d given). Did you forget to specify the placeholder key for the requirement "%s" of route "%s" in "%s"?'$placeholder$requirement$name$path));
  117.             }
  118.         }
  119.         if (isset($config['controller'])) {
  120.             $defaults['_controller'] = $config['controller'];
  121.         }
  122.         if (isset($config['locale'])) {
  123.             $defaults['_locale'] = $config['locale'];
  124.         }
  125.         if (isset($config['format'])) {
  126.             $defaults['_format'] = $config['format'];
  127.         }
  128.         if (isset($config['utf8'])) {
  129.             $options['utf8'] = $config['utf8'];
  130.         }
  131.         if (isset($config['stateless'])) {
  132.             $defaults['_stateless'] = $config['stateless'];
  133.         }
  134.         $routes $this->createLocalizedRoute($collection$name$config['path']);
  135.         $routes->addDefaults($defaults);
  136.         $routes->addRequirements($requirements);
  137.         $routes->addOptions($options);
  138.         $routes->setSchemes($config['schemes'] ?? []);
  139.         $routes->setMethods($config['methods'] ?? []);
  140.         $routes->setCondition($config['condition'] ?? null);
  141.         if (isset($config['host'])) {
  142.             $this->addHost($routes$config['host']);
  143.         }
  144.     }
  145.     /**
  146.      * Parses an import and adds the routes in the resource to the RouteCollection.
  147.      */
  148.     protected function parseImport(RouteCollection $collection, array $configstring $pathstring $file)
  149.     {
  150.         $type $config['type'] ?? null;
  151.         $prefix $config['prefix'] ?? '';
  152.         $defaults $config['defaults'] ?? [];
  153.         $requirements $config['requirements'] ?? [];
  154.         $options $config['options'] ?? [];
  155.         $host $config['host'] ?? null;
  156.         $condition $config['condition'] ?? null;
  157.         $schemes $config['schemes'] ?? null;
  158.         $methods $config['methods'] ?? null;
  159.         $trailingSlashOnRoot $config['trailing_slash_on_root'] ?? true;
  160.         $namePrefix $config['name_prefix'] ?? null;
  161.         $exclude $config['exclude'] ?? null;
  162.         if (isset($config['controller'])) {
  163.             $defaults['_controller'] = $config['controller'];
  164.         }
  165.         if (isset($config['locale'])) {
  166.             $defaults['_locale'] = $config['locale'];
  167.         }
  168.         if (isset($config['format'])) {
  169.             $defaults['_format'] = $config['format'];
  170.         }
  171.         if (isset($config['utf8'])) {
  172.             $options['utf8'] = $config['utf8'];
  173.         }
  174.         if (isset($config['stateless'])) {
  175.             $defaults['_stateless'] = $config['stateless'];
  176.         }
  177.         $this->setCurrentDir(\dirname($path));
  178.         /** @var RouteCollection[] $imported */
  179.         $imported $this->import($config['resource'], $typefalse$file$exclude) ?: [];
  180.         if (!\is_array($imported)) {
  181.             $imported = [$imported];
  182.         }
  183.         foreach ($imported as $subCollection) {
  184.             $this->addPrefix($subCollection$prefix$trailingSlashOnRoot);
  185.             if (null !== $host) {
  186.                 $this->addHost($subCollection$host);
  187.             }
  188.             if (null !== $condition) {
  189.                 $subCollection->setCondition($condition);
  190.             }
  191.             if (null !== $schemes) {
  192.                 $subCollection->setSchemes($schemes);
  193.             }
  194.             if (null !== $methods) {
  195.                 $subCollection->setMethods($methods);
  196.             }
  197.             if (null !== $namePrefix) {
  198.                 $subCollection->addNamePrefix($namePrefix);
  199.             }
  200.             $subCollection->addDefaults($defaults);
  201.             $subCollection->addRequirements($requirements);
  202.             $subCollection->addOptions($options);
  203.             $collection->addCollection($subCollection);
  204.         }
  205.     }
  206.     /**
  207.      * @throws \InvalidArgumentException If one of the provided config keys is not supported,
  208.      *                                   something is missing or the combination is nonsense
  209.      */
  210.     protected function validate(mixed $configstring $namestring $path)
  211.     {
  212.         if (!\is_array($config)) {
  213.             throw new \InvalidArgumentException(sprintf('The definition of "%s" in "%s" must be a YAML array.'$name$path));
  214.         }
  215.         if (isset($config['alias'])) {
  216.             $this->validateAlias($config$name$path);
  217.             return;
  218.         }
  219.         if ($extraKeys array_diff(array_keys($config), self::AVAILABLE_KEYS)) {
  220.             throw new \InvalidArgumentException(sprintf('The routing file "%s" contains unsupported keys for "%s": "%s". Expected one of: "%s".'$path$nameimplode('", "'$extraKeys), implode('", "'self::AVAILABLE_KEYS)));
  221.         }
  222.         if (isset($config['resource']) && isset($config['path'])) {
  223.             throw new \InvalidArgumentException(sprintf('The routing file "%s" must not specify both the "resource" key and the "path" key for "%s". Choose between an import and a route definition.'$path$name));
  224.         }
  225.         if (!isset($config['resource']) && isset($config['type'])) {
  226.             throw new \InvalidArgumentException(sprintf('The "type" key for the route definition "%s" in "%s" is unsupported. It is only available for imports in combination with the "resource" key.'$name$path));
  227.         }
  228.         if (!isset($config['resource']) && !isset($config['path'])) {
  229.             throw new \InvalidArgumentException(sprintf('You must define a "path" for the route "%s" in file "%s".'$name$path));
  230.         }
  231.         if (isset($config['controller']) && isset($config['defaults']['_controller'])) {
  232.             throw new \InvalidArgumentException(sprintf('The routing file "%s" must not specify both the "controller" key and the defaults key "_controller" for "%s".'$path$name));
  233.         }
  234.         if (isset($config['stateless']) && isset($config['defaults']['_stateless'])) {
  235.             throw new \InvalidArgumentException(sprintf('The routing file "%s" must not specify both the "stateless" key and the defaults key "_stateless" for "%s".'$path$name));
  236.         }
  237.     }
  238.     /**
  239.      * @throws \InvalidArgumentException If one of the provided config keys is not supported,
  240.      *                                   something is missing or the combination is nonsense
  241.      */
  242.     private function validateAlias(array $configstring $namestring $path): void
  243.     {
  244.         foreach ($config as $key => $value) {
  245.             if (!\in_array($key, ['alias''deprecated'], true)) {
  246.                 throw new \InvalidArgumentException(sprintf('The routing file "%s" must not specify other keys than "alias" and "deprecated" for "%s".'$path$name));
  247.             }
  248.             if ('deprecated' === $key) {
  249.                 if (!isset($value['package'])) {
  250.                     throw new \InvalidArgumentException(sprintf('The routing file "%s" must specify the attribute "package" of the "deprecated" option for "%s".'$path$name));
  251.                 }
  252.                 if (!isset($value['version'])) {
  253.                     throw new \InvalidArgumentException(sprintf('The routing file "%s" must specify the attribute "version" of the "deprecated" option for "%s".'$path$name));
  254.                 }
  255.             }
  256.         }
  257.     }
  258. }