mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
83 lines
2.1 KiB
PHP
83 lines
2.1 KiB
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Countable;
|
|
use Respect\Validation\Exceptions\ComponentException;
|
|
|
|
class Length extends AbstractRule
|
|
{
|
|
public $minValue;
|
|
public $maxValue;
|
|
public $inclusive;
|
|
|
|
public function __construct($min = null, $max = null, $inclusive = true)
|
|
{
|
|
$this->minValue = $min;
|
|
$this->maxValue = $max;
|
|
$this->inclusive = $inclusive;
|
|
$paramValidator = new OneOf(new Numeric(), new NullValue());
|
|
if (!$paramValidator->validate($min)) {
|
|
throw new ComponentException(
|
|
sprintf('%s is not a valid numeric length', $min)
|
|
);
|
|
}
|
|
|
|
if (!$paramValidator->validate($max)) {
|
|
throw new ComponentException(
|
|
sprintf('%s is not a valid numeric length', $max)
|
|
);
|
|
}
|
|
|
|
if (!is_null($min) && !is_null($max) && $min > $max) {
|
|
throw new ComponentException(
|
|
sprintf('%s cannot be less than %s for validation', $min, $max)
|
|
);
|
|
}
|
|
}
|
|
|
|
public function validate($input)
|
|
{
|
|
$length = $this->extractLength($input);
|
|
|
|
return $this->validateMin($length) && $this->validateMax($length);
|
|
}
|
|
|
|
protected function extractLength($input)
|
|
{
|
|
if (is_string($input)) {
|
|
return mb_strlen($input, mb_detect_encoding($input));
|
|
} elseif (is_array($input) || $input instanceof Countable) {
|
|
return count($input);
|
|
} elseif (is_object($input)) {
|
|
return count(get_object_vars($input));
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
protected function validateMin($length)
|
|
{
|
|
if (is_null($this->minValue)) {
|
|
return true;
|
|
}
|
|
|
|
if ($this->inclusive) {
|
|
return $length >= $this->minValue;
|
|
}
|
|
|
|
return $length > $this->minValue;
|
|
}
|
|
|
|
protected function validateMax($length)
|
|
{
|
|
if (is_null($this->maxValue)) {
|
|
return true;
|
|
}
|
|
|
|
if ($this->inclusive) {
|
|
return $length <= $this->maxValue;
|
|
}
|
|
|
|
return $length < $this->maxValue;
|
|
}
|
|
}
|