vendor/symfony/config/Definition/ArrayNode.php line 227

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\Config\Definition;
  11. use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
  12. use Symfony\Component\Config\Definition\Exception\InvalidTypeException;
  13. use Symfony\Component\Config\Definition\Exception\UnsetKeyException;
  14. /**
  15.  * Represents an Array node in the config tree.
  16.  *
  17.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  18.  */
  19. class ArrayNode extends BaseNode implements PrototypeNodeInterface {
  20.     protected $xmlRemappings = [];
  21.     protected $children = [];
  22.     protected $allowFalse false;
  23.     protected $allowNewKeys true;
  24.     protected $addIfNotSet false;
  25.     protected $performDeepMerging true;
  26.     protected $ignoreExtraKeys false;
  27.     protected $removeExtraKeys true;
  28.     protected $normalizeKeys true;
  29.     public function setNormalizeKeys($normalizeKeys) {
  30.         $this->normalizeKeys = (bool) $normalizeKeys;
  31.     }
  32.     /**
  33.      * Normalizes keys between the different configuration formats.
  34.      *
  35.      * Namely, you mostly have foo_bar in YAML while you have foo-bar in XML.
  36.      * After running this method, all keys are normalized to foo_bar.
  37.      *
  38.      * If you have a mixed key like foo-bar_moo, it will not be altered.
  39.      * The key will also not be altered if the target key already exists.
  40.      *
  41.      * @param mixed $value
  42.      *
  43.      * @return array The value with normalized keys
  44.      */
  45.     protected function preNormalize($value) {
  46.         if (!$this->normalizeKeys || !\is_array($value)) {
  47.             return $value;
  48.         }
  49.         $normalized = [];
  50.         foreach ($value as $k => $v) {
  51.             if (false !== strpos($k'-') && false === strpos($k'_') && !\array_key_exists($normalizedKey str_replace('-''_'$k), $value)) {
  52.                 $normalized[$normalizedKey] = $v;
  53.             } else {
  54.                 $normalized[$k] = $v;
  55.             }
  56.         }
  57.         return $normalized;
  58.     }
  59.     /**
  60.      * Retrieves the children of this node.
  61.      *
  62.      * @return array The children
  63.      */
  64.     public function getChildren() {
  65.         return $this->children;
  66.     }
  67.     /**
  68.      * Sets the xml remappings that should be performed.
  69.      *
  70.      * @param array $remappings An array of the form [[string, string]]
  71.      */
  72.     public function setXmlRemappings(array $remappings) {
  73.         $this->xmlRemappings $remappings;
  74.     }
  75.     /**
  76.      * Gets the xml remappings that should be performed.
  77.      *
  78.      * @return array an array of the form [[string, string]]
  79.      */
  80.     public function getXmlRemappings() {
  81.         return $this->xmlRemappings;
  82.     }
  83.     /**
  84.      * Sets whether to add default values for this array if it has not been
  85.      * defined in any of the configuration files.
  86.      *
  87.      * @param bool $boolean
  88.      */
  89.     public function setAddIfNotSet($boolean) {
  90.         $this->addIfNotSet = (bool) $boolean;
  91.     }
  92.     /**
  93.      * Sets whether false is allowed as value indicating that the array should be unset.
  94.      *
  95.      * @param bool $allow
  96.      */
  97.     public function setAllowFalse($allow) {
  98.         $this->allowFalse = (bool) $allow;
  99.     }
  100.     /**
  101.      * Sets whether new keys can be defined in subsequent configurations.
  102.      *
  103.      * @param bool $allow
  104.      */
  105.     public function setAllowNewKeys($allow) {
  106.         $this->allowNewKeys = (bool) $allow;
  107.     }
  108.     /**
  109.      * Sets if deep merging should occur.
  110.      *
  111.      * @param bool $boolean
  112.      */
  113.     public function setPerformDeepMerging($boolean) {
  114.         $this->performDeepMerging = (bool) $boolean;
  115.     }
  116.     /**
  117.      * Whether extra keys should just be ignored without an exception.
  118.      *
  119.      * @param bool $boolean To allow extra keys
  120.      * @param bool $remove  To remove extra keys
  121.      */
  122.     public function setIgnoreExtraKeys($boolean$remove true) {
  123.         $this->ignoreExtraKeys = (bool) $boolean;
  124.         $this->removeExtraKeys $this->ignoreExtraKeys && $remove;
  125.     }
  126.     /**
  127.      * {@inheritdoc}
  128.      */
  129.     public function setName($name) {
  130.         $this->name $name;
  131.     }
  132.     /**
  133.      * {@inheritdoc}
  134.      */
  135.     public function hasDefaultValue() {
  136.         return $this->addIfNotSet;
  137.     }
  138.     /**
  139.      * {@inheritdoc}
  140.      */
  141.     public function getDefaultValue() {
  142.         if (!$this->hasDefaultValue()) {
  143.             throw new \RuntimeException(sprintf('The node at path "%s" has no default value.'$this->getPath()));
  144.         }
  145.         $defaults = [];
  146.         foreach ($this->children as $name => $child) {
  147.             if ($child->hasDefaultValue()) {
  148.                 $defaults[$name] = $child->getDefaultValue();
  149.             }
  150.         }
  151.         return $defaults;
  152.     }
  153.     /**
  154.      * Adds a child node.
  155.      *
  156.      * @throws \InvalidArgumentException when the child node has no name
  157.      * @throws \InvalidArgumentException when the child node's name is not unique
  158.      */
  159.     public function addChild(NodeInterface $node) {
  160.         $name $node->getName();
  161.         if (!\strlen($name)) {
  162.             throw new \InvalidArgumentException('Child nodes must be named.');
  163.         }
  164.         if (isset($this->children[$name])) {
  165.             throw new \InvalidArgumentException(sprintf('A child node named "%s" already exists.'$name));
  166.         }
  167.         $this->children[$name] = $node;
  168.     }
  169.     /**
  170.      * Finalizes the value of this node.
  171.      *
  172.      * @param mixed $value
  173.      *
  174.      * @return mixed The finalised value
  175.      *
  176.      * @throws UnsetKeyException
  177.      * @throws InvalidConfigurationException if the node doesn't have enough children
  178.      */
  179.     protected function finalizeValue($value) {
  180.         if (false === $value) {
  181.             throw new UnsetKeyException(sprintf('Unsetting key for path "%s", value: %s'$this->getPath(), json_encode($value)));
  182.         }
  183.         foreach ($this->children as $name => $child) {
  184.             if (!\array_key_exists($name$value)) {
  185.                 if ($child->isRequired()) {
  186.                     $ex = new InvalidConfigurationException(sprintf('The child node "%s" at path "%s" must be configured.'$name$this->getPath()));
  187.                     $ex->setPath($this->getPath());
  188.                     throw $ex;
  189.                 }
  190.                 if ($child->hasDefaultValue()) {
  191.                     $value[$name] = $child->getDefaultValue();
  192.                 }
  193.                 continue;
  194.             }
  195.             if ($child->isDeprecated()) {
  196.                 @trigger_error($child->getDeprecationMessage($name$this->getPath()), E_USER_DEPRECATED);
  197.             }
  198.             try {
  199.                 $value[$name] = $child->finalize($value[$name]);
  200.             } catch (UnsetKeyException $e) {
  201.                 unset($value[$name]);
  202.             }
  203.         }
  204.         return $value;
  205.     }
  206.     /**
  207.      * Validates the type of the value.
  208.      *
  209.      * @param mixed $value
  210.      *
  211.      * @throws InvalidTypeException
  212.      */
  213.     protected function validateType($value) {
  214.         if (!\is_array($value) && (!$this->allowFalse || false !== $value)) {
  215.             $ex = new InvalidTypeException(sprintf('Invalid type for path "%s". Expected array, but got %s'$this->getPath(), \gettype($value)));
  216.             if ($hint $this->getInfo()) {
  217.                 $ex->addHint($hint);
  218.             }
  219.             $ex->setPath($this->getPath());
  220.             throw $ex;
  221.         }
  222.     }
  223.     /**
  224.      * Normalizes the value.
  225.      *
  226.      * @param mixed $value The value to normalize
  227.      *
  228.      * @return mixed The normalized value
  229.      *
  230.      * @throws InvalidConfigurationException
  231.      */
  232.     protected function normalizeValue($value) {
  233.         if (false === $value) {
  234.             return $value;
  235.         }
  236.         $value $this->remapXml($value);
  237.         $normalized = [];
  238.         foreach ($value as $name => $val) {
  239.             if (isset($this->children[$name])) {
  240.                 try {
  241.                     $normalized[$name] = $this->children[$name]->normalize($val);
  242.                 } catch (UnsetKeyException $e) {
  243.                     
  244.                 }
  245.                 unset($value[$name]);
  246.             } elseif (!$this->removeExtraKeys) {
  247.                 $normalized[$name] = $val;
  248.             }
  249.         }
  250.         // if extra fields are present, throw exception
  251.         if (\count($value) && !$this->ignoreExtraKeys) {
  252.             $proposals array_keys($this->children);
  253.             sort($proposals);
  254.             $guesses = [];
  255.             foreach (array_keys($value) as $subject) {
  256.                 $minScore INF;
  257.                 foreach ($proposals as $proposal) {
  258.                     $distance levenshtein($subject$proposal);
  259.                     if ($distance <= $minScore && $distance 3) {
  260.                         $guesses[$proposal] = $distance;
  261.                         $minScore $distance;
  262.                     }
  263.                 }
  264.             }
  265.             $msg sprintf('Unrecognized option%s "%s" under "%s"'=== \count($value) ? '' 's'implode(', 'array_keys($value)), $this->getPath());
  266.             if (\count($guesses)) {
  267.                 asort($guesses);
  268.                 $msg .= sprintf('. Did you mean "%s"?'implode('", "'array_keys($guesses)));
  269.             } else {
  270.                 $msg .= sprintf('. Available option%s %s "%s".'=== \count($proposals) ? '' 's'=== \count($proposals) ? 'is' 'are'implode('", "'$proposals));
  271.             }
  272.             $ex = new InvalidConfigurationException($msg);
  273.             $ex->setPath($this->getPath());
  274.             throw $ex;
  275.         }
  276.         return $normalized;
  277.     }
  278.     /**
  279.      * Remaps multiple singular values to a single plural value.
  280.      *
  281.      * @param array $value The source values
  282.      *
  283.      * @return array The remapped values
  284.      */
  285.     protected function remapXml($value) {
  286.         foreach ($this->xmlRemappings as list($singular$plural)) {
  287.             if (!isset($value[$singular])) {
  288.                 continue;
  289.             }
  290.             $value[$plural] = Processor::normalizeConfig($value$singular$plural);
  291.             unset($value[$singular]);
  292.         }
  293.         return $value;
  294.     }
  295.     /**
  296.      * Merges values together.
  297.      *
  298.      * @param mixed $leftSide  The left side to merge
  299.      * @param mixed $rightSide The right side to merge
  300.      *
  301.      * @return mixed The merged values
  302.      *
  303.      * @throws InvalidConfigurationException
  304.      * @throws \RuntimeException
  305.      */
  306.     protected function mergeValues($leftSide$rightSide) {
  307.         if (false === $rightSide) {
  308.             // if this is still false after the last config has been merged the
  309.             // finalization pass will take care of removing this key entirely
  310.             return false;
  311.         }
  312.         if (false === $leftSide || !$this->performDeepMerging) {
  313.             return $rightSide;
  314.         }
  315.         foreach ($rightSide as $k => $v) {
  316.             // no conflict
  317.             if (!\array_key_exists($k$leftSide)) {
  318.                 if (!$this->allowNewKeys) {
  319.                     $ex = new InvalidConfigurationException(sprintf('You are not allowed to define new elements for path "%s". Please define all elements for this path in one config file. If you are trying to overwrite an element, make sure you redefine it with the same name.'$this->getPath()));
  320.                     $ex->setPath($this->getPath());
  321.                     throw $ex;
  322.                 }
  323.                 $leftSide[$k] = $v;
  324.                 continue;
  325.             }
  326.             if (!isset($this->children[$k])) {
  327.                 throw new \RuntimeException('merge() expects a normalized config array.');
  328.             }
  329.             $leftSide[$k] = $this->children[$k]->merge($leftSide[$k], $v);
  330.         }
  331.         return $leftSide;
  332.     }
  333.     /**
  334.      * {@inheritdoc}
  335.      */
  336.     protected function allowPlaceholders(): bool {
  337.         return false;
  338.     }
  339. }