This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpFoundation/RequestMatcher.php

178 lines
4.7 KiB
PHP
Raw Normal View History

2010-09-01 12:56:06 +01:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-09-01 12:56:06 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation;
2010-09-01 12:56:06 +01:00
/**
* RequestMatcher compares a pre-defined set of checks against a Request instance.
*
* @author Fabien Potencier <fabien@symfony.com>
2010-09-01 12:56:06 +01:00
*/
class RequestMatcher implements RequestMatcherInterface
{
private $path;
private $host;
private $methods;
private $ip;
private $attributes;
public function __construct($path = null, $host = null, $methods = null, $ip = null, array $attributes = array())
{
$this->path = $path;
$this->host = $host;
$this->methods = $methods;
$this->ip = $ip;
$this->attributes = $attributes;
}
2010-09-01 12:56:06 +01:00
/**
* Adds a check for the URL host name.
*
* @param string $regexp A Regexp
*/
public function matchHost($regexp)
{
$this->host = $regexp;
}
/**
* Adds a check for the URL path info.
*
* @param string $regexp A Regexp
*/
public function matchPath($regexp)
{
$this->path = $regexp;
}
/**
* Adds a check for the client IP.
*
* @param string $ip A specific IP address or a range specified using IP/netmask like 192.168.1.0/24
*/
public function matchIp($ip)
{
$this->ip = $ip;
}
/**
* Adds a check for the HTTP method.
*
2011-04-23 16:05:44 +01:00
* @param string|array $method An HTTP method or an array of HTTP methods
2010-09-01 12:56:06 +01:00
*/
public function matchMethod($method)
{
2011-06-14 15:08:07 +01:00
$this->methods = array_map('strtoupper', is_array($method) ? $method : array($method));
2010-09-01 12:56:06 +01:00
}
/**
* Adds a check for request attribute.
*
* @param string $key The request attribute name
* @param string $regexp A Regexp
*/
public function matchAttribute($key, $regexp)
{
$this->attributes[$key] = $regexp;
}
2010-09-01 12:56:06 +01:00
/**
* {@inheritdoc}
*/
public function matches(Request $request)
{
2011-06-14 15:08:07 +01:00
if (null !== $this->methods && !in_array($request->getMethod(), $this->methods)) {
2010-09-01 12:56:06 +01:00
return false;
}
foreach ($this->attributes as $key => $pattern) {
if (!preg_match('#'.str_replace('#', '\\#', $pattern).'#', $request->attributes->get($key))) {
return false;
}
}
if (null !== $this->path) {
if (null !== $session = $request->getSession()) {
$path = strtr($this->path, array('{_locale}' => $session->getLocale(), '#' => '\\#'));
} else {
$path = str_replace('#', '\\#', $this->path);
}
if (!preg_match('#'.$path.'#', $request->getPathInfo())) {
return false;
}
2010-09-01 12:56:06 +01:00
}
if (null !== $this->host && !preg_match('#'.str_replace('#', '\\#', $this->host).'#', $request->getHost())) {
2010-09-01 12:56:06 +01:00
return false;
}
2011-06-14 14:31:52 +01:00
if (null !== $this->ip && !$this->checkIp($request->getClientIp(), $this->ip)) {
2010-09-01 12:56:06 +01:00
return false;
}
return true;
}
2011-06-14 14:31:52 +01:00
protected function checkIp($requestIp, $ip)
{
// IPv6 address
2011-06-14 14:31:52 +01:00
if (false !== strpos($requestIp, ':')) {
return $this->checkIp6($requestIp, $ip);
} else {
2011-06-14 14:31:52 +01:00
return $this->checkIp4($requestIp, $ip);
}
}
2011-06-14 14:31:52 +01:00
protected function checkIp4($requestIp, $ip)
2010-09-01 12:56:06 +01:00
{
2011-06-14 14:31:52 +01:00
if (false !== strpos($ip, '/')) {
list($address, $netmask) = explode('/', $ip);
2010-09-01 12:56:06 +01:00
if ($netmask < 1 || $netmask > 32) {
2010-09-01 12:56:06 +01:00
return false;
}
} else {
2011-06-14 14:31:52 +01:00
$address = $ip;
$netmask = 32;
2010-09-01 12:56:06 +01:00
}
2011-06-14 14:31:52 +01:00
return 0 === substr_compare(sprintf('%032b', ip2long($requestIp)), sprintf('%032b', ip2long($address)), 0, $netmask);
2010-09-01 12:56:06 +01:00
}
/**
* @author David Soria Parra <dsp at php dot net>
* @see https://github.com/dsp/v6tools
*/
2011-06-14 14:31:52 +01:00
protected function checkIp6($requestIp, $ip)
{
if (!defined('AF_INET6')) {
throw new \RuntimeException('Unable to check Ipv6. Check that PHP was not compiled with option "disable-ipv6".');
}
2011-06-14 14:31:52 +01:00
list($address, $netmask) = explode('/', $ip);
$bytes_addr = unpack("n*", inet_pton($address));
2011-06-14 14:31:52 +01:00
$bytes_test = unpack("n*", inet_pton($requestIp));
2011-04-22 21:20:12 +01:00
for ($i = 1, $ceil = ceil($netmask / 16); $i <= $ceil; $i++) {
$left = $netmask - 16 * ($i-1);
$left = ($left <= 16) ?: 16;
$mask = ~(0xffff >> $left) & 0xffff;
if (($bytes_addr[$i] & $mask) != ($bytes_test[$i] & $mask)) {
return false;
}
}
return true;
}
2010-09-01 12:56:06 +01:00
}