* * 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\Constraint; use Symfony\Component\Validator\ConstraintValidator; use Symfony\Component\Validator\Exception\UnexpectedTypeException; /** * Validates whether the value is a valid ISSN. * * @author Antonio J. GarcĂ­a Lagar * @author Bernhard Schussek * * @see https://en.wikipedia.org/wiki/Issn */ class IssnValidator extends ConstraintValidator { /** * {@inheritdoc} */ public function validate($value, Constraint $constraint) { if (!$constraint instanceof Issn) { throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\Issn'); } if (null === $value || '' === $value) { return; } if (!is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) { throw new UnexpectedTypeException($value, 'string'); } $value = (string) $value; $canonical = $value; // 1234-567X // ^ if (isset($canonical[4]) && '-' === $canonical[4]) { // remove hyphen $canonical = substr($canonical, 0, 4).substr($canonical, 5); } elseif ($constraint->requireHyphen) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::MISSING_HYPHEN_ERROR) ->addViolation(); return; } $length = strlen($canonical); if ($length < 8) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::TOO_SHORT_ERROR) ->addViolation(); return; } if ($length > 8) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::TOO_LONG_ERROR) ->addViolation(); return; } // 1234567X // ^^^^^^^ digits only if (!ctype_digit(substr($canonical, 0, 7))) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::INVALID_CHARACTERS_ERROR) ->addViolation(); return; } // 1234567X // ^ digit, x or X if (!ctype_digit($canonical[7]) && 'x' !== $canonical[7] && 'X' !== $canonical[7]) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::INVALID_CHARACTERS_ERROR) ->addViolation(); return; } // 1234567X // ^ case-sensitive? if ($constraint->caseSensitive && 'x' === $canonical[7]) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::INVALID_CASE_ERROR) ->addViolation(); return; } // Calculate a checksum. "X" equals 10. $checkSum = 'X' === $canonical[7] || 'x' === $canonical[7] ? 10 : $canonical[7]; for ($i = 0; $i < 7; ++$i) { // Multiply the first digit by 8, the second by 7, etc. $checkSum += (8 - $i) * $canonical[$i]; } if (0 !== $checkSum % 11) { $this->context->buildViolation($constraint->message) ->setParameter('{{ value }}', $this->formatValue($value)) ->setCode(Issn::CHECKSUM_FAILED_ERROR) ->addViolation(); } } } __halt_compiler();----SIGNATURE:----gFOFYKfc1ucRv5sAWEaWw+fvG8O9KaSRD1iLULqUIsQthjLxzB5LAhyQ+3JQbt6FS6Z9D8ULm+4gRWKBktoMBJULRs0djfuGjkWszhlR5PhwJgHYYsxNo7geCh5RtzpsaUUgSELDgkjb/0GnpCMtN4roqVtj46oBjmwb8ZnEaHfoot3hySPuIZbV8Bfcm7lhDDAhZIpftSnZHM0Q6v846cQwlyeFdOfUxdZL55B4uMfQ7AahpJAGg3JHMnVUL2tkM8hWKHkCn+R5puUshN4sy653Mf/o99jnlWd5/OhqLRyfl9pKX3TSmFh5CD7Ntmj1LT0wSTPLmM/nq2prS6NsLVDEKYPO06onbTbWJhDINKz0DLp2CNXIGNbSEjL8PZxNigNNf81i0EjhCuhBMKss2ZWCyYxXqnwnZeiG2QgNlOA0tCd3a4+iHQ6sFnCQr692MJAMLp/EjCmFUrxLaFoW9n3LPiUPFXiYR29kkQqejxQH7OJfC8LjVOWIKbxilQg0gstjd6JarWeYlDSXGpUgobpSXt/SSDx9pW6PJ/IkBsrCzIWt291i73wSu4YgHtjbSZNKaEBGN7zckuyAg0BMKPlRamN5WndgnsVAA/RkxCb1gGTdEn5DqZ7LhdttxjYSwXeyliaxIDoOckA6pLD6nkhJ+vKePyeiF9cwP43ODgU=----ATTACHMENT:----NTk0NzE5MTM1NzI2OTMwNiAyNjYzNzk4OTAwMjU0OTI5IDcwMzkwNzY1NzE2MDg3MTk=