respect-validation/library/Rules/Ip.php

130 lines
3.5 KiB
PHP
Raw Normal View History

<?php
namespace Respect\Validation\Rules;
2013-01-09 15:48:11 +01:00
use Respect\Validation\Exceptions\ComponentException;
class Ip extends AbstractRule
{
public $ipOptions;
2013-01-09 15:48:11 +01:00
public $networkRange;
public function __construct($ipOptions = null)
{
2013-01-09 15:48:11 +01:00
if (is_int($ipOptions)) {
$this->ipOptions = $ipOptions;
return;
2013-01-09 15:48:11 +01:00
}
$this->networkRange = $this->parseRange($ipOptions);
}
protected function parseRange($input)
{
if ($input === null || $input == '*' || $input == '*.*.*.*'
|| $input == '0.0.0.0-255.255.255.255') {
return;
}
2013-01-09 15:48:11 +01:00
2013-01-14 15:35:04 +01:00
$range = array('min' => null, 'max' => null, 'mask' => null);
2013-01-09 15:48:11 +01:00
if (strpos($input, '-') !== false) {
2013-01-09 15:48:11 +01:00
list($range['min'], $range['max']) = explode('-', $input);
} elseif (strpos($input, '*') !== false) {
2013-01-09 15:48:11 +01:00
$this->parseRangeUsingWildcards($input, $range);
} elseif (strpos($input, '/') !== false) {
$this->parseRangeUsingCidr($input, $range);
} else {
2013-01-09 15:48:11 +01:00
throw new ComponentException('Invalid network range');
}
2013-01-09 15:48:11 +01:00
if (!$this->verifyAddress($range['min'])) {
throw new ComponentException('Invalid network range');
}
if (isset($range['max']) && !$this->verifyAddress($range['max'])) {
throw new ComponentException('Invalid network range');
}
return $range;
}
protected function fillAddress(&$input, $char = '*')
{
while (substr_count($input, '.') < 3) {
$input .= '.'.$char;
2013-01-09 15:48:11 +01:00
}
}
protected function parseRangeUsingWildcards($input, &$range)
{
$this->fillAddress($input);
$range['min'] = strtr($input, '*', '0');
$range['max'] = str_replace('*', '255', $input);
}
protected function parseRangeUsingCidr($input, &$range)
{
$input = explode('/', $input);
$this->fillAddress($input[0], '0');
$range['min'] = $input[0];
$isAddressMask = strpos($input[1], '.') !== false;
if ($isAddressMask && $this->verifyAddress($input[1])) {
2013-01-14 15:35:04 +01:00
$range['mask'] = sprintf('%032b', ip2long($input[1]));
2013-01-09 15:48:11 +01:00
return;
2013-01-09 15:48:11 +01:00
}
if ($isAddressMask || $input[1] < 8 || $input[1] > 30) {
throw new ComponentException('Invalid network mask');
}
2013-01-14 15:35:04 +01:00
$range['mask'] = sprintf('%032b', ip2long(long2ip(~(pow(2, (32 - $input[1])) - 1))));
}
public function validate($input)
2013-01-09 15:48:11 +01:00
{
return $this->verifyAddress($input) && $this->verifyNetwork($input);
}
protected function verifyAddress($address)
{
return (boolean) filter_var(
2013-01-09 15:48:11 +01:00
$address,
FILTER_VALIDATE_IP,
array(
'flags' => $this->ipOptions,
2013-01-09 15:48:11 +01:00
)
);
}
2013-01-09 15:48:11 +01:00
protected function verifyNetwork($input)
{
if ($this->networkRange === null) {
2013-01-09 15:48:11 +01:00
return true;
}
2013-01-09 15:48:11 +01:00
2013-01-14 15:35:04 +01:00
if (isset($this->networkRange['mask'])) {
2013-01-14 17:11:51 +01:00
return $this->belongsToSubnet($input);
2013-01-09 15:48:11 +01:00
}
2013-01-14 15:35:04 +01:00
$input = sprintf('%u', ip2long($input));
return bccomp($input, sprintf('%u', ip2long($this->networkRange['min']))) >= 0
&& bccomp($input, sprintf('%u', ip2long($this->networkRange['max']))) <= 0;
}
2013-01-14 17:11:51 +01:00
protected function belongsToSubnet($input)
2013-01-14 15:35:04 +01:00
{
$range = $this->networkRange;
$min = sprintf('%032b', ip2long($range['min']));
$input = sprintf('%032b', ip2long($input));
return ($input & $range['mask']) === ($min & $range['mask']);
2013-01-09 15:48:11 +01:00
}
}