![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-router/src/Http/ |
<?php declare(strict_types=1); namespace Laminas\Router\Http; use Laminas\Router\Exception; use Laminas\Stdlib\ArrayUtils; use Laminas\Stdlib\RequestInterface as Request; use Traversable; use function array_merge; use function array_shift; use function count; use function end; use function explode; use function implode; use function is_array; use function is_scalar; use function method_exists; use function rawurldecode; use function rawurlencode; use function sprintf; use function strlen; use function substr; /** * Wildcard route. * * @deprecated since version 2.3. * Misuse of this route type can lead to potential security issues. * Use the `Segment` route type instead. */ class Wildcard implements RouteInterface { /** * Delimiter between keys and values. * * @var string */ protected $keyValueDelimiter; /** * Delimiter before parameters. * * @var string */ protected $paramDelimiter; /** * Default values. * * @var array */ protected $defaults; /** * List of assembled parameters. * * @var array */ protected $assembledParams = []; /** * Create a new wildcard route. * * @param string $keyValueDelimiter * @param string $paramDelimiter * @param array $defaults */ public function __construct($keyValueDelimiter = '/', $paramDelimiter = '/', array $defaults = []) { $this->keyValueDelimiter = $keyValueDelimiter; $this->paramDelimiter = $paramDelimiter; $this->defaults = $defaults; } /** * factory(): defined by RouteInterface interface. * * @see \Laminas\Router\RouteInterface::factory() * * @param iterable $options * @return Wildcard * @throws Exception\InvalidArgumentException */ public static function factory($options = []) { if ($options instanceof Traversable) { $options = ArrayUtils::iteratorToArray($options); } elseif (! is_array($options)) { throw new Exception\InvalidArgumentException(sprintf( '%s expects an array or Traversable set of options', __METHOD__ )); } if (! isset($options['key_value_delimiter'])) { $options['key_value_delimiter'] = '/'; } if (! isset($options['param_delimiter'])) { $options['param_delimiter'] = '/'; } if (! isset($options['defaults'])) { $options['defaults'] = []; } return new static($options['key_value_delimiter'], $options['param_delimiter'], $options['defaults']); } /** * match(): defined by RouteInterface interface. * * @see \Laminas\Router\RouteInterface::match() * * @param integer|null $pathOffset * @return RouteMatch|null */ public function match(Request $request, $pathOffset = null) { if (! method_exists($request, 'getUri')) { return null; } $uri = $request->getUri(); $path = $uri->getPath() ?: ''; if ($path === '/') { $path = ''; } if ($pathOffset !== null) { $path = substr($path, $pathOffset) ?: ''; } $matches = []; $params = explode($this->paramDelimiter, $path); if (count($params) > 1 && ($params[0] !== '' || end($params) === '')) { return null; } if ($this->keyValueDelimiter === $this->paramDelimiter) { $count = count($params); for ($i = 1; $i < $count; $i += 2) { if (isset($params[$i + 1])) { $matches[rawurldecode($params[$i])] = rawurldecode($params[$i + 1]); } } } else { array_shift($params); foreach ($params as $param) { $param = explode($this->keyValueDelimiter, $param, 2); if (isset($param[1])) { $matches[rawurldecode($param[0])] = rawurldecode($param[1]); } } } return new RouteMatch(array_merge($this->defaults, $matches), strlen($path)); } /** * assemble(): Defined by RouteInterface interface. * * @see \Laminas\Router\RouteInterface::assemble() * * @param array $params * @param array $options * @return mixed */ public function assemble(array $params = [], array $options = []) { $elements = []; $mergedParams = array_merge($this->defaults, $params); $this->assembledParams = []; if ($mergedParams) { foreach ($mergedParams as $key => $value) { if (! is_scalar($value)) { continue; } $elements[] = rawurlencode($key) . $this->keyValueDelimiter . rawurlencode((string) $value); $this->assembledParams[] = $key; } return $this->paramDelimiter . implode($this->paramDelimiter, $elements); } return ''; } /** * getAssembledParams(): defined by RouteInterface interface. * * @see RouteInterface::getAssembledParams * * @return array */ public function getAssembledParams() { return $this->assembledParams; } }