vendor/symfony/form/FormErrorIterator.php line 31

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\Form;
  11. use Symfony\Component\Form\Exception\BadMethodCallException;
  12. use Symfony\Component\Form\Exception\InvalidArgumentException;
  13. use Symfony\Component\Form\Exception\OutOfBoundsException;
  14. use Symfony\Component\Validator\ConstraintViolation;
  15. /**
  16.  * Iterates over the errors of a form.
  17.  *
  18.  * This class supports recursive iteration. In order to iterate recursively,
  19.  * pass a structure of {@link FormError} and {@link FormErrorIterator} objects
  20.  * to the $errors constructor argument.
  21.  *
  22.  * You can also wrap the iterator into a {@link \RecursiveIteratorIterator} to
  23.  * flatten the recursive structure into a flat list of errors.
  24.  *
  25.  * @author Bernhard Schussek <bschussek@gmail.com>
  26.  */
  27. class FormErrorIterator implements \RecursiveIterator, \SeekableIterator, \ArrayAccess, \Countable
  28. {
  29.     /**
  30.      * The prefix used for indenting nested error messages.
  31.      */
  32.     const INDENTATION '    ';
  33.     private $form;
  34.     private $errors;
  35.     /**
  36.      * @param FormInterface      $form   The erroneous form
  37.      * @param FormError[]|self[] $errors An array of form errors and instances
  38.      *                                   of FormErrorIterator
  39.      *
  40.      * @throws InvalidArgumentException If the errors are invalid
  41.      */
  42.     public function __construct(FormInterface $form, array $errors)
  43.     {
  44.         foreach ($errors as $error) {
  45.             if (!($error instanceof FormError || $error instanceof self)) {
  46.                 throw new InvalidArgumentException(sprintf('The errors must be instances of "Symfony\Component\Form\FormError" or "%s". Got: "%s".'__CLASS__, \is_object($error) ? \get_class($error) : \gettype($error)));
  47.             }
  48.         }
  49.         $this->form $form;
  50.         $this->errors $errors;
  51.     }
  52.     /**
  53.      * Returns all iterated error messages as string.
  54.      *
  55.      * @return string The iterated error messages
  56.      */
  57.     public function __toString()
  58.     {
  59.         $string '';
  60.         foreach ($this->errors as $error) {
  61.             if ($error instanceof FormError) {
  62.                 $string .= 'ERROR: '.$error->getMessage()."\n";
  63.             } else {
  64.                 /* @var self $error */
  65.                 $string .= $error->form->getName().":\n";
  66.                 $string .= self::indent((string) $error);
  67.             }
  68.         }
  69.         return $string;
  70.     }
  71.     /**
  72.      * Returns the iterated form.
  73.      *
  74.      * @return FormInterface The form whose errors are iterated by this object
  75.      */
  76.     public function getForm()
  77.     {
  78.         return $this->form;
  79.     }
  80.     /**
  81.      * Returns the current element of the iterator.
  82.      *
  83.      * @return FormError|self An error or an iterator containing nested errors
  84.      */
  85.     public function current()
  86.     {
  87.         return current($this->errors);
  88.     }
  89.     /**
  90.      * Advances the iterator to the next position.
  91.      */
  92.     public function next()
  93.     {
  94.         next($this->errors);
  95.     }
  96.     /**
  97.      * Returns the current position of the iterator.
  98.      *
  99.      * @return int The 0-indexed position
  100.      */
  101.     public function key()
  102.     {
  103.         return key($this->errors);
  104.     }
  105.     /**
  106.      * Returns whether the iterator's position is valid.
  107.      *
  108.      * @return bool Whether the iterator is valid
  109.      */
  110.     public function valid()
  111.     {
  112.         return null !== key($this->errors);
  113.     }
  114.     /**
  115.      * Sets the iterator's position to the beginning.
  116.      *
  117.      * This method detects if errors have been added to the form since the
  118.      * construction of the iterator.
  119.      */
  120.     public function rewind()
  121.     {
  122.         reset($this->errors);
  123.     }
  124.     /**
  125.      * Returns whether a position exists in the iterator.
  126.      *
  127.      * @param int $position The position
  128.      *
  129.      * @return bool Whether that position exists
  130.      */
  131.     public function offsetExists($position)
  132.     {
  133.         return isset($this->errors[$position]);
  134.     }
  135.     /**
  136.      * Returns the element at a position in the iterator.
  137.      *
  138.      * @param int $position The position
  139.      *
  140.      * @return FormError|FormErrorIterator The element at the given position
  141.      *
  142.      * @throws OutOfBoundsException If the given position does not exist
  143.      */
  144.     public function offsetGet($position)
  145.     {
  146.         if (!isset($this->errors[$position])) {
  147.             throw new OutOfBoundsException('The offset '.$position.' does not exist.');
  148.         }
  149.         return $this->errors[$position];
  150.     }
  151.     /**
  152.      * Unsupported method.
  153.      *
  154.      * @throws BadMethodCallException
  155.      */
  156.     public function offsetSet($position$value)
  157.     {
  158.         throw new BadMethodCallException('The iterator doesn\'t support modification of elements.');
  159.     }
  160.     /**
  161.      * Unsupported method.
  162.      *
  163.      * @throws BadMethodCallException
  164.      */
  165.     public function offsetUnset($position)
  166.     {
  167.         throw new BadMethodCallException('The iterator doesn\'t support modification of elements.');
  168.     }
  169.     /**
  170.      * Returns whether the current element of the iterator can be recursed
  171.      * into.
  172.      *
  173.      * @return bool Whether the current element is an instance of this class
  174.      */
  175.     public function hasChildren()
  176.     {
  177.         return current($this->errors) instanceof self;
  178.     }
  179.     /**
  180.      * Alias of {@link current()}.
  181.      */
  182.     public function getChildren()
  183.     {
  184.         return current($this->errors);
  185.     }
  186.     /**
  187.      * Returns the number of elements in the iterator.
  188.      *
  189.      * Note that this is not the total number of errors, if the constructor
  190.      * parameter $deep was set to true! In that case, you should wrap the
  191.      * iterator into a {@link \RecursiveIteratorIterator} with the standard mode
  192.      * {@link \RecursiveIteratorIterator::LEAVES_ONLY} and count the result.
  193.      *
  194.      *     $iterator = new \RecursiveIteratorIterator($form->getErrors(true));
  195.      *     $count = count(iterator_to_array($iterator));
  196.      *
  197.      * Alternatively, set the constructor argument $flatten to true as well.
  198.      *
  199.      *     $count = count($form->getErrors(true, true));
  200.      *
  201.      * @return int The number of iterated elements
  202.      */
  203.     public function count()
  204.     {
  205.         return \count($this->errors);
  206.     }
  207.     /**
  208.      * Sets the position of the iterator.
  209.      *
  210.      * @param int $position The new position
  211.      *
  212.      * @throws OutOfBoundsException If the position is invalid
  213.      */
  214.     public function seek($position)
  215.     {
  216.         if (!isset($this->errors[$position])) {
  217.             throw new OutOfBoundsException('The offset '.$position.' does not exist.');
  218.         }
  219.         reset($this->errors);
  220.         while ($position !== key($this->errors)) {
  221.             next($this->errors);
  222.         }
  223.     }
  224.     /**
  225.      * Creates iterator for errors with specific codes.
  226.      *
  227.      * @param string|string[] $codes The codes to find
  228.      *
  229.      * @return static new instance which contains only specific errors
  230.      */
  231.     public function findByCodes($codes)
  232.     {
  233.         $codes = (array) $codes;
  234.         $errors = [];
  235.         foreach ($this as $error) {
  236.             $cause $error->getCause();
  237.             if ($cause instanceof ConstraintViolation && \in_array($cause->getCode(), $codestrue)) {
  238.                 $errors[] = $error;
  239.             }
  240.         }
  241.         return new static($this->form$errors);
  242.     }
  243.     /**
  244.      * Utility function for indenting multi-line strings.
  245.      *
  246.      * @param string $string The string
  247.      *
  248.      * @return string The indented string
  249.      */
  250.     private static function indent($string)
  251.     {
  252.         return rtrim(self::INDENTATION.str_replace("\n""\n".self::INDENTATION$string), ' ');
  253.     }
  254. }