vendor/symfony/validator/DataCollector/ValidatorDataCollector.php line 50

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\Validator\DataCollector;
  11. use Symfony\Component\Form\FormInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\HttpKernel\DataCollector\DataCollector;
  15. use Symfony\Component\HttpKernel\DataCollector\LateDataCollectorInterface;
  16. use Symfony\Component\Validator\Validator\TraceableValidator;
  17. use Symfony\Component\VarDumper\Caster\Caster;
  18. use Symfony\Component\VarDumper\Caster\ClassStub;
  19. use Symfony\Component\VarDumper\Cloner\Data;
  20. use Symfony\Component\VarDumper\Cloner\Stub;
  21. /**
  22.  * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
  23.  *
  24.  * @final since Symfony 4.4
  25.  */
  26. class ValidatorDataCollector extends DataCollector implements LateDataCollectorInterface
  27. {
  28.     private $validator;
  29.     public function __construct(TraceableValidator $validator)
  30.     {
  31.         $this->validator $validator;
  32.         $this->reset();
  33.     }
  34.     /**
  35.      * {@inheritdoc}
  36.      *
  37.      * @param \Throwable|null $exception
  38.      */
  39.     public function collect(Request $requestResponse $response/*, \Throwable $exception = null*/)
  40.     {
  41.         // Everything is collected once, on kernel terminate.
  42.     }
  43.     public function reset()
  44.     {
  45.         $this->data = [
  46.             'calls' => $this->cloneVar([]),
  47.             'violations_count' => 0,
  48.         ];
  49.     }
  50.     /**
  51.      * {@inheritdoc}
  52.      */
  53.     public function lateCollect()
  54.     {
  55.         $collected $this->validator->getCollectedData();
  56.         $this->data['calls'] = $this->cloneVar($collected);
  57.         $this->data['violations_count'] = array_reduce($collected, function ($previous$item) {
  58.             return $previous \count($item['violations']);
  59.         }, 0);
  60.     }
  61.     /**
  62.      * @return Data
  63.      */
  64.     public function getCalls()
  65.     {
  66.         return $this->data['calls'];
  67.     }
  68.     /**
  69.      * @return int
  70.      */
  71.     public function getViolationsCount()
  72.     {
  73.         return $this->data['violations_count'];
  74.     }
  75.     /**
  76.      * {@inheritdoc}
  77.      */
  78.     public function getName()
  79.     {
  80.         return 'validator';
  81.     }
  82.     protected function getCasters()
  83.     {
  84.         return parent::getCasters() + [
  85.             \Exception::class => function (\Exception $e, array $aStub $s) {
  86.                 foreach (["\0Exception\0previous""\0Exception\0trace"] as $k) {
  87.                     if (isset($a[$k])) {
  88.                         unset($a[$k]);
  89.                         ++$s->cut;
  90.                     }
  91.                 }
  92.                 return $a;
  93.             },
  94.             FormInterface::class => function (FormInterface $f, array $a) {
  95.                 return [
  96.                     Caster::PREFIX_VIRTUAL.'name' => $f->getName(),
  97.                     Caster::PREFIX_VIRTUAL.'type_class' => new ClassStub(\get_class($f->getConfig()->getType()->getInnerType())),
  98.                     Caster::PREFIX_VIRTUAL.'data' => $f->getData(),
  99.                 ];
  100.             },
  101.         ];
  102.     }
  103. }