2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Parses the request URL into controller, action, and parameters.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
|
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-10-30 17:30:26 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP(tm) v 0.2.9
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parses the request URL into controller, action, and parameters.
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-09-27 02:24:24 +00:00
|
|
|
class Router {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Array of routes
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $routes = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-09-27 04:12:03 +00:00
|
|
|
* List of action prefixes used in connected routes.
|
|
|
|
* Includes admin prefix
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__prefixes = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Directive for Router to parse out file extensions for mapping to Content-types.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__parseExtensions = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* List of valid extensions to parse from a URL. If null, any extension is allowed.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__validExtensions = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* 'Constant' regular expression definitions for named route elements
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__named = array(
|
|
|
|
'Action' => 'index|show|add|create|edit|update|remove|del|delete|view|item',
|
|
|
|
'Year' => '[12][0-9]{3}',
|
|
|
|
'Month' => '0[1-9]|1[012]',
|
|
|
|
'Day' => '0[1-9]|[12][0-9]|3[01]',
|
|
|
|
'ID' => '[0-9]+',
|
|
|
|
'UUID' => '[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}'
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Stores all information necessary to decide what named arguments are parsed under what conditions.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $named = array(
|
|
|
|
'default' => array('page', 'fields', 'order', 'limit', 'recursive', 'sort', 'direction', 'step'),
|
|
|
|
'greedy' => true,
|
|
|
|
'separator' => ':',
|
|
|
|
'rules' => false,
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* The route matching the URL of the current request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__currentRoute = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Default HTTP request method => controller action map.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__resourceMap = array(
|
|
|
|
array('action' => 'index', 'method' => 'GET', 'id' => false),
|
|
|
|
array('action' => 'view', 'method' => 'GET', 'id' => true),
|
|
|
|
array('action' => 'add', 'method' => 'POST', 'id' => false),
|
|
|
|
array('action' => 'edit', 'method' => 'PUT', 'id' => true),
|
|
|
|
array('action' => 'delete', 'method' => 'DELETE', 'id' => true),
|
|
|
|
array('action' => 'edit', 'method' => 'POST', 'id' => true)
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-09-30 13:49:39 +00:00
|
|
|
/**
|
|
|
|
* HTTP header shortcut map. Used for evaluating header-based route expressions.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__headerMap = array(
|
|
|
|
'type' => 'content_type',
|
|
|
|
'method' => 'request_method',
|
|
|
|
'server' => 'server_name'
|
|
|
|
);
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* List of resource-mapped controllers
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__resourceMapped = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Maintains the parameter stack for the current request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__params = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Maintains the path stack for the current request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__paths = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Keeps Router state to determine if default routes have already been connected
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__defaultsMapped = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-09-27 02:37:19 +00:00
|
|
|
/**
|
|
|
|
* Constructor for Router.
|
|
|
|
* Builds __prefixes
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function Router() {
|
|
|
|
$this->__setPrefixes();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-09-27 04:12:03 +00:00
|
|
|
* Sets the Routing prefixes. Includes compatibilty for existing Routing.admin
|
|
|
|
* configurations.
|
2009-09-27 02:37:19 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @access private
|
2009-09-27 04:12:03 +00:00
|
|
|
* @todo Remove support for Routing.admin in future versions.
|
2009-09-27 02:37:19 +00:00
|
|
|
**/
|
|
|
|
function __setPrefixes() {
|
|
|
|
$routing = Configure::read('Routing');
|
2009-09-30 04:50:15 +00:00
|
|
|
if (!empty($routing['admin'])) {
|
2009-09-27 04:12:03 +00:00
|
|
|
$this->__prefixes[] = $routing['admin'];
|
2009-09-27 02:37:19 +00:00
|
|
|
}
|
2009-09-30 04:50:15 +00:00
|
|
|
if (!empty($routing['prefixes'])) {
|
2009-09-27 02:48:57 +00:00
|
|
|
$this->__prefixes = array_merge($this->__prefixes, (array)$routing['prefixes']);
|
2009-09-27 02:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets a reference to the Router object instance
|
|
|
|
*
|
|
|
|
* @return object Object instance
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function &getInstance() {
|
|
|
|
static $instance = array();
|
|
|
|
|
2008-09-12 05:11:34 +00:00
|
|
|
if (!$instance) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$instance[0] =& new Router();
|
|
|
|
}
|
|
|
|
return $instance[0];
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets the named route elements for use in app/config/routes.php
|
|
|
|
*
|
|
|
|
* @return array Named route elements
|
|
|
|
* @access public
|
|
|
|
* @see Router::$__named
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getNamedExpressions() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
return $_this->__named;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns this object's routes array. Returns false if there are no routes available.
|
|
|
|
*
|
2009-09-27 04:12:03 +00:00
|
|
|
* @param string $route An empty string, or a route string "/"
|
|
|
|
* @param array $default NULL or an array describing the default route
|
|
|
|
* @param array $params An array matching the named elements in the route to regular expressions which that element should match.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @see routes
|
2009-09-27 04:12:03 +00:00
|
|
|
* @return array Array of routes
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function connect($route, $default = array(), $params = array()) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
|
2008-08-22 04:06:29 +00:00
|
|
|
if (!isset($default['action'])) {
|
|
|
|
$default['action'] = 'index';
|
|
|
|
}
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($_this->__prefixes as $prefix) {
|
|
|
|
if (isset($default[$prefix])) {
|
|
|
|
$default['prefix'] = $prefix;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
if (isset($default['prefix'])) {
|
|
|
|
$_this->__prefixes[] = $default['prefix'];
|
2008-06-11 08:54:27 +00:00
|
|
|
$_this->__prefixes = array_keys(array_flip($_this->__prefixes));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-08-29 18:17:14 +00:00
|
|
|
$_this->routes[] = array($route, $default, $params);
|
2008-05-30 11:40:08 +00:00
|
|
|
return $_this->routes;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-03-09 20:03:02 +00:00
|
|
|
* Specifies what named parameters CakePHP should be parsing. The most common setups are:
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Do not parse any named parameters:
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(false); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Parse only default parameters used for CakePHP's pagination:
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(false, array('default' => true)); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Parse only the page parameter if its value is a number:
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(array('page' => '[\d]+'), array('default' => false, 'greedy' => false)); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Parse only the page parameter no mater what.
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(array('page'), array('default' => false, 'greedy' => false)); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Parse only the page parameter if the current action is 'index'.
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(array('page' => array('action' => 'index')), array('default' => false, 'greedy' => false)); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Parse only the page parameter if the current action is 'index' and the controller is 'pages'.
|
2009-02-04 05:00:59 +00:00
|
|
|
* {{{ Router::connectNamed(array('page' => array('action' => 'index', 'controller' => 'pages')), array('default' => false, 'greedy' => false)); }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @param array $named A list of named parameters. Key value pairs are accepted where values are either regex strings to match, or arrays as seen above.
|
|
|
|
* @param array $options Allows to control all settings: separator, greedy, reset, default
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return array
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function connectNamed($named, $options = array()) {
|
|
|
|
$_this =& Router::getInstance();
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($options['argSeparator'])) {
|
2008-06-17 15:46:49 +00:00
|
|
|
$_this->named['separator'] = $options['argSeparator'];
|
2008-05-30 11:40:08 +00:00
|
|
|
unset($options['argSeparator']);
|
|
|
|
}
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($named === true || $named === false) {
|
|
|
|
$options = array_merge(array('default' => $named, 'reset' => true, 'greedy' => $named), $options);
|
|
|
|
$named = array();
|
|
|
|
}
|
|
|
|
$options = array_merge(array('default' => false, 'reset' => false, 'greedy' => true), $options);
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($options['reset'] == true || $_this->named['rules'] === false) {
|
|
|
|
$_this->named['rules'] = array();
|
|
|
|
}
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($options['default']) {
|
|
|
|
$named = array_merge($named, $_this->named['default']);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($named as $key => $val) {
|
|
|
|
if (is_numeric($key)) {
|
|
|
|
$_this->named['rules'][$val] = true;
|
|
|
|
} else {
|
|
|
|
$_this->named['rules'][$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$_this->named['greedy'] = $options['greedy'];
|
|
|
|
return $_this->named;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Creates REST resource routes for the given controller(s)
|
2009-02-17 18:26:37 +00:00
|
|
|
*
|
2009-02-04 05:00:59 +00:00
|
|
|
* Options:
|
2009-02-17 18:26:37 +00:00
|
|
|
*
|
2009-02-04 05:00:59 +00:00
|
|
|
* - 'id' - The regular expression fragment to use when matching IDs. By default, matches
|
|
|
|
* integer values and UUIDs.
|
|
|
|
* - 'prefix' - URL prefix to use for the generated routes. Defaults to '/'.
|
2009-02-17 18:26:37 +00:00
|
|
|
*
|
2009-02-04 05:00:59 +00:00
|
|
|
* @param mixed $controller A controller name or array of controller names (i.e. "Posts" or "ListItems")
|
|
|
|
* @param array $options Options to use when generating REST routes
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function mapResources($controller, $options = array()) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$options = array_merge(array('prefix' => '/', 'id' => $_this->__named['ID'] . '|' . $_this->__named['UUID']), $options);
|
|
|
|
$prefix = $options['prefix'];
|
|
|
|
|
|
|
|
foreach ((array)$controller as $ctlName) {
|
|
|
|
$urlName = Inflector::underscore($ctlName);
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($_this->__resourceMap as $params) {
|
|
|
|
extract($params);
|
2008-08-22 04:06:29 +00:00
|
|
|
$url = $prefix . $urlName . (($id) ? '/:id' : '');
|
|
|
|
|
2008-07-30 20:34:01 +00:00
|
|
|
Router::connect($url,
|
2008-05-30 11:40:08 +00:00
|
|
|
array('controller' => $urlName, 'action' => $action, '[method]' => $params['method']),
|
|
|
|
array('id' => $options['id'], 'pass' => array('id'))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$_this->__resourceMapped[] = $urlName;
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Builds a route regular expression
|
|
|
|
*
|
2009-07-28 09:49:27 +00:00
|
|
|
* @param string $route An empty string, or a route string "/"
|
|
|
|
* @param array $default NULL or an array describing the default route
|
|
|
|
* @param array $params An array matching the named elements in the route to regular expressions which that element should match.
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return array
|
2008-05-30 11:40:08 +00:00
|
|
|
* @see routes
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function writeRoute($route, $default, $params) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (empty($route) || ($route === '/')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return array('/^[\/]*$/', array());
|
|
|
|
}
|
|
|
|
$names = array();
|
|
|
|
$elements = explode('/', $route);
|
|
|
|
|
|
|
|
foreach ($elements as $element) {
|
|
|
|
if (empty($element)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$q = null;
|
|
|
|
$element = trim($element);
|
|
|
|
$namedParam = strpos($element, ':') !== false;
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($namedParam && preg_match('/^:([^:]+)$/', $element, $r)) {
|
|
|
|
if (isset($params[$r[1]])) {
|
|
|
|
if ($r[1] != 'plugin' && array_key_exists($r[1], $default)) {
|
|
|
|
$q = '?';
|
|
|
|
}
|
|
|
|
$parsed[] = '(?:/(' . $params[$r[1]] . ')' . $q . ')' . $q;
|
|
|
|
} else {
|
|
|
|
$parsed[] = '(?:/([^\/]+))?';
|
|
|
|
}
|
|
|
|
$names[] = $r[1];
|
2008-09-14 17:17:49 +00:00
|
|
|
} elseif ($element === '*') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$parsed[] = '(?:/(.*))?';
|
|
|
|
} else if ($namedParam && preg_match_all('/(?!\\\\):([a-z_0-9]+)/i', $element, $matches)) {
|
|
|
|
$matchCount = count($matches[1]);
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($matches[1] as $i => $name) {
|
|
|
|
$pos = strpos($element, ':' . $name);
|
|
|
|
$before = substr($element, 0, $pos);
|
2008-08-22 04:06:29 +00:00
|
|
|
$element = substr($element, $pos + strlen($name) + 1);
|
2008-05-30 11:40:08 +00:00
|
|
|
$after = null;
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-09-14 17:17:49 +00:00
|
|
|
if ($i + 1 === $matchCount && $element) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$after = preg_quote($element);
|
|
|
|
}
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-09-14 17:17:49 +00:00
|
|
|
if ($i === 0) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$before = '/' . $before;
|
|
|
|
}
|
|
|
|
$before = preg_quote($before, '#');
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($params[$name])) {
|
2008-06-11 08:54:27 +00:00
|
|
|
if (isset($default[$name]) && $name != 'plugin') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$q = '?';
|
|
|
|
}
|
|
|
|
$parsed[] = '(?:' . $before . '(' . $params[$name] . ')' . $q . $after . ')' . $q;
|
|
|
|
} else {
|
|
|
|
$parsed[] = '(?:' . $before . '([^\/]+)' . $after . ')?';
|
|
|
|
}
|
|
|
|
$names[] = $name;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$parsed[] = '/' . $element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array('#^' . join('', $parsed) . '[\/]*$#', $names);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the list of prefixes used in connected routes
|
|
|
|
*
|
|
|
|
* @return array A list of prefixes used in connected routes
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function prefixes() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
return $_this->__prefixes;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parses given URL and returns an array of controllers, action and parameters
|
|
|
|
* taken from that URL.
|
|
|
|
*
|
|
|
|
* @param string $url URL to be parsed
|
|
|
|
* @return array Parsed elements from URL
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function parse($url) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
if (!$_this->__defaultsMapped) {
|
|
|
|
$_this->__connectDefaultRoutes();
|
|
|
|
}
|
|
|
|
$out = array('pass' => array(), 'named' => array());
|
|
|
|
$r = $ext = null;
|
|
|
|
|
2008-10-21 12:15:28 +00:00
|
|
|
if (ini_get('magic_quotes_gpc') === '1') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$url = stripslashes_deep($url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($url && strpos($url, '/') !== 0) {
|
|
|
|
$url = '/' . $url;
|
|
|
|
}
|
|
|
|
if (strpos($url, '?') !== false) {
|
|
|
|
$url = substr($url, 0, strpos($url, '?'));
|
|
|
|
}
|
|
|
|
extract($_this->__parseExtension($url));
|
2008-08-22 04:06:29 +00:00
|
|
|
|
2008-08-29 18:17:14 +00:00
|
|
|
foreach ($_this->routes as $i => $route) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (count($route) === 3) {
|
2008-10-12 14:23:16 +00:00
|
|
|
$route = $_this->compile($i);
|
2008-08-29 18:17:14 +00:00
|
|
|
}
|
2009-10-02 05:09:38 +00:00
|
|
|
//switches to parse() in RouterRoute
|
2008-10-12 03:52:24 +00:00
|
|
|
if (($r = $_this->__matchRoute($route, $url)) !== false) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$_this->__currentRoute[] = $route;
|
|
|
|
list($route, $regexp, $names, $defaults, $params) = $route;
|
|
|
|
$argOptions = array();
|
2008-09-17 15:26:31 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (array_key_exists('named', $params)) {
|
|
|
|
$argOptions['named'] = $params['named'];
|
|
|
|
unset($params['named']);
|
|
|
|
}
|
|
|
|
if (array_key_exists('greedy', $params)) {
|
|
|
|
$argOptions['greedy'] = $params['greedy'];
|
|
|
|
unset($params['greedy']);
|
|
|
|
}
|
|
|
|
array_shift($r);
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($names as $name) {
|
|
|
|
$out[$name] = null;
|
|
|
|
}
|
|
|
|
if (is_array($defaults)) {
|
|
|
|
foreach ($defaults as $name => $value) {
|
|
|
|
if (preg_match('#[a-zA-Z_\-]#i', $name)) {
|
|
|
|
$out[$name] = $value;
|
|
|
|
} else {
|
|
|
|
$out['pass'][] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($r as $key => $found) {
|
2008-08-22 03:27:07 +00:00
|
|
|
if (empty($found) && $found != 0) {
|
2008-05-30 11:40:08 +00:00
|
|
|
continue;
|
|
|
|
}
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($names[$key])) {
|
|
|
|
$out[$names[$key]] = $_this->stripEscape($found);
|
|
|
|
} else {
|
|
|
|
$argOptions['context'] = array('action' => $out['action'], 'controller' => $out['controller']);
|
|
|
|
extract($_this->getArgs($found, $argOptions));
|
|
|
|
$out['pass'] = array_merge($out['pass'], $pass);
|
|
|
|
$out['named'] = $named;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['pass'])) {
|
2008-08-29 18:17:14 +00:00
|
|
|
for ($j = count($params['pass']) - 1; $j > -1; $j--) {
|
|
|
|
if (isset($out[$params['pass'][$j]])) {
|
|
|
|
array_unshift($out['pass'], $out[$params['pass'][$j]]);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($ext)) {
|
|
|
|
$out['url']['ext'] = $ext;
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Checks to see if the given URL matches the given route
|
|
|
|
*
|
|
|
|
* @param array $route
|
|
|
|
* @param string $url
|
|
|
|
* @return mixed Boolean false on failure, otherwise array
|
2008-10-12 04:00:48 +00:00
|
|
|
* @access private
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-10-12 03:52:24 +00:00
|
|
|
function __matchRoute($route, $url) {
|
2008-05-30 11:40:08 +00:00
|
|
|
list($route, $regexp, $names, $defaults) = $route;
|
|
|
|
|
|
|
|
if (!preg_match($regexp, $url, $r)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
foreach ($defaults as $key => $val) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if ($key{0} === '[' && preg_match('/^\[(\w+)\]$/', $key, $header)) {
|
2008-10-12 03:52:24 +00:00
|
|
|
if (isset($this->__headerMap[$header[1]])) {
|
|
|
|
$header = $this->__headerMap[$header[1]];
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
|
|
|
$header = 'http_' . $header[1];
|
|
|
|
}
|
|
|
|
|
2008-09-17 15:26:31 +00:00
|
|
|
$val = (array)$val;
|
2008-05-30 11:40:08 +00:00
|
|
|
$h = false;
|
2008-09-17 15:26:31 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($val as $v) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (env(strtoupper($header)) === $v) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$h = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$h) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $r;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-17 15:26:31 +00:00
|
|
|
/**
|
|
|
|
* Compiles a route by numeric key and returns the compiled expression, replacing
|
|
|
|
* the existing uncompiled route. Do not call statically.
|
|
|
|
*
|
|
|
|
* @param integer $i
|
|
|
|
* @return array Returns an array containing the compiled route
|
2008-10-12 14:23:16 +00:00
|
|
|
* @access public
|
2008-09-17 15:26:31 +00:00
|
|
|
*/
|
2008-10-12 14:23:16 +00:00
|
|
|
function compile($i) {
|
2008-09-17 15:26:31 +00:00
|
|
|
$route = $this->routes[$i];
|
|
|
|
|
2009-07-28 09:49:27 +00:00
|
|
|
list($pattern, $names) = $this->writeRoute($route[0], $route[1], $route[2]);
|
2008-09-17 15:26:31 +00:00
|
|
|
$this->routes[$i] = array(
|
|
|
|
$route[0], $pattern, $names,
|
|
|
|
array_merge(array('plugin' => null, 'controller' => null), (array)$route[1]),
|
|
|
|
$route[2]
|
|
|
|
);
|
|
|
|
return $this->routes[$i];
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parses a file extension out of a URL, if Router::parseExtensions() is enabled.
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @return array Returns an array containing the altered URL and the parsed extension.
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __parseExtension($url) {
|
|
|
|
$ext = null;
|
|
|
|
|
2008-10-12 03:52:24 +00:00
|
|
|
if ($this->__parseExtensions) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (preg_match('/\.[0-9a-zA-Z]*$/', $url, $match) === 1) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$match = substr($match[0], 1);
|
2008-10-12 03:52:24 +00:00
|
|
|
if (empty($this->__validExtensions)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$url = substr($url, 0, strpos($url, '.' . $match));
|
|
|
|
$ext = $match;
|
|
|
|
} else {
|
2008-10-12 03:52:24 +00:00
|
|
|
foreach ($this->__validExtensions as $name) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (strcasecmp($name, $match) === 0) {
|
|
|
|
$url = substr($url, 0, strpos($url, '.' . $name));
|
|
|
|
$ext = $match;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (empty($ext)) {
|
|
|
|
$ext = 'html';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return compact('ext', 'url');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Connects the default, built-in routes, including admin routes, and (deprecated) web services
|
|
|
|
* routes.
|
2008-10-12 03:52:24 +00:00
|
|
|
*
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __connectDefaultRoutes() {
|
2008-10-12 03:52:24 +00:00
|
|
|
if ($this->__defaultsMapped) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-10 23:13:39 +00:00
|
|
|
if ($plugins = App::objects('plugin')) {
|
2008-09-12 05:11:34 +00:00
|
|
|
foreach ($plugins as $key => $value) {
|
|
|
|
$plugins[$key] = Inflector::underscore($value);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$match = array('plugin' => implode('|', $plugins));
|
2008-10-12 03:52:24 +00:00
|
|
|
$this->connect('/:plugin/:controller/:action/*', array(), $match);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($this->__prefixes as $prefix) {
|
|
|
|
$params = array('prefix' => $prefix, $prefix => true);
|
|
|
|
$this->connect("/{$prefix}/:plugin/:controller", $params, $match);
|
|
|
|
$this->connect("/{$prefix}/:plugin/:controller/:action/*", $params, $match);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($this->__prefixes as $prefix) {
|
|
|
|
$params = array('prefix' => $prefix, $prefix => true);
|
|
|
|
$this->connect("/{$prefix}/:controller", $params);
|
|
|
|
$this->connect("/{$prefix}/:controller/:action/*", $params);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-10-12 03:52:24 +00:00
|
|
|
$this->connect('/:controller', array('action' => 'index'));
|
|
|
|
$this->connect('/:controller/:action/*');
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-10-12 03:52:24 +00:00
|
|
|
if ($this->named['rules'] === false) {
|
|
|
|
$this->connectNamed(true);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-10-12 03:52:24 +00:00
|
|
|
$this->__defaultsMapped = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Takes parameter and path information back from the Dispatcher
|
|
|
|
*
|
|
|
|
* @param array $params Parameters and path information
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function setRequestInfo($params) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$defaults = array('plugin' => null, 'controller' => null, 'action' => null);
|
|
|
|
$params[0] = array_merge($defaults, (array)$params[0]);
|
|
|
|
$params[1] = array_merge($defaults, (array)$params[1]);
|
|
|
|
list($_this->__params[], $_this->__paths[]) = $params;
|
|
|
|
|
|
|
|
if (count($_this->__paths)) {
|
|
|
|
if (isset($_this->__paths[0]['namedArgs'])) {
|
|
|
|
foreach ($_this->__paths[0]['namedArgs'] as $arg => $value) {
|
|
|
|
$_this->named['rules'][$arg] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets parameter information
|
|
|
|
*
|
|
|
|
* @param boolean $current Get current parameter (true)
|
|
|
|
* @return array Parameter information
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getParams($current = false) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
if ($current) {
|
|
|
|
return $_this->__params[count($_this->__params) - 1];
|
|
|
|
}
|
|
|
|
if (isset($_this->__params[0])) {
|
|
|
|
return $_this->__params[0];
|
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets URL parameter by name
|
|
|
|
*
|
|
|
|
* @param string $name Parameter name
|
|
|
|
* @param boolean $current Current parameter
|
|
|
|
* @return string Parameter value
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getParam($name = 'controller', $current = false) {
|
|
|
|
$params = Router::getParams($current);
|
|
|
|
if (isset($params[$name])) {
|
|
|
|
return $params[$name];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets path information
|
|
|
|
*
|
|
|
|
* @param boolean $current Current parameter
|
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getPaths($current = false) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
if ($current) {
|
|
|
|
return $_this->__paths[count($_this->__paths) - 1];
|
|
|
|
}
|
|
|
|
if (!isset($_this->__paths[0])) {
|
|
|
|
return array('base' => null);
|
|
|
|
}
|
|
|
|
return $_this->__paths[0];
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Reloads default Router settings
|
|
|
|
*
|
|
|
|
* @access public
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function reload() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
foreach (get_class_vars('Router') as $key => $val) {
|
|
|
|
$_this->{$key} = $val;
|
|
|
|
}
|
2009-09-27 02:37:19 +00:00
|
|
|
$_this->__setPrefixes();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Promote a route (by default, the last one added) to the beginning of the list
|
|
|
|
*
|
|
|
|
* @param $which A zero-based array index representing the route to move. For example,
|
|
|
|
* if 3 routes have been added, the last route would be 2.
|
|
|
|
* @return boolean Retuns false if no route exists at the position specified by $which.
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function promote($which = null) {
|
|
|
|
$_this =& Router::getInstance();
|
2008-09-14 17:17:49 +00:00
|
|
|
if ($which === null) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$which = count($_this->routes) - 1;
|
|
|
|
}
|
|
|
|
if (!isset($_this->routes[$which])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$route = $_this->routes[$which];
|
|
|
|
unset($_this->routes[$which]);
|
|
|
|
array_unshift($_this->routes, $route);
|
|
|
|
return true;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Finds URL for specified action.
|
|
|
|
*
|
|
|
|
* Returns an URL pointing to a combination of controller and action. Param
|
|
|
|
* $url can be:
|
2009-02-17 18:26:37 +00:00
|
|
|
*
|
2009-02-04 05:00:59 +00:00
|
|
|
* - Empty - the method will find adress to actuall controller/action.
|
|
|
|
* - '/' - the method will find base URL of application.
|
|
|
|
* - A combination of controller/action - the method will find url for it.
|
|
|
|
*
|
|
|
|
* @param mixed $url Cake-relative URL, like "/products/edit/92" or "/presidents/elect/4"
|
|
|
|
* or an array specifying any of the following: 'controller', 'action',
|
|
|
|
* and/or 'plugin', in addition to named arguments (keyed array elements),
|
|
|
|
* and standard URL arguments (indexed array elements)
|
|
|
|
* @param mixed $full If (bool) true, the full base URL will be prepended to the result.
|
|
|
|
* If an array accepts the following keys
|
|
|
|
* - escape - used when making urls embedded in html escapes query string '&'
|
|
|
|
* - full - if true the full base URL will be prepended.
|
|
|
|
* @return string Full translated URL with base path.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function url($url = null, $full = false) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$defaults = $params = array('plugin' => null, 'controller' => null, 'action' => 'index');
|
2009-02-17 18:26:37 +00:00
|
|
|
|
2009-01-14 21:38:11 +00:00
|
|
|
if (is_bool($full)) {
|
|
|
|
$escape = false;
|
|
|
|
} else {
|
|
|
|
extract(array_merge(array('escape' => false, 'full' => false), $full));
|
|
|
|
}
|
2009-02-17 18:26:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (!empty($_this->__params)) {
|
|
|
|
if (isset($this) && !isset($this->params['requested'])) {
|
|
|
|
$params = $_this->__params[0];
|
|
|
|
} else {
|
|
|
|
$params = end($_this->__params);
|
|
|
|
}
|
2009-09-05 05:06:18 +00:00
|
|
|
if (isset($params['prefix']) && strpos($params['action'], $params['prefix']) === 0) {
|
|
|
|
$params['action'] = substr($params['action'], strlen($params['prefix']) + 1);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$path = array('base' => null);
|
|
|
|
|
|
|
|
if (!empty($_this->__paths)) {
|
|
|
|
if (isset($this) && !isset($this->params['requested'])) {
|
|
|
|
$path = $_this->__paths[0];
|
|
|
|
} else {
|
|
|
|
$path = end($_this->__paths);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$base = $path['base'];
|
|
|
|
$extension = $output = $mapped = $q = $frag = null;
|
|
|
|
|
|
|
|
if (is_array($url)) {
|
2008-06-11 08:54:27 +00:00
|
|
|
if (isset($url['base']) && $url['base'] === false) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$base = null;
|
|
|
|
unset($url['base']);
|
|
|
|
}
|
2008-09-14 17:17:49 +00:00
|
|
|
if (isset($url['full_base']) && $url['full_base'] === true) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$full = true;
|
|
|
|
unset($url['full_base']);
|
|
|
|
}
|
|
|
|
if (isset($url['?'])) {
|
|
|
|
$q = $url['?'];
|
|
|
|
unset($url['?']);
|
|
|
|
}
|
|
|
|
if (isset($url['#'])) {
|
|
|
|
$frag = '#' . urlencode($url['#']);
|
|
|
|
unset($url['#']);
|
|
|
|
}
|
|
|
|
if (empty($url['action'])) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (empty($url['controller']) || $params['controller'] === $url['controller']) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$url['action'] = $params['action'];
|
|
|
|
} else {
|
|
|
|
$url['action'] = 'index';
|
|
|
|
}
|
|
|
|
}
|
2009-09-27 04:12:03 +00:00
|
|
|
|
2009-09-30 14:19:43 +00:00
|
|
|
$prefixExists = (array_intersect_key($url, array_flip($_this->__prefixes)));
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($_this->__prefixes as $prefix) {
|
2009-09-30 14:19:43 +00:00
|
|
|
if (!isset($url[$prefix]) && !empty($params[$prefix]) && !$prefixExists) {
|
2009-09-27 04:12:03 +00:00
|
|
|
$url[$prefix] = true;
|
|
|
|
} elseif (isset($url[$prefix]) && !$url[$prefix]) {
|
|
|
|
unset($url[$prefix]);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$plugin = false;
|
2008-06-11 08:54:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (array_key_exists('plugin', $url)) {
|
|
|
|
$plugin = $url['plugin'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = array_merge(array('controller' => $params['controller'], 'plugin' => $params['plugin']), Set::filter($url, true));
|
|
|
|
|
|
|
|
if ($plugin !== false) {
|
|
|
|
$url['plugin'] = $plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($url['ext'])) {
|
|
|
|
$extension = '.' . $url['ext'];
|
|
|
|
unset($url['ext']);
|
|
|
|
}
|
|
|
|
$match = false;
|
|
|
|
|
2008-08-29 18:17:14 +00:00
|
|
|
foreach ($_this->routes as $i => $route) {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (count($route) === 3) {
|
2008-10-12 14:23:16 +00:00
|
|
|
$route = $_this->compile($i);
|
2008-08-29 18:17:14 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
$originalUrl = $url;
|
2008-08-29 18:17:14 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($route[4]['persist'], $_this->__params[0])) {
|
2008-07-31 00:16:16 +00:00
|
|
|
$url = array_merge(array_intersect_key($params, Set::combine($route[4]['persist'], '/')), $url);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-10-02 05:09:38 +00:00
|
|
|
// replace with RouterRoute::match
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($match = $_this->mapRouteElements($route, $url)) {
|
|
|
|
$output = trim($match, '/');
|
|
|
|
$url = array();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$url = $originalUrl;
|
|
|
|
}
|
2009-02-17 18:26:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$named = $args = array();
|
2009-09-27 04:12:03 +00:00
|
|
|
$skip = array_merge(
|
|
|
|
array('bare', 'action', 'controller', 'plugin', 'ext', '?', '#', 'prefix'),
|
|
|
|
$_this->__prefixes
|
2008-08-29 18:17:14 +00:00
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$keys = array_values(array_diff(array_keys($url), $skip));
|
|
|
|
$count = count($keys);
|
|
|
|
|
|
|
|
// Remove this once parsed URL parameters can be inserted into 'pass'
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
2009-09-30 02:53:17 +00:00
|
|
|
if (is_numeric($keys[$i])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$args[] = $url[$keys[$i]];
|
|
|
|
} else {
|
|
|
|
$named[$keys[$i]] = $url[$keys[$i]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($match === false) {
|
|
|
|
list($args, $named) = array(Set::filter($args, true), Set::filter($named));
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($_this->__prefixes as $prefix) {
|
|
|
|
if (!empty($url[$prefix])) {
|
|
|
|
$url['action'] = str_replace($prefix . '_', '', $url['action']);
|
2009-09-30 14:01:08 +00:00
|
|
|
break;
|
2009-09-27 04:12:03 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
2008-09-14 17:17:49 +00:00
|
|
|
if (empty($named) && empty($args) && (!isset($url['action']) || $url['action'] === 'index')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$url['action'] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlOut = Set::filter(array($url['controller'], $url['action']));
|
|
|
|
|
|
|
|
if (isset($url['plugin']) && $url['plugin'] != $url['controller']) {
|
|
|
|
array_unshift($urlOut, $url['plugin']);
|
|
|
|
}
|
2009-09-30 14:19:43 +00:00
|
|
|
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($_this->__prefixes as $prefix) {
|
|
|
|
if (isset($url[$prefix])) {
|
|
|
|
array_unshift($urlOut, $prefix);
|
2009-09-30 14:01:08 +00:00
|
|
|
break;
|
2009-09-27 04:12:03 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$output = join('/', $urlOut) . '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($args)) {
|
|
|
|
$args = join('/', $args);
|
|
|
|
if ($output{strlen($output) - 1} != '/') {
|
|
|
|
$args = '/'. $args;
|
|
|
|
}
|
|
|
|
$output .= $args;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($named)) {
|
|
|
|
foreach ($named as $name => $value) {
|
|
|
|
$output .= '/' . $name . $_this->named['separator'] . $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$output = str_replace('//', '/', $base . '/' . $output);
|
|
|
|
} else {
|
2008-09-12 05:11:34 +00:00
|
|
|
if (((strpos($url, '://')) || (strpos($url, 'javascript:') === 0) || (strpos($url, 'mailto:') === 0)) || (!strncmp($url, '#', 1))) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
if (empty($url)) {
|
|
|
|
if (!isset($path['here'])) {
|
|
|
|
$path['here'] = '/';
|
|
|
|
}
|
2008-06-14 21:12:56 +00:00
|
|
|
$output = $path['here'];
|
2008-09-14 17:17:49 +00:00
|
|
|
} elseif (substr($url, 0, 1) === '/') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$output = $base . $url;
|
|
|
|
} else {
|
|
|
|
$output = $base . '/';
|
2009-09-27 04:12:03 +00:00
|
|
|
foreach ($_this->__prefixes as $prefix) {
|
|
|
|
if (isset($params[$prefix])) {
|
|
|
|
$output .= $prefix . '/';
|
2009-09-30 14:01:08 +00:00
|
|
|
break;
|
2009-09-27 04:12:03 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
if (!empty($params['plugin']) && $params['plugin'] !== $params['controller']) {
|
|
|
|
$output .= Inflector::underscore($params['plugin']) . '/';
|
|
|
|
}
|
|
|
|
$output .= Inflector::underscore($params['controller']) . '/' . $url;
|
|
|
|
}
|
|
|
|
$output = str_replace('//', '/', $output);
|
|
|
|
}
|
2008-10-30 15:05:46 +00:00
|
|
|
if ($full && defined('FULL_BASE_URL')) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$output = FULL_BASE_URL . $output;
|
|
|
|
}
|
2008-09-14 17:17:49 +00:00
|
|
|
if (!empty($extension) && substr($output, -1) === '/') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$output = substr($output, 0, -1);
|
|
|
|
}
|
|
|
|
|
2009-01-14 21:38:11 +00:00
|
|
|
return $output . $extension . $_this->queryString($q, array(), $escape) . $frag;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Maps a URL array onto a route and returns the string result, or false if no match
|
|
|
|
*
|
|
|
|
* @param array $route Route Route
|
|
|
|
* @param array $url URL URL to map
|
|
|
|
* @return mixed Result (as string) or false if no match
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function mapRouteElements($route, $url) {
|
|
|
|
if (isset($route[3]['prefix'])) {
|
|
|
|
$prefix = $route[3]['prefix'];
|
|
|
|
unset($route[3]['prefix']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$pass = array();
|
|
|
|
$defaults = $route[3];
|
|
|
|
$routeParams = $route[2];
|
|
|
|
$params = Set::diff($url, $defaults);
|
|
|
|
$urlInv = array_combine(array_values($url), array_keys($url));
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
while (isset($defaults[$i])) {
|
|
|
|
if (isset($urlInv[$defaults[$i]])) {
|
|
|
|
if (!in_array($defaults[$i], $url) && is_int($urlInv[$defaults[$i]])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unset($urlInv[$defaults[$i]], $defaults[$i]);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($params as $key => $value) {
|
|
|
|
if (is_int($key)) {
|
|
|
|
$pass[] = $value;
|
|
|
|
unset($params[$key]);
|
|
|
|
}
|
|
|
|
}
|
2008-08-27 12:36:57 +00:00
|
|
|
list($named, $params) = Router::getNamedElements($params);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (!strpos($route[0], '*') && (!empty($pass) || !empty($named))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlKeys = array_keys($url);
|
|
|
|
$paramsKeys = array_keys($params);
|
|
|
|
$defaultsKeys = array_keys($defaults);
|
|
|
|
|
|
|
|
if (!empty($params)) {
|
|
|
|
if (array_diff($paramsKeys, $routeParams) != array()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$required = array_values(array_diff($routeParams, $urlKeys));
|
|
|
|
$reqCount = count($required);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $reqCount; $i++) {
|
|
|
|
if (array_key_exists($required[$i], $defaults) && $defaults[$required[$i]] === null) {
|
|
|
|
unset($required[$i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$isFilled = true;
|
|
|
|
|
|
|
|
if (!empty($routeParams)) {
|
|
|
|
$filled = array_intersect_key($url, array_combine($routeParams, array_keys($routeParams)));
|
2008-09-14 17:17:49 +00:00
|
|
|
$isFilled = (array_diff($routeParams, array_keys($filled)) === array());
|
2008-05-30 11:40:08 +00:00
|
|
|
if (!$isFilled && empty($params)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($params)) {
|
|
|
|
return Router::__mapRoute($route, array_merge($url, compact('pass', 'named', 'prefix')));
|
|
|
|
} elseif (!empty($routeParams) && !empty($route[3])) {
|
|
|
|
|
|
|
|
if (!empty($required)) {
|
2008-06-20 20:17:23 +00:00
|
|
|
return false;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
foreach ($params as $key => $val) {
|
|
|
|
if ((!isset($url[$key]) || $url[$key] != $val) || (!isset($defaults[$key]) || $defaults[$key] != $val) && !in_array($key, $routeParams)) {
|
2008-06-11 08:54:27 +00:00
|
|
|
if (!isset($defaults[$key])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2008-09-14 17:17:49 +00:00
|
|
|
if (empty($required) && $defaults['plugin'] === $url['plugin'] && $defaults['controller'] === $url['controller'] && $defaults['action'] === $url['action']) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return Router::__mapRoute($route, array_merge($url, compact('pass', 'named', 'prefix')));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($route[4])) {
|
|
|
|
foreach ($route[4] as $key => $reg) {
|
|
|
|
if (array_key_exists($key, $url) && !preg_match('#' . $reg . '#', $url[$key])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Router::__mapRoute($route, array_merge($filled, compact('pass', 'named', 'prefix')));
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Merges URL parameters into a route string
|
|
|
|
*
|
|
|
|
* @param array $route Route
|
|
|
|
* @param array $params Parameters
|
|
|
|
* @return string Merged URL with parameters
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __mapRoute($route, $params = array()) {
|
2008-10-23 00:10:44 +00:00
|
|
|
if (isset($params['plugin']) && isset($params['controller']) && $params['plugin'] === $params['controller']) {
|
2008-05-30 11:40:08 +00:00
|
|
|
unset($params['controller']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['prefix']) && isset($params['action'])) {
|
|
|
|
$params['action'] = str_replace($params['prefix'] . '_', '', $params['action']);
|
|
|
|
unset($params['prefix']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['pass']) && is_array($params['pass'])) {
|
2008-06-20 20:17:23 +00:00
|
|
|
$params['pass'] = implode('/', Set::filter($params['pass'], true));
|
2008-05-30 11:40:08 +00:00
|
|
|
} elseif (!isset($params['pass'])) {
|
|
|
|
$params['pass'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['named'])) {
|
|
|
|
if (is_array($params['named'])) {
|
|
|
|
$count = count($params['named']);
|
|
|
|
$keys = array_keys($params['named']);
|
|
|
|
$named = array();
|
|
|
|
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
2008-10-12 03:52:24 +00:00
|
|
|
$named[] = $keys[$i] . $this->named['separator'] . $params['named'][$keys[$i]];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$params['named'] = join('/', $named);
|
|
|
|
}
|
|
|
|
$params['pass'] = str_replace('//', '/', $params['pass'] . '/' . $params['named']);
|
|
|
|
}
|
|
|
|
$out = $route[0];
|
|
|
|
|
|
|
|
foreach ($route[2] as $key) {
|
|
|
|
$string = null;
|
|
|
|
if (isset($params[$key])) {
|
|
|
|
$string = $params[$key];
|
|
|
|
unset($params[$key]);
|
2009-07-17 21:35:23 +00:00
|
|
|
} elseif (strpos($out, $key) != strlen($out) - strlen($key)) {
|
2009-02-17 18:26:37 +00:00
|
|
|
$key = $key . '/';
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$out = str_replace(':' . $key, $string, $out);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($route[0], '*')) {
|
|
|
|
$out = str_replace('*', $params['pass'], $out);
|
|
|
|
}
|
2009-02-17 18:26:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
return $out;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Takes an array of URL parameters and separates the ones that can be used as named arguments
|
|
|
|
*
|
|
|
|
* @param array $params Associative array of URL parameters.
|
|
|
|
* @param string $controller Name of controller being routed. Used in scoping.
|
|
|
|
* @param string $action Name of action being routed. Used in scoping.
|
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getNamedElements($params, $controller = null, $action = null) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$named = array();
|
|
|
|
|
|
|
|
foreach ($params as $param => $val) {
|
|
|
|
if (isset($_this->named['rules'][$param])) {
|
|
|
|
$rule = $_this->named['rules'][$param];
|
|
|
|
if (Router::matchNamed($param, $val, $rule, compact('controller', 'action'))) {
|
|
|
|
$named[$param] = $val;
|
|
|
|
unset($params[$param]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array($named, $params);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Return true if a given named $param's $val matches a given $rule depending on $context. Currently implemented
|
|
|
|
* rule types are controller, action and match that can be combined with each other.
|
|
|
|
*
|
|
|
|
* @param string $param The name of the named parameter
|
|
|
|
* @param string $val The value of the named parameter
|
|
|
|
* @param array $rule The rule(s) to apply, can also be a match string
|
|
|
|
* @param string $context An array with additional context information (controller / action)
|
|
|
|
* @return boolean
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function matchNamed($param, $val, $rule, $context = array()) {
|
|
|
|
if ($rule === true || $rule === false) {
|
|
|
|
return $rule;
|
|
|
|
}
|
|
|
|
if (is_string($rule)) {
|
|
|
|
$rule = array('match' => $rule);
|
|
|
|
}
|
|
|
|
if (!is_array($rule)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$controllerMatches = !isset($rule['controller'], $context['controller']) || in_array($context['controller'], (array)$rule['controller']);
|
|
|
|
if (!$controllerMatches) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$actionMatches = !isset($rule['action'], $context['action']) || in_array($context['action'], (array)$rule['action']);
|
|
|
|
if (!$actionMatches) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$valueMatches = !isset($rule['match']) || preg_match(sprintf('/%s/', $rule['match']), $val);
|
|
|
|
return $valueMatches;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Generates a well-formed querystring from $q
|
|
|
|
*
|
|
|
|
* @param mixed $q Query string
|
2009-01-14 21:38:11 +00:00
|
|
|
* @param array $extra Extra querystring parameters.
|
|
|
|
* @param bool $escape Whether or not to use escaped &
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
2009-01-14 21:38:11 +00:00
|
|
|
function queryString($q, $extra = array(), $escape = false) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (empty($q) && empty($extra)) {
|
|
|
|
return null;
|
|
|
|
}
|
2009-01-14 21:38:11 +00:00
|
|
|
$join = '&';
|
|
|
|
if ($escape === true) {
|
|
|
|
$join = '&';
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
$out = '';
|
|
|
|
|
|
|
|
if (is_array($q)) {
|
|
|
|
$q = array_merge($extra, $q);
|
|
|
|
} else {
|
|
|
|
$out = $q;
|
|
|
|
$q = $extra;
|
|
|
|
}
|
2009-01-14 21:38:11 +00:00
|
|
|
$out .= http_build_query($q, null, $join);
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($out[0]) && $out[0] != '?') {
|
|
|
|
$out = '?' . $out;
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Normalizes a URL for purposes of comparison
|
|
|
|
*
|
|
|
|
* @param mixed $url URL to normalize
|
|
|
|
* @return string Normalized URL
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function normalize($url = '/') {
|
|
|
|
if (is_array($url)) {
|
|
|
|
$url = Router::url($url);
|
2008-07-25 11:45:00 +00:00
|
|
|
} elseif (preg_match('/^[a-z\-]+:\/\//', $url)) {
|
|
|
|
return $url;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$paths = Router::getPaths();
|
|
|
|
|
|
|
|
if (!empty($paths['base']) && stristr($url, $paths['base'])) {
|
2009-07-20 13:18:38 +00:00
|
|
|
$url = preg_replace('/^' . preg_quote($paths['base'], '/') . '/', '', $url, 1);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$url = '/' . $url;
|
|
|
|
|
|
|
|
while (strpos($url, '//') !== false) {
|
|
|
|
$url = str_replace('//', '/', $url);
|
|
|
|
}
|
2008-09-12 05:11:34 +00:00
|
|
|
$url = preg_replace('/(?:(\/$))/', '', $url);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (empty($url)) {
|
|
|
|
return '/';
|
|
|
|
}
|
|
|
|
return $url;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the route matching the current request URL.
|
|
|
|
*
|
|
|
|
* @return array Matching route
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function requestRoute() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
return $_this->__currentRoute[0];
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the route matching the current request (useful for requestAction traces)
|
|
|
|
*
|
|
|
|
* @return array Matching route
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function currentRoute() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
return $_this->__currentRoute[count($_this->__currentRoute) - 1];
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Removes the plugin name from the base URL.
|
|
|
|
*
|
|
|
|
* @param string $base Base URL
|
|
|
|
* @param string $plugin Plugin name
|
|
|
|
* @return base url with plugin name removed if present
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
2009-07-22 13:02:31 +00:00
|
|
|
function stripPlugin($base, $plugin = null) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($plugin != null) {
|
2008-09-12 05:11:34 +00:00
|
|
|
$base = preg_replace('/(?:' . $plugin . ')/', '', $base);
|
2008-05-30 11:40:08 +00:00
|
|
|
$base = str_replace('//', '', $base);
|
|
|
|
$pos1 = strrpos($base, '/');
|
|
|
|
$char = strlen($base) - 1;
|
|
|
|
|
2008-09-14 17:17:49 +00:00
|
|
|
if ($pos1 === $char) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$base = substr($base, 0, $char);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $base;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Strip escape characters from parameter values.
|
|
|
|
*
|
|
|
|
* @param mixed $param Either an array, or a string
|
|
|
|
* @return mixed Array or string escaped
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function stripEscape($param) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
if (!is_array($param) || empty($param)) {
|
|
|
|
if (is_bool($param)) {
|
|
|
|
return $param;
|
|
|
|
}
|
|
|
|
|
2009-07-28 09:49:27 +00:00
|
|
|
return preg_replace('/^(?:[\\t ]*(?:-!)+)/', '', $param);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-28 09:49:27 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($param as $key => $value) {
|
|
|
|
if (is_string($value)) {
|
2008-09-12 05:11:34 +00:00
|
|
|
$return[$key] = preg_replace('/^(?:[\\t ]*(?:-!)+)/', '', $value);
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
|
|
|
foreach ($value as $array => $string) {
|
|
|
|
$return[$key][$array] = $_this->stripEscape($string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Instructs the router to parse out file extensions from the URL. For example,
|
|
|
|
* http://example.com/posts.rss would yield an file extension of "rss".
|
|
|
|
* The file extension itself is made available in the controller as
|
|
|
|
* $this->params['url']['ext'], and is used by the RequestHandler component to
|
|
|
|
* automatically switch to alternate layouts and templates, and load helpers
|
|
|
|
* corresponding to the given content, i.e. RssHelper.
|
|
|
|
*
|
|
|
|
* A list of valid extension can be passed to this method, i.e. Router::parseExtensions('rss', 'xml');
|
|
|
|
* If no parameters are given, anything after the first . (dot) after the last / in the URL will be
|
|
|
|
* parsed, excluding querystring parameters (i.e. ?q=...).
|
|
|
|
*
|
|
|
|
* @access public
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function parseExtensions() {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$_this->__parseExtensions = true;
|
|
|
|
if (func_num_args() > 0) {
|
|
|
|
$_this->__validExtensions = func_get_args();
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Takes an passed params and converts it to args
|
|
|
|
*
|
|
|
|
* @param array $params
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return array Array containing passed and named parameters
|
|
|
|
* @access public
|
2008-05-30 11:40:08 +00:00
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function getArgs($args, $options = array()) {
|
|
|
|
$_this =& Router::getInstance();
|
|
|
|
$pass = $named = array();
|
|
|
|
$args = explode('/', $args);
|
|
|
|
|
|
|
|
$greedy = $_this->named['greedy'];
|
|
|
|
if (isset($options['greedy'])) {
|
|
|
|
$greedy = $options['greedy'];
|
|
|
|
}
|
|
|
|
$context = array();
|
|
|
|
if (isset($options['context'])) {
|
|
|
|
$context = $options['context'];
|
|
|
|
}
|
|
|
|
$rules = $_this->named['rules'];
|
|
|
|
if (isset($options['named'])) {
|
2008-09-14 17:17:49 +00:00
|
|
|
$greedy = isset($options['greedy']) && $options['greedy'] === true;
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ((array)$options['named'] as $key => $val) {
|
|
|
|
if (is_numeric($key)) {
|
|
|
|
$rules[$val] = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$rules[$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($args as $param) {
|
|
|
|
if (empty($param) && $param !== '0' && $param !== 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$param = $_this->stripEscape($param);
|
2009-07-28 09:49:27 +00:00
|
|
|
|
|
|
|
$separatorIsPresent = strpos($param, $_this->named['separator']) !== false;
|
|
|
|
if ((!isset($options['named']) || !empty($options['named'])) && $separatorIsPresent) {
|
2008-05-30 11:40:08 +00:00
|
|
|
list($key, $val) = explode($_this->named['separator'], $param, 2);
|
|
|
|
$hasRule = isset($rules[$key]);
|
2009-09-27 20:31:56 +00:00
|
|
|
$passIt = (!$hasRule && !$greedy) || ($hasRule && !$_this->matchNamed($key, $val, $rules[$key], $context));
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($passIt) {
|
|
|
|
$pass[] = $param;
|
|
|
|
} else {
|
|
|
|
$named[$key] = $val;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$pass[] = $param;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return compact('pass', 'named');
|
|
|
|
}
|
|
|
|
}
|
2009-09-30 13:49:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A single Route used by the Router to connect requests to
|
|
|
|
* parameter maps.
|
|
|
|
*
|
|
|
|
* Not normally created as a standalone. Use Router::connect() to create
|
|
|
|
* Routes for your application.
|
|
|
|
*
|
|
|
|
* @package cake.libs
|
|
|
|
* @since 1.3.0
|
|
|
|
* @see Router::connect
|
|
|
|
*/
|
|
|
|
class RouterRoute {
|
|
|
|
/**
|
|
|
|
* An array of named segments in a Route.
|
|
|
|
* `/:controller/:action/:id` has 3 named elements
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
**/
|
2009-10-02 05:09:38 +00:00
|
|
|
var $keys = array();
|
2009-09-30 13:49:39 +00:00
|
|
|
/**
|
|
|
|
* An array of additional parameters for the Route.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
**/
|
|
|
|
var $params = array();
|
|
|
|
/**
|
|
|
|
* Default parameters for a Route
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $defaults = array();
|
|
|
|
/**
|
2009-10-02 05:09:38 +00:00
|
|
|
* The routes template string.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
**/
|
|
|
|
var $template = null;
|
|
|
|
/**
|
|
|
|
* Is this route a greedy route? Greedy routes have a `/*` in their
|
|
|
|
* template
|
2009-09-30 13:49:39 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
**/
|
2009-10-02 05:09:38 +00:00
|
|
|
var $_greedy = false;
|
2009-09-30 13:49:39 +00:00
|
|
|
/**
|
|
|
|
* The compiled route regular expresssion
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
**/
|
|
|
|
var $_compiledRoute = null;
|
|
|
|
/**
|
|
|
|
* HTTP header shortcut map. Used for evaluating header-based route expressions.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__headerMap = array(
|
|
|
|
'type' => 'content_type',
|
|
|
|
'method' => 'request_method',
|
|
|
|
'server' => 'server_name'
|
|
|
|
);
|
|
|
|
/**
|
|
|
|
* Constructor for a Route
|
|
|
|
*
|
2009-10-02 05:09:38 +00:00
|
|
|
* @param string $template Template string with parameter placeholders
|
2009-09-30 13:49:39 +00:00
|
|
|
* @param array $defaults Array of defaults for the route.
|
|
|
|
* @param string $params Array of parameters and additional options for the Route
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-10-02 05:09:38 +00:00
|
|
|
function RouterRoute($template, $defaults = array(), $params = array()) {
|
|
|
|
$this->template = $template;
|
2009-09-30 13:49:39 +00:00
|
|
|
$this->defaults = (array)$defaults;
|
|
|
|
$this->params = (array)$params;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Check if a Route has been compiled into a regular expression.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
**/
|
|
|
|
function compiled() {
|
|
|
|
return !empty($this->_compiledRoute);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Compiles the routes regular expression. Modifies defaults property so all necessary keys are set
|
|
|
|
* and populates $this->names with the named routing elements.
|
|
|
|
*
|
|
|
|
* @return array Returns a string regular expression of the compiled route.
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function compile() {
|
2009-10-02 05:09:38 +00:00
|
|
|
$this->_writeRoute($this->template, $this->defaults, $this->params);
|
|
|
|
$this->defaults += array('plugin' => null, 'controller' => null, 'action' => null);
|
2009-09-30 13:49:39 +00:00
|
|
|
return $this->_compiledRoute;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Builds a route regular expression
|
|
|
|
*
|
|
|
|
* @param string $route An empty string, or a route string "/"
|
|
|
|
* @param array $default NULL or an array describing the default route
|
|
|
|
* @param array $params An array matching the named elements in the route to regular expressions which that element should match.
|
|
|
|
* @return array
|
|
|
|
* @access protected
|
|
|
|
*/
|
|
|
|
function _writeRoute($route, $default, $params) {
|
|
|
|
if (empty($route) || ($route === '/')) {
|
2009-10-02 05:09:38 +00:00
|
|
|
$this->_compiledRoute = '/^[\/]*$/';
|
|
|
|
$this->keys = array();
|
2009-09-30 13:49:39 +00:00
|
|
|
}
|
|
|
|
$names = array();
|
|
|
|
$elements = explode('/', $route);
|
|
|
|
|
|
|
|
foreach ($elements as $element) {
|
|
|
|
if (empty($element)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$q = null;
|
|
|
|
$element = trim($element);
|
|
|
|
$namedParam = strpos($element, ':') !== false;
|
|
|
|
|
|
|
|
if ($namedParam && preg_match('/^:([^:]+)$/', $element, $r)) {
|
|
|
|
if (isset($params[$r[1]])) {
|
|
|
|
if ($r[1] != 'plugin' && array_key_exists($r[1], $default)) {
|
|
|
|
$q = '?';
|
|
|
|
}
|
|
|
|
$parsed[] = '(?:/(' . $params[$r[1]] . ')' . $q . ')' . $q;
|
|
|
|
} else {
|
|
|
|
$parsed[] = '(?:/([^\/]+))?';
|
|
|
|
}
|
|
|
|
$names[] = $r[1];
|
|
|
|
} elseif ($element === '*') {
|
|
|
|
$parsed[] = '(?:/(.*))?';
|
|
|
|
} else if ($namedParam && preg_match_all('/(?!\\\\):([a-z_0-9]+)/i', $element, $matches)) {
|
|
|
|
$matchCount = count($matches[1]);
|
|
|
|
|
|
|
|
foreach ($matches[1] as $i => $name) {
|
|
|
|
$pos = strpos($element, ':' . $name);
|
|
|
|
$before = substr($element, 0, $pos);
|
|
|
|
$element = substr($element, $pos + strlen($name) + 1);
|
|
|
|
$after = null;
|
|
|
|
|
|
|
|
if ($i + 1 === $matchCount && $element) {
|
|
|
|
$after = preg_quote($element);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($i === 0) {
|
|
|
|
$before = '/' . $before;
|
|
|
|
}
|
|
|
|
$before = preg_quote($before, '#');
|
|
|
|
|
|
|
|
if (isset($params[$name])) {
|
|
|
|
if (isset($default[$name]) && $name != 'plugin') {
|
|
|
|
$q = '?';
|
|
|
|
}
|
|
|
|
$parsed[] = '(?:' . $before . '(' . $params[$name] . ')' . $q . $after . ')' . $q;
|
|
|
|
} else {
|
|
|
|
$parsed[] = '(?:' . $before . '([^\/]+)' . $after . ')?';
|
|
|
|
}
|
|
|
|
$names[] = $name;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$parsed[] = '/' . $element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->_compiledRoute = '#^' . join('', $parsed) . '[\/]*$#';
|
2009-10-02 05:09:38 +00:00
|
|
|
$this->keys = $names;
|
2009-09-30 13:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-10-02 05:09:38 +00:00
|
|
|
* Checks to see if the given URL can be parsed by this route.
|
|
|
|
* If the route can be parsed an array of parameters will be returned if not
|
|
|
|
* false will be returned.
|
2009-09-30 13:49:39 +00:00
|
|
|
*
|
2009-10-02 05:09:38 +00:00
|
|
|
* @param string $url The url to attempt to parse.
|
|
|
|
* @return mixed Boolean false on failure, otherwise an array or parameters
|
2009-09-30 13:49:39 +00:00
|
|
|
*/
|
2009-10-02 05:09:38 +00:00
|
|
|
function parse($url) {
|
2009-09-30 13:49:39 +00:00
|
|
|
if (!$this->compiled()) {
|
|
|
|
$this->compile();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!preg_match($this->_compiledRoute, $url, $r)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
foreach ($this->defaults as $key => $val) {
|
|
|
|
if ($key{0} === '[' && preg_match('/^\[(\w+)\]$/', $key, $header)) {
|
|
|
|
if (isset($this->__headerMap[$header[1]])) {
|
|
|
|
$header = $this->__headerMap[$header[1]];
|
|
|
|
} else {
|
|
|
|
$header = 'http_' . $header[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
$val = (array)$val;
|
|
|
|
$h = false;
|
|
|
|
|
|
|
|
foreach ($val as $v) {
|
|
|
|
if (env(strtoupper($header)) === $v) {
|
|
|
|
$h = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$h) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $r;
|
|
|
|
}
|
2009-10-02 05:09:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to match a url array. If the url matches the routes pattern, then
|
|
|
|
* return an array of parsed params. If the url doesn't match the routes compiled pattern
|
|
|
|
* returns false.
|
|
|
|
*
|
|
|
|
* @param array $url An array of parameters to check matching with.
|
|
|
|
* @return mixed Either a string url for the parameters if they match or false.
|
|
|
|
**/
|
|
|
|
function match($url) {
|
|
|
|
if (!$this->compiled()) {
|
|
|
|
$this->compile();
|
|
|
|
}
|
|
|
|
if (isset($this->defaults['prefix'])) {
|
|
|
|
$prefix = $this->defaults['prefix'];
|
|
|
|
}
|
|
|
|
$url += array('plugin' => null, 'controller' => null);
|
|
|
|
|
|
|
|
$pass = array();
|
|
|
|
$params = Set::diff($url, $this->defaults);
|
|
|
|
$urlInv = array_combine(array_values($url), array_keys($url));
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
while (isset($this->defaults[$i])) {
|
|
|
|
if (isset($urlInv[$this->defaults[$i]])) {
|
|
|
|
if (!in_array($this->defaults[$i], $url) && is_int($urlInv[$this->defaults[$i]])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unset($urlInv[$this->defaults[$i]], $this->defaults[$i]);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($params as $key => $value) {
|
|
|
|
if (is_int($key)) {
|
|
|
|
$pass[] = $value;
|
|
|
|
unset($params[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
list($named, $params) = Router::getNamedElements($params);
|
|
|
|
|
|
|
|
if (!strpos($this->template, '*') && (!empty($pass) || !empty($named))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlKeys = array_keys($url);
|
|
|
|
$paramsKeys = array_keys($params);
|
|
|
|
$defaultsKeys = array_keys($this->defaults);
|
|
|
|
|
|
|
|
if (!empty($params)) {
|
|
|
|
if (array_diff($paramsKeys, $this->keys) != array()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$required = array_values(array_diff($this->keys, $urlKeys));
|
|
|
|
$reqCount = count($required);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $reqCount; $i++) {
|
|
|
|
if (array_key_exists($required[$i], $this->defaults) && $this->defaults[$required[$i]] === null) {
|
|
|
|
unset($required[$i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$isFilled = true;
|
|
|
|
|
|
|
|
if (!empty($this->keys)) {
|
|
|
|
$filled = array_intersect_key($url, array_combine($this->keys, array_keys($this->keys)));
|
|
|
|
$isFilled = (array_diff($this->keys, array_keys($filled)) === array());
|
|
|
|
if (!$isFilled && empty($params)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($params)) {
|
|
|
|
return $this->__mapRoute(array_merge($url, compact('pass', 'named', 'prefix')));
|
|
|
|
} elseif (!empty($this->keys) && !empty($this->defaults)) {
|
|
|
|
|
|
|
|
if (!empty($required)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
foreach ($params as $key => $val) {
|
|
|
|
if ((!isset($url[$key]) || $url[$key] != $val) || (!isset($this->defaults[$key]) || $this->defaults[$key] != $val) && !in_array($key, $this->keys)) {
|
|
|
|
if (!isset($this->defaults[$key])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (empty($required) && $this->defaults['plugin'] === $url['plugin'] && $this->defaults['controller'] === $url['controller'] && $this->defaults['action'] === $url['action']) {
|
|
|
|
return $this->__mapRoute($route, array_merge($url, compact('pass', 'named', 'prefix')));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->params)) {
|
|
|
|
foreach ($this->params as $key => $reg) {
|
|
|
|
if (array_key_exists($key, $url) && !preg_match('#' . $reg . '#', $url[$key])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->__mapRoute(array_merge($filled, compact('pass', 'named', 'prefix')));
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Map route..
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function __mapRoute($params) {
|
|
|
|
if (isset($params['plugin']) && isset($params['controller']) && $params['plugin'] === $params['controller']) {
|
|
|
|
unset($params['controller']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['prefix']) && isset($params['action'])) {
|
|
|
|
$params['action'] = str_replace($params['prefix'] . '_', '', $params['action']);
|
|
|
|
unset($params['prefix']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['pass']) && is_array($params['pass'])) {
|
|
|
|
$params['pass'] = implode('/', Set::filter($params['pass'], true));
|
|
|
|
} elseif (!isset($params['pass'])) {
|
|
|
|
$params['pass'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($params['named'])) {
|
|
|
|
if (is_array($params['named'])) {
|
|
|
|
$count = count($params['named']);
|
|
|
|
$keys = array_keys($params['named']);
|
|
|
|
$named = array();
|
|
|
|
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
$named[] = $keys[$i] . $this->named['separator'] . $params['named'][$keys[$i]];
|
|
|
|
}
|
|
|
|
$params['named'] = join('/', $named);
|
|
|
|
}
|
|
|
|
$params['pass'] = str_replace('//', '/', $params['pass'] . '/' . $params['named']);
|
|
|
|
}
|
|
|
|
$out = $this->template;
|
|
|
|
|
|
|
|
foreach ($this->keys as $key) {
|
|
|
|
$string = null;
|
|
|
|
if (isset($params[$key])) {
|
|
|
|
$string = $params[$key];
|
|
|
|
unset($params[$key]);
|
|
|
|
} elseif (strpos($out, $key) != strlen($out) - strlen($key)) {
|
|
|
|
$key = $key . '/';
|
|
|
|
}
|
|
|
|
$out = str_replace(':' . $key, $string, $out);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($this->template, '*')) {
|
|
|
|
$out = str_replace('*', $params['pass'], $out);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2009-09-30 13:49:39 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
?>
|