Вход Регистрация
Файл: symfony-2.7/src/Symfony/Component/Validator/Constraints/LengthValidator.php
Строк: 201
<?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 SymfonyComponentValidatorConstraints;

use 
SymfonyComponentValidatorContextExecutionContextInterface;
use 
SymfonyComponentValidatorConstraint;
use 
SymfonyComponentValidatorConstraintValidator;
use 
SymfonyComponentValidatorExceptionUnexpectedTypeException;

/**
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
class LengthValidator extends ConstraintValidator
{
    
/**
     * {@inheritdoc}
     */
    
public function validate($valueConstraint $constraint)
    {
        if (!
$constraint instanceof Length) {
            throw new 
UnexpectedTypeException($constraint__NAMESPACE__.'Length');
        }

        if (
null === $value || '' === $value) {
            return;
        }

        if (!
is_scalar($value) && !(is_object($value) && method_exists($value'__toString'))) {
            throw new 
UnexpectedTypeException($value'string');
        }

        
$stringValue = (string) $value;

        if (
function_exists('grapheme_strlen') && 'UTF-8' === $constraint->charset) {
            
$length grapheme_strlen($stringValue);
        } elseif (
function_exists('mb_strlen')) {
            
$length mb_strlen($stringValue$constraint->charset);
        } else {
            
$length strlen($stringValue);
        }

        if (
null !== $constraint->max && $length $constraint->max) {
            if (
$this->context instanceof ExecutionContextInterface) {
                
$this->context->buildViolation($constraint->min == $constraint->max $constraint->exactMessage $constraint->maxMessage)
                    ->
setParameter('{{ value }}'$this->formatValue($stringValue))
                    ->
setParameter('{{ limit }}'$constraint->max)
                    ->
setInvalidValue($value)
                    ->
setPlural((int) $constraint->max)
                    ->
setCode(Length::TOO_LONG_ERROR)
                    ->
addViolation();
            } else {
                
$this->buildViolation($constraint->min == $constraint->max $constraint->exactMessage $constraint->maxMessage)
                    ->
setParameter('{{ value }}'$this->formatValue($stringValue))
                    ->
setParameter('{{ limit }}'$constraint->max)
                    ->
setInvalidValue($value)
                    ->
setPlural((int) $constraint->max)
                    ->
setCode(Length::TOO_LONG_ERROR)
                    ->
addViolation();
            }

            return;
        }

        if (
null !== $constraint->min && $length $constraint->min) {
            if (
$this->context instanceof ExecutionContextInterface) {
                
$this->context->buildViolation($constraint->min == $constraint->max $constraint->exactMessage $constraint->minMessage)
                    ->
setParameter('{{ value }}'$this->formatValue($stringValue))
                    ->
setParameter('{{ limit }}'$constraint->min)
                    ->
setInvalidValue($value)
                    ->
setPlural((int) $constraint->min)
                    ->
setCode(Length::TOO_SHORT_ERROR)
                    ->
addViolation();
            } else {
                
$this->buildViolation($constraint->min == $constraint->max $constraint->exactMessage $constraint->minMessage)
                    ->
setParameter('{{ value }}'$this->formatValue($stringValue))
                    ->
setParameter('{{ limit }}'$constraint->min)
                    ->
setInvalidValue($value)
                    ->
setPlural((int) $constraint->min)
                    ->
setCode(Length::TOO_SHORT_ERROR)
                    ->
addViolation();
            }
        }
    }
}
Онлайн: 2
Реклама