151 lines
4.3 KiB
PHP
Executable File
151 lines
4.3 KiB
PHP
Executable File
<?php
|
|
namespace Rails\Validation;
|
|
|
|
use Rails;
|
|
|
|
class Validation
|
|
{
|
|
protected
|
|
$_success,
|
|
|
|
$_result,
|
|
|
|
$_type,
|
|
|
|
$_data,
|
|
|
|
// $_rule,
|
|
|
|
$_params;
|
|
|
|
// public function __construct($type, $data, $rule, array $params = array())
|
|
public function __construct($type, $data, array $params = array())
|
|
{
|
|
$this->_type = $type;
|
|
$this->_data = $data;
|
|
$this->_params = $params;
|
|
}
|
|
|
|
public function validate()
|
|
{
|
|
$validate_method = '_validate_' . $this->_type;
|
|
if (!method_exists($this, $validate_method)) {
|
|
throw new Exception\RuntimeException(
|
|
sprintf("Validation for '%s' isn't supported", $this->_type)
|
|
);
|
|
}
|
|
$this->_success = $this->$validate_method();
|
|
return $this;
|
|
}
|
|
|
|
public function success()
|
|
{
|
|
return $this->_success;
|
|
}
|
|
|
|
protected function _validate_length()
|
|
{
|
|
$this->_data = strlen($this->_data);
|
|
$this->_params['only_integer'] = true;
|
|
return $this->_validate_number();
|
|
}
|
|
|
|
protected function _validate_format()
|
|
{
|
|
return (bool)preg_match($this->_params['with'], $this->_data);
|
|
}
|
|
|
|
protected function _validate_number()
|
|
{
|
|
$result = 2;
|
|
$this->_convert_number($this->_data);
|
|
|
|
if (!empty($this->_params['in'])) {
|
|
list($min, $max) = $this->_params['in'];
|
|
|
|
if ($this->_data < $min)
|
|
$result = -1;
|
|
elseif ($this->_data > $max)
|
|
$result = 1;
|
|
} elseif (!empty($this->_params['is'])) {
|
|
if ((int)$this->_data != (int)$this->_params['is']) {
|
|
if ($this->_data > $this->_params['is']) {
|
|
$result = 1;
|
|
} else {
|
|
$result = -1;
|
|
}
|
|
}
|
|
} elseif (!empty($this->_params['minimum'])) {
|
|
if ((int)$this->_data < (int)$this->_params['minimum']) {
|
|
$result = -1;
|
|
}
|
|
} elseif (!empty($this->_params['maximum'])) {
|
|
if ((int)$this->_data > (int)$this->_params['maximum']) {
|
|
$result = 1;
|
|
}
|
|
} else {
|
|
throw new Exception\RuntimeException(
|
|
"No supported number validation passed"
|
|
);
|
|
}
|
|
|
|
# Check params. {
|
|
if (!empty($this->_params['even'])) {
|
|
if (($this->_data % 2))
|
|
$success = false;
|
|
} elseif (!empty($this->_params['odd'])) {
|
|
if (($this->_data % 1))
|
|
$success = false;
|
|
}
|
|
# }
|
|
|
|
if (isset($success) && $success === false) {
|
|
$this->_result = $result;
|
|
} elseif ($result !== 2) {
|
|
$success = false;
|
|
$this->_result = $result;
|
|
} else
|
|
$success = true;
|
|
|
|
return $success;
|
|
}
|
|
|
|
protected function _validate_inclusion()
|
|
{
|
|
if (is_array($this->_rule)) {
|
|
if (!in_array($this->_data, $this->_rule))
|
|
return false;
|
|
} elseif (is_string($this->_rule) && is_int(strpos($this->_rule, '..'))) {
|
|
return $this->_validate_number();
|
|
} else {
|
|
throw new Exception\InvalidArgumentException(
|
|
sprintf("Invalid exclusion validation rule, must be either an array or a numeric rule, %s passed", gettype($this->_rule))
|
|
);
|
|
}
|
|
}
|
|
|
|
protected function _validate_exclusion()
|
|
{
|
|
if (is_array($this->_rule)) {
|
|
if (in_array($this->_data, $this->_rule))
|
|
return false;
|
|
} elseif (is_string($this->_rule) && is_int(strpos($this->_rule, '..'))) {
|
|
return !($this->_validate_number());
|
|
} else {
|
|
throw new Exception\InvalidArgumentException(
|
|
sprintf("Invalid exclusion validation rule, must be either an array or a numeric rule, %s passed", gettype($this->_rule))
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper function for _validate_number()
|
|
*/
|
|
private function _convert_number(&$num)
|
|
{
|
|
if (!empty($this->_params['only_integer']))
|
|
$num = (int)$num;
|
|
else
|
|
$num = (float)$num;
|
|
}
|
|
} |