respect-validation/library/Rules/Size.php

106 lines
2.3 KiB
PHP
Raw Normal View History

2015-06-16 04:55:09 +02:00
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
use SplFileInfo;
/**
* Validate file size.
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
class Size extends AbstractRule
2015-06-16 04:55:09 +02:00
{
/**
* @var string
*/
public $minSize;
/**
* @var string
*/
public $maxSize;
/**
* @param string $minSize
* @param string $maxSize
*/
public function __construct($minSize = null, $maxSize = null)
{
$this->minSize = $minSize;
$this->minValue = $minSize ? $this->toBytes($minSize) : null;
2015-06-16 04:55:09 +02:00
$this->maxSize = $maxSize;
$this->maxValue = $maxSize ? $this->toBytes($maxSize) : null;
2015-06-16 04:55:09 +02:00
}
/**
* @todo Move it to a trait
*
* @param mixed $size
*
* @return int
*/
private function toBytes($size)
{
$value = $size;
$units = array('b', 'kb', 'mb', 'gb', 'tb', 'pb', 'eb', 'zb', 'yb');
foreach ($units as $exponent => $unit) {
if (!preg_match("/^(\d+(.\d+)?){$unit}$/i", $size, $matches)) {
continue;
}
$value = $matches[1] * pow(1024, $exponent);
break;
}
if (!is_numeric($value)) {
throw new ComponentException(sprintf('"%s" is not a recognized file size.', $size));
}
return $value;
}
/**
* @param int $size
*
* @return bool
*/
private function isValidSize($size)
{
if (null !== $this->minValue && null !== $this->maxValue) {
return ($size >= $this->minValue && $size <= $this->maxValue);
}
if (null !== $this->minValue) {
return ($size >= $this->minValue);
}
return ($size <= $this->maxValue);
}
2015-06-16 04:55:09 +02:00
/**
* {@inheritdoc}
*/
public function validate($input)
{
if ($input instanceof SplFileInfo) {
return $this->isValidSize($input->getSize());
2015-06-16 04:55:09 +02:00
}
if (is_string($input)) {
return $this->isValidSize(filesize($input));
2015-06-16 04:55:09 +02:00
}
return false;
2015-06-16 04:55:09 +02:00
}
}