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.
76 lines
1.8 KiB
76 lines
1.8 KiB
<?php namespace Majestic\App\Router;
|
|
/**
|
|
* @copyright NetMonsters <team@netmonsters.ru>
|
|
* @link http://netmonsters.ru
|
|
* @package Majestic
|
|
* @subpackage app
|
|
* @since 2010-02-25
|
|
*/
|
|
|
|
class Route
|
|
{
|
|
|
|
protected $route;
|
|
protected $action;
|
|
protected $params;
|
|
protected $layout;
|
|
|
|
public function __construct($route, $action, $params = array(), $layout = null)
|
|
{
|
|
$this->route = $route;
|
|
$this->action = $action;
|
|
$this->params = $params;
|
|
$this->layout = $layout;
|
|
}
|
|
|
|
/**
|
|
* @param array $request
|
|
* @return bool
|
|
*/
|
|
public function match($request)
|
|
{
|
|
$parts = explode('/', $this->route);
|
|
$cnt = count($parts);
|
|
if(count($request) != $cnt) {
|
|
return false;
|
|
}
|
|
|
|
for ($i = 0; $i < $cnt; $i++) {
|
|
if (substr($parts[$i], 0, 1) == ':') {
|
|
$this->params[substr($parts[$i], 1)] = urldecode($request[$i]);
|
|
} elseif (substr($parts[$i], 0, 2) == '(?') {
|
|
$match = array();
|
|
if (!preg_match('#^' . $parts[$i] . '$#iu', $request[$i], $match)) {
|
|
return false;
|
|
}
|
|
$start = strpos($parts[$i], '<') + 1;
|
|
$key = substr($parts[$i], $start, strpos($parts[$i], '>', $start) - $start);
|
|
$this->params[$key] = urldecode($match[$key]);
|
|
} elseif ($parts[$i] != $request[$i]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function getUri()
|
|
{
|
|
return '/' . $this->route;
|
|
}
|
|
|
|
public function getAction()
|
|
{
|
|
return $this->action . 'Action';
|
|
}
|
|
|
|
public function getLayout()
|
|
{
|
|
return $this->layout . 'Layout';
|
|
}
|
|
|
|
public function getParams()
|
|
{
|
|
return $this->params;
|
|
}
|
|
}
|