Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

234 lines
6.5 KiB

12 years ago
<?php
/**
12 years ago
* UrlRule class file
12 years ago
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\web;
use yii\base\Object;
/**
12 years ago
* UrlRule represents a rule used for parsing and generating URLs.
12 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class UrlRule extends Object
{
/**
12 years ago
* @var string regular expression used to parse a URL
12 years ago
*/
12 years ago
public $pattern;
12 years ago
/**
12 years ago
* @var string the route to the controller action
*/
public $route;
/**
12 years ago
* @var array the default GET parameters (name=>value) that this rule provides.
* When this rule is used to parse the incoming request, the values declared in this property
* will be injected into $_GET.
*/
12 years ago
public $defaults = array();
12 years ago
/**
* @var boolean whether this rule is only used for request parsing.
* Defaults to false, meaning the rule is used for both URL parsing and creation.
*/
public $parsingOnly = false;
/**
* @var string the URL suffix used for this rule.
* For example, ".html" can be used so that the URL looks like pointing to a static HTML page.
* If not, the value of [[UrlManager::suffix]] will be used.
*/
public $suffix;
/**
* @var string|array the HTTP verb (e.g. GET, POST, DELETE) that this rule should match.
* Use array to represent multiple verbs that this rule may match.
* If this property is not set, the rule can match any verb.
* Note that this property is only used when parsing a request. It is ignored for URL creation.
* @see parsingOnly
*/
public $verb;
/**
* @var string the host info (e.g. `http://www.example.com`) that this rule should match.
* If not set, it means the host info is ignored.
*/
public $hostInfo;
12 years ago
12 years ago
/**
* @var string the template for generating a new URL. This is derived from [[pattern]] and is used in generating URL.
*/
12 years ago
private $_template;
12 years ago
/**
* @var string the regex for matching the route part. This is used in generating URL.
*/
12 years ago
private $_routeRule;
12 years ago
/**
* @var array list of regex for matching parameters. This is used in generating URL.
*/
12 years ago
private $_paramRules = array();
12 years ago
/**
* @var array list of parameters used in the route.
*/
12 years ago
private $_routeParams = array();
12 years ago
12 years ago
/**
* Initializes this rule.
*/
12 years ago
public function init()
{
12 years ago
if ($this->verb !== null) {
if (is_array($this->verb)) {
foreach ($this->verb as $i => $verb) {
$this->verb[$i] = strtoupper($verb);
}
} else {
$this->verb = array(strtoupper($this->verb));
}
}
12 years ago
12 years ago
$this->pattern = trim($this->pattern, '/');
if ($this->pattern === '') {
12 years ago
$this->_template = '';
12 years ago
$this->pattern = '#^$#u';
return;
} else {
$this->pattern = '/' . $this->pattern . '/';
}
$this->route = trim($this->route, '/');
if (strpos($this->route, '<') !== false && preg_match_all('/<(\w+)>/', $this->route, $matches)) {
foreach ($matches[1] as $name) {
12 years ago
$this->_routeParams[$name] = "<$name>";
12 years ago
}
}
$tr = $tr2 = array();
if (preg_match_all('/<(\w+):?([^>]+)?>/', $this->pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
foreach ($matches as $match) {
$name = $match[1][0];
$pattern = isset($match[2][0]) ? $match[2][0] : '[^\/]+';
if (isset($this->defaults[$name])) {
$length = strlen($match[0][0]);
$offset = $match[0][1];
if ($this->pattern[$offset - 1] === '/' && $this->pattern[$offset + $length] === '/') {
12 years ago
$tr["/<$name>"] = "(/(?P<$name>$pattern))?";
12 years ago
} else {
12 years ago
$tr["<$name>"] = "(?P<$name>$pattern)?";
12 years ago
}
} else {
$tr["<$name>"] = "(?P<$name>$pattern)";
}
12 years ago
if (isset($this->_routeParams[$name])) {
12 years ago
$tr2["<$name>"] = "(?P<$name>$pattern)";
} else {
12 years ago
$this->_paramRules[$name] = $pattern === '[^\/]+' ? '' : "#^$pattern$#";
12 years ago
}
}
}
12 years ago
$this->_template = preg_replace('/<(\w+):?([^>]+)?>/', '<$1>', $this->pattern);
$this->pattern = '#^' . trim(strtr($this->_template, $tr), '/') . '$#u';
12 years ago
12 years ago
if ($this->_routeParams !== array()) {
$this->_routeRule = '#^' . strtr($this->route, $tr2) . '$#u';
12 years ago
}
}
public function parseUrl($pathInfo)
12 years ago
{
12 years ago
if ($this->verb !== null && !in_array(\Yii::$app->getRequest()->verb, $this->verb, true)) {
return false;
}
12 years ago
if (!preg_match($this->pattern, $pathInfo, $matches)) {
return false;
}
12 years ago
foreach ($this->defaults as $name => $value) {
if (!isset($matches[$name]) || $matches[$name] === '') {
$matches[$name] = $value;
}
}
12 years ago
$params = $this->defaults;
$tr = array();
foreach ($matches as $name => $value) {
12 years ago
if (isset($this->_routeParams[$name])) {
$tr[$this->_routeParams[$name]] = $value;
12 years ago
unset($params[$name]);
12 years ago
} elseif (isset($this->_paramRules[$name])) {
12 years ago
$params[$name] = $value;
12 years ago
}
}
12 years ago
if ($this->_routeRule !== null) {
12 years ago
$route = strtr($this->route, $tr);
} else {
$route = $this->route;
}
return array($route, $params);
12 years ago
}
12 years ago
public function createUrl($route, $params)
{
12 years ago
if ($this->parsingOnly) {
return false;
}
12 years ago
$tr = array();
// match the route part first
if ($route !== $this->route) {
12 years ago
if ($this->_routeRule !== null && preg_match($this->_routeRule, $route, $matches)) {
foreach ($this->_routeParams as $name => $token) {
12 years ago
if (isset($this->defaults[$name]) && strcmp($this->defaults[$name], $matches[$name]) === 0) {
$tr[$token] = '';
} else {
$tr[$token] = $matches[$name];
}
12 years ago
}
} else {
return false;
}
}
// match default params
// if a default param is not in the route pattern, its value must also be matched
foreach ($this->defaults as $name => $value) {
12 years ago
if (isset($this->_routeParams[$name])) {
12 years ago
continue;
}
12 years ago
if (!isset($params[$name])) {
return false;
} elseif (strcmp($params[$name], $value) === 0) { // strcmp will do string conversion automatically
unset($params[$name]);
12 years ago
if (isset($this->_paramRules[$name])) {
12 years ago
$tr["<$name>"] = '';
}
12 years ago
} elseif (!isset($this->_paramRules[$name])) {
12 years ago
return false;
}
}
// match params in the pattern
12 years ago
foreach ($this->_paramRules as $name => $rule) {
12 years ago
if (isset($params[$name]) && ($rule === '' || preg_match($rule, $params[$name]))) {
$tr["<$name>"] = urlencode($params[$name]);
unset($params[$name]);
} elseif (!isset($this->defaults[$name]) || isset($params[$name])) {
return false;
}
}
12 years ago
$url = trim(strtr($this->_template, $tr), '/');
12 years ago
if (strpos($url, '//') !== false) {
$url = preg_replace('#/+#', '/', $url);
}
if ($params !== array()) {
$url .= '?' . http_build_query($params);
}
return $url;
}
12 years ago
}