123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\HttpFoundation;
- /**
- * RequestMatcher compares a pre-defined set of checks against a Request instance.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- 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;
- }
- /**
- * 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.
- *
- * @param string|array $method An HTTP method or an array of HTTP methods
- */
- public function matchMethod($method)
- {
- $this->methods = array_map(
- function ($m)
- {
- return strtolower($m);
- },
- is_array($method) ? $method : array($method)
- );
- }
- /**
- * 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;
- }
- /**
- * {@inheritdoc}
- */
- public function matches(Request $request)
- {
- if (null !== $this->methods && !in_array(strtolower($request->getMethod()), $this->methods)) {
- 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;
- }
- }
- if (null !== $this->host && !preg_match('#'.str_replace('#', '\\#', $this->host).'#', $request->getHost())) {
- return false;
- }
- if (null !== $this->ip && !$this->checkIp($request->getClientIp(), $this->ip)) {
- return false;
- }
- return true;
- }
- protected function checkIp($requestIp, $ip)
- {
- // IPv6 address
- if (false !== strpos($requestIp, ':')) {
- return $this->checkIp6($requestIp, $ip);
- } else {
- return $this->checkIp4($requestIp, $ip);
- }
- }
- protected function checkIp4($requestIp, $ip)
- {
- if (false !== strpos($ip, '/')) {
- list($address, $netmask) = explode('/', $ip);
- if ($netmask < 1 || $netmask > 32) {
- return false;
- }
- } else {
- $address = $ip;
- $netmask = 32;
- }
- return 0 === substr_compare(sprintf('%032b', ip2long($requestIp)), sprintf('%032b', ip2long($address)), 0, $netmask);
- }
- /**
- * @author David Soria Parra <dsp at php dot net>
- * @see https://github.com/dsp/v6tools
- */
- protected function checkIp6($requestIp, $ip)
- {
- list($address, $netmask) = explode('/', $ip);
- $bytes_addr = unpack("n*", inet_pton($address));
- $bytes_test = unpack("n*", inet_pton($requestIp));
- 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;
- }
- }
|