| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 | 
							- <?php
 
- /*
 
-  * This file is part of the Symfony package.
 
-  *
 
-  * (c) Fabien Potencier <fabien@symfony.com>
 
-  *
 
-  * For the full copyright and license information, please view the LICENSE
 
-  * file that was distributed with this source code.
 
-  */
 
- namespace Symfony\Component\Validator\Constraints;
 
- use Symfony\Component\Validator\Context\ExecutionContextInterface;
 
- use Symfony\Component\Validator\Constraint;
 
- use Symfony\Component\Validator\ConstraintValidator;
 
- use Symfony\Component\Validator\Constraints\Deprecated\UuidValidator as Deprecated;
 
- use Symfony\Component\Validator\Exception\UnexpectedTypeException;
 
- /**
 
-  * Validates whether the value is a valid UUID per RFC 4122.
 
-  *
 
-  * @author Colin O'Dell <colinodell@gmail.com>
 
-  * @author Bernhard Schussek <bschussek@gmail.com>
 
-  *
 
-  * @see http://tools.ietf.org/html/rfc4122
 
-  * @see https://en.wikipedia.org/wiki/Universally_unique_identifier
 
-  */
 
- class UuidValidator extends ConstraintValidator
 
- {
 
-     // The strict pattern matches UUIDs like this:
 
-     // xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx
 
-     // Roughly speaking:
 
-     // x = any hexadecimal character
 
-     // M = any allowed version {1..5}
 
-     // N = any allowed variant {8, 9, a, b}
 
-     const STRICT_LENGTH = 36;
 
-     const STRICT_FIRST_HYPHEN_POSITION = 8;
 
-     const STRICT_LAST_HYPHEN_POSITION = 23;
 
-     const STRICT_VERSION_POSITION = 14;
 
-     const STRICT_VARIANT_POSITION = 19;
 
-     // The loose pattern validates similar yet non-compliant UUIDs.
 
-     // Hyphens are completely optional. If present, they should only appear
 
-     // between every fourth character:
 
-     // xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx
 
-     // xxxxxxxxxxxx-xxxx-xxxx-xxxx-xxxx-xxxx
 
-     // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
 
-     // The value can also be wrapped with characters like []{}:
 
-     // {xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx}
 
-     // Neither the version nor the variant is validated by this pattern.
 
-     const LOOSE_MAX_LENGTH = 39;
 
-     const LOOSE_FIRST_HYPHEN_POSITION = 4;
 
-     /**
 
-      * @deprecated since version 2.6, to be removed in 3.0
 
-      */
 
-     const STRICT_PATTERN = '/^[a-f0-9]{8}-[a-f0-9]{4}-[%s][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$/i';
 
-     /**
 
-      * @deprecated since version 2.6, to be removed in 3.0
 
-      */
 
-     const LOOSE_PATTERN = '/^[a-f0-9]{4}(?:-?[a-f0-9]{4}){7}$/i';
 
-     /**
 
-      * @deprecated since version 2.6, to be removed in 3.0
 
-      */
 
-     const STRICT_UUID_LENGTH = 36;
 
-     /**
 
-      * {@inheritdoc}
 
-      */
 
-     public function validate($value, Constraint $constraint)
 
-     {
 
-         if (null === $value || '' === $value) {
 
-             return;
 
-         }
 
-         if (!$constraint instanceof Uuid) {
 
-             throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\Uuid');
 
-         }
 
-         if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) {
 
-             throw new UnexpectedTypeException($value, 'string');
 
-         }
 
-         $value = (string) $value;
 
-         if ($constraint->strict) {
 
-             $this->validateStrict($value, $constraint);
 
-             return;
 
-         }
 
-         $this->validateLoose($value, $constraint);
 
-     }
 
-     private function validateLoose($value, Uuid $constraint)
 
-     {
 
-         // Error priority:
 
-         // 1. ERROR_INVALID_CHARACTERS
 
-         // 2. ERROR_INVALID_HYPHEN_PLACEMENT
 
-         // 3. ERROR_TOO_SHORT/ERROR_TOO_LONG
 
-         // Trim any wrapping characters like [] or {} used by some legacy systems
 
-         $trimmed = trim($value, '[]{}');
 
-         // Position of the next expected hyphen
 
-         $h = self::LOOSE_FIRST_HYPHEN_POSITION;
 
-         // Expected length
 
-         $l = self::LOOSE_MAX_LENGTH;
 
-         for ($i = 0; $i < $l; ++$i) {
 
-             // Check length
 
-             if (!isset($trimmed[$i])) {
 
-                 if ($this->context instanceof ExecutionContextInterface) {
 
-                     $this->context->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::TOO_SHORT_ERROR)
 
-                         ->addViolation();
 
-                 } else {
 
-                     $this->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::TOO_SHORT_ERROR)
 
-                         ->addViolation();
 
-                 }
 
-                 return;
 
-             }
 
-             // Hyphens must occur every fifth position
 
-             // xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx
 
-             //     ^    ^    ^    ^    ^    ^    ^
 
-             if ('-' === $trimmed[$i]) {
 
-                 if ($i !== $h) {
 
-                     if ($this->context instanceof ExecutionContextInterface) {
 
-                         $this->context->buildViolation($constraint->message)
 
-                             ->setParameter('{{ value }}', $this->formatValue($value))
 
-                             ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                             ->addViolation();
 
-                     } else {
 
-                         $this->buildViolation($constraint->message)
 
-                             ->setParameter('{{ value }}', $this->formatValue($value))
 
-                             ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                             ->addViolation();
 
-                     }
 
-                     return;
 
-                 }
 
-                 $h += 5;
 
-                 continue;
 
-             }
 
-             // Missing hyphens are ignored
 
-             if ($i === $h) {
 
-                 $h += 4;
 
-                 --$l;
 
-             }
 
-             // Check characters
 
-             if (!ctype_xdigit($trimmed[$i])) {
 
-                 if ($this->context instanceof ExecutionContextInterface) {
 
-                     $this->context->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_CHARACTERS_ERROR)
 
-                         ->addViolation();
 
-                 } else {
 
-                     $this->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_CHARACTERS_ERROR)
 
-                         ->addViolation();
 
-                 }
 
-                 return;
 
-             }
 
-         }
 
-         // Check length again
 
-         if (isset($trimmed[$i])) {
 
-             if ($this->context instanceof ExecutionContextInterface) {
 
-                 $this->context->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::TOO_LONG_ERROR)
 
-                     ->addViolation();
 
-             } else {
 
-                 $this->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::TOO_LONG_ERROR)
 
-                     ->addViolation();
 
-             }
 
-         }
 
-     }
 
-     private function validateStrict($value, Uuid $constraint)
 
-     {
 
-         // Error priority:
 
-         // 1. ERROR_INVALID_CHARACTERS
 
-         // 2. ERROR_INVALID_HYPHEN_PLACEMENT
 
-         // 3. ERROR_TOO_SHORT/ERROR_TOO_LONG
 
-         // 4. ERROR_INVALID_VERSION
 
-         // 5. ERROR_INVALID_VARIANT
 
-         // Position of the next expected hyphen
 
-         $h = self::STRICT_FIRST_HYPHEN_POSITION;
 
-         for ($i = 0; $i < self::STRICT_LENGTH; ++$i) {
 
-             // Check length
 
-             if (!isset($value[$i])) {
 
-                 if ($this->context instanceof ExecutionContextInterface) {
 
-                     $this->context->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::TOO_SHORT_ERROR)
 
-                         ->addViolation();
 
-                 } else {
 
-                     $this->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::TOO_SHORT_ERROR)
 
-                         ->addViolation();
 
-                 }
 
-                 return;
 
-             }
 
-             // Check hyphen placement
 
-             // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
 
-             //         ^    ^    ^    ^
 
-             if ('-' === $value[$i]) {
 
-                 if ($i !== $h) {
 
-                     if ($this->context instanceof ExecutionContextInterface) {
 
-                         $this->context->buildViolation($constraint->message)
 
-                             ->setParameter('{{ value }}', $this->formatValue($value))
 
-                             ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                             ->addViolation();
 
-                     } else {
 
-                         $this->buildViolation($constraint->message)
 
-                             ->setParameter('{{ value }}', $this->formatValue($value))
 
-                             ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                             ->addViolation();
 
-                     }
 
-                     return;
 
-                 }
 
-                 // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
 
-                 //                        ^
 
-                 if ($h < self::STRICT_LAST_HYPHEN_POSITION) {
 
-                     $h += 5;
 
-                 }
 
-                 continue;
 
-             }
 
-             // Check characters
 
-             if (!ctype_xdigit($value[$i])) {
 
-                 if ($this->context instanceof ExecutionContextInterface) {
 
-                     $this->context->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_CHARACTERS_ERROR)
 
-                         ->addViolation();
 
-                 } else {
 
-                     $this->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_CHARACTERS_ERROR)
 
-                         ->addViolation();
 
-                 }
 
-                 return;
 
-             }
 
-             // Missing hyphen
 
-             if ($i === $h) {
 
-                 if ($this->context instanceof ExecutionContextInterface) {
 
-                     $this->context->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                         ->addViolation();
 
-                 } else {
 
-                     $this->buildViolation($constraint->message)
 
-                         ->setParameter('{{ value }}', $this->formatValue($value))
 
-                         ->setCode(Uuid::INVALID_HYPHEN_PLACEMENT_ERROR)
 
-                         ->addViolation();
 
-                 }
 
-                 return;
 
-             }
 
-         }
 
-         // Check length again
 
-         if (isset($value[$i])) {
 
-             if ($this->context instanceof ExecutionContextInterface) {
 
-                 $this->context->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::TOO_LONG_ERROR)
 
-                     ->addViolation();
 
-             } else {
 
-                 $this->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::TOO_LONG_ERROR)
 
-                     ->addViolation();
 
-             }
 
-         }
 
-         // Check version
 
-         if (!in_array($value[self::STRICT_VERSION_POSITION], $constraint->versions)) {
 
-             if ($this->context instanceof ExecutionContextInterface) {
 
-                 $this->context->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::INVALID_VERSION_ERROR)
 
-                     ->addViolation();
 
-             } else {
 
-                 $this->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::INVALID_VERSION_ERROR)
 
-                     ->addViolation();
 
-             }
 
-         }
 
-         // Check variant - first two bits must equal "10"
 
-         //   0b10xx
 
-         // & 0b1100 (12)
 
-         // = 0b1000 (8)
 
-         if ((hexdec($value[self::STRICT_VARIANT_POSITION]) & 12) !== 8) {
 
-             if ($this->context instanceof ExecutionContextInterface) {
 
-                 $this->context->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::INVALID_VARIANT_ERROR)
 
-                     ->addViolation();
 
-             } else {
 
-                 $this->buildViolation($constraint->message)
 
-                     ->setParameter('{{ value }}', $this->formatValue($value))
 
-                     ->setCode(Uuid::INVALID_VARIANT_ERROR)
 
-                     ->addViolation();
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |