mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
9560f78884
Revision: [1638] removing php short tags Revision: [1637] Remove renderElememnts loading of helpers also, forgot it in the last commit Revision: [1636] Refactoring after profiling code. Session was creating a new instance of Dispatcher removed the need for it. Added a check to the Component class to pass the base to the SessionComponent class, will refactor that at a later time. Changed View class so it would not load helpers when rending a layout, no need for that. A great performance boost after the change. Change the loadModels method call in app/webroot/index.php. Will only attempt the loadModels call if the AppModel class is not in memory, and the Database class is in memory. Removed all unnecessary calls to basics uses(). Again another big performance increase. Added fix to the Html::guiListTree() after discussing the output that is expected. A ticket was closed on this already. Revision: [1635] Removing calls to basic uses() Revision: [1634] Removing calls to basics uses() that are not needed. Revision: [1633] Removing calls to basics uses() that are not needed. Moved Object class further up in the loading order Revision: [1632] adding fix for Ticket #132 Revision: [1631] Added fix from Ticket #122 Revision: [1630] Scaffold views can now be placed in a view directory. These will override the core. Example (Must have the scaffold dot name): app/views/posts/scaffold.list.thtml app/views/posts/scaffold.new.thtml app/views/posts/scaffold.edit.thtml app/views/posts/scaffold.show.thtml Revision: [1629] Think I fixed the issue with scaffold showing proper dates prior to January 1 1970 00:00:00. Revision: [1628] Added a few more change to allow saving dates prior to January 1 1970 00:00:00. Still a few issues with this, but will get them figured out soon. Changed scaffold to use only one form view. Revision: [1627] Added fix for Ticket #189 Revision: [1626] Added fix for Ticket #120. Revision: [1625] left justified doc blocks Revision: [1624] remove files from uses() that are loaded by default in app/webroot/index.php no reason to attempt to load them again in the classes Revision: [1623] adding check to the loadModels and loadController that will only attempt to load files if the classes are not already in memory Revision: [1622] Adding fix to time helper that was lost in a previous merge Removing all tabs from code Revision: [1621] Addtional model validation fixes Revision: [1620] fixed parse error Revision: [1619] Fixing ticket #102 Revision: [1618] correcting mime types and keywords Revision: [1617] correcting mime types and keywords Revision: [1616] fixed link in footer Revision: [1615] Fixing ticket #207 git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1639 3807eeeb-6ff5-0310-8944-8be069107fe0
392 lines
No EOL
11 KiB
PHP
392 lines
No EOL
11 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* Dispatcher takes the URL information, parses it for paramters and
|
|
* tells the involved controllers what to do.
|
|
*
|
|
* This is the heart of Cake's operation.
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
* Las Vegas, Nevada 89104
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
* @package cake
|
|
* @subpackage cake.cake
|
|
* @since CakePHP v 0.2.9
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
|
|
/**
|
|
* List of helpers to include
|
|
*/
|
|
uses('error_messages', 'router', DS.'controller'.DS.'controller');
|
|
|
|
/**
|
|
* Dispatcher translates URLs to controller-action-paramter triads.
|
|
*
|
|
* Dispatches the request, creating appropriate models and controllers.
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.cake
|
|
* @since CakePHP v 0.2.9
|
|
*/
|
|
class Dispatcher extends Object
|
|
{
|
|
/**
|
|
* Base URL
|
|
* @var string
|
|
*/
|
|
var $base = false;
|
|
|
|
/**
|
|
* Base URL
|
|
* @var string
|
|
*/
|
|
var $admin = false;
|
|
|
|
/**
|
|
* Base URL
|
|
* @var string
|
|
*/
|
|
var $webservices = null;
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Dispatches and invokes given URL, handing over control to the involved controllers, and then renders the results (if autoRender is set).
|
|
*
|
|
* If no controller of given name can be found, invoke() shows error messages in
|
|
* the form of Missing Controllers information. It does the same with Actions (methods of Controllers are called
|
|
* Actions).
|
|
*
|
|
* @param string $url URL information to work on.
|
|
* @return boolean Success
|
|
*/
|
|
function dispatch($url, $additionalParams=array())
|
|
{
|
|
$params = array_merge($this->parseParams($url), $additionalParams);
|
|
$missingController = false;
|
|
$missingAction = false;
|
|
$missingView = false;
|
|
$privateAction = false;
|
|
|
|
if(defined('CAKE_ADMIN'))
|
|
{
|
|
if(isset($params[CAKE_ADMIN]))
|
|
{
|
|
$this->admin = '/'.CAKE_ADMIN ;
|
|
$url = preg_replace('/'.CAKE_ADMIN.'\//', '', $url);
|
|
if (empty($params['action']))
|
|
{
|
|
$params['action'] = CAKE_ADMIN.'_'.'index';
|
|
}
|
|
else
|
|
{
|
|
$params['action'] = CAKE_ADMIN.'_'.$params['action'];
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->base = $this->baseUrl();
|
|
|
|
if(!in_array('render', array_keys($params)))
|
|
{
|
|
$params['render'] = 0;
|
|
}
|
|
|
|
if (empty($params['controller']))
|
|
{
|
|
$missingController = true;
|
|
}
|
|
else
|
|
{
|
|
$ctrlName = Inflector::camelize($params['controller']);
|
|
$ctrlClass = $ctrlName.'Controller';
|
|
|
|
if (!loadController($params['controller']) || !class_exists($ctrlClass, FALSE))
|
|
{
|
|
if(preg_match('/([\\.]+)/',$ctrlName))
|
|
{
|
|
$this->error404(strtolower($ctrlName),'Was not found on this server');
|
|
exit();
|
|
}
|
|
else
|
|
{
|
|
$missingController = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($missingController)
|
|
{
|
|
$controller =& new Controller();
|
|
$params['action'] = 'missingController';
|
|
if (empty($params['controller']))
|
|
{
|
|
$params['controller'] = "Controller";
|
|
}
|
|
else
|
|
{
|
|
$params['controller'] = Inflector::camelize($params['controller']."Controller");
|
|
}
|
|
$controller->missingController = $params['controller'];
|
|
}
|
|
else
|
|
{
|
|
$controller =& new $ctrlClass($this);
|
|
}
|
|
|
|
$classMethods = get_class_methods($controller);
|
|
$classVars = get_object_vars($controller);
|
|
|
|
if (empty($params['action']))
|
|
{
|
|
$params['action'] = 'index';
|
|
}
|
|
|
|
if((in_array($params['action'], $classMethods) || in_array(strtolower($params['action']), $classMethods)) && strpos($params['action'], '_', 0) === 0)
|
|
{
|
|
$privateAction = true;
|
|
}
|
|
|
|
if(!in_array($params['action'], $classMethods) && !in_array(strtolower($params['action']), $classMethods))
|
|
{
|
|
$missingAction = true;
|
|
}
|
|
|
|
$controller->base = $this->base;
|
|
$controller->here = $this->base.'/'.$url;
|
|
$controller->webroot = $this->webroot;
|
|
$controller->params = $params;
|
|
$controller->action = $params['action'];
|
|
$controller->data = empty($params['data'])? null: $params['data'];
|
|
$controller->passed_args = empty($params['pass'])? null: $params['pass'];
|
|
$controller->autoLayout = !$params['bare'];
|
|
$controller->autoRender = !$params['render'];
|
|
$controller->webservices = $params['webservices'];
|
|
|
|
if(!is_null($controller->webservices))
|
|
{
|
|
array_push($controller->components, $controller->webservices);
|
|
array_push($controller->helpers, $controller->webservices);
|
|
}
|
|
|
|
if((in_array('scaffold', array_keys($classVars))) && ($missingAction === true))
|
|
{
|
|
uses(DS.'controller'.DS.'scaffold');
|
|
$scaffolding = new Scaffold($controller, $params);
|
|
exit;
|
|
}
|
|
|
|
$controller->constructClasses();
|
|
|
|
if ($missingAction)
|
|
{
|
|
$controller->missingAction = $params['action'];
|
|
$params['action'] = 'missingAction';
|
|
}
|
|
|
|
if ($privateAction)
|
|
{
|
|
$controller->privateAction = $params['action'];
|
|
$params['action'] = 'privateAction';
|
|
}
|
|
|
|
return $this->_invoke($controller, $params );
|
|
}
|
|
|
|
/**
|
|
* Invokes given controller's render action if autoRender option is set. Otherwise the contents of the operation are returned as a string.
|
|
*
|
|
* @param object $controller
|
|
* @param array $params
|
|
* @return string
|
|
*/
|
|
function _invoke (&$controller, $params )
|
|
{
|
|
$output = call_user_func_array(array(&$controller, $params['action']), empty($params['pass'])? null: $params['pass']);
|
|
if ($controller->autoRender)
|
|
{
|
|
$controller->render();
|
|
exit;
|
|
}
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns array of GET and POST parameters. GET parameters are taken from given URL.
|
|
*
|
|
* @param string $from_url URL to mine for parameter information.
|
|
* @return array Parameters found in POST and GET.
|
|
*/
|
|
function parseParams($from_url)
|
|
{
|
|
// load routes config
|
|
$Route = new Router();
|
|
include CONFIGS.'routes.php';
|
|
$params = $Route->parse ($from_url);
|
|
|
|
// add submitted form data
|
|
$params['form'] = $_POST;
|
|
if (isset($_POST['data']))
|
|
{
|
|
$params['data'] = (ini_get('magic_quotes_gpc') == 1)?
|
|
$this->stripslashes_deep($_POST['data']) : $_POST['data'];
|
|
}
|
|
if (isset($_GET))
|
|
{
|
|
$params['url'] = $this->urldecode_deep($_GET);
|
|
$params['url'] = (ini_get('magic_quotes_gpc') == 1)?
|
|
$this->stripslashes_deep($params['url']) : $params['url'];
|
|
}
|
|
|
|
foreach ($_FILES as $name => $data)
|
|
{
|
|
$params['form'][$name] = $data;
|
|
}
|
|
$params['bare'] = empty($params['ajax'])? (empty($params['bare'])? 0: 1): 1;
|
|
|
|
$params['webservices'] = empty($params['webservices']) ? null : $params['webservices'];
|
|
|
|
return $params;
|
|
}
|
|
|
|
/**
|
|
* Recursively strips slashes from given array.
|
|
*
|
|
*/
|
|
function stripslashes_deep($val)
|
|
{
|
|
return (is_array($val)) ?
|
|
array_map(array('Dispatcher','stripslashes_deep'), $val) : stripslashes($val);
|
|
}
|
|
|
|
/**
|
|
* Recursively performs urldecode on given array.
|
|
*
|
|
*/
|
|
function urldecode_deep($val)
|
|
{
|
|
return (is_array($val)) ?
|
|
array_map(array('Dispatcher','urldecode_deep'), $val) : urldecode($val);
|
|
}
|
|
|
|
/**
|
|
* Returns a base URL.
|
|
*
|
|
* @return string Base URL
|
|
*/
|
|
function baseUrl()
|
|
{
|
|
$htaccess = null;
|
|
$base = $this->admin;
|
|
$this->webroot = '';
|
|
if (defined('BASE_URL'))
|
|
{
|
|
$base = BASE_URL.$this->admin;
|
|
}
|
|
|
|
$docRoot = $_SERVER['DOCUMENT_ROOT'];
|
|
$scriptName = $_SERVER['PHP_SELF'];
|
|
|
|
// If document root ends with 'webroot', it's probably correctly set
|
|
$r = null;
|
|
if (preg_match('/'.APP_DIR.'\\'.DS.WEBROOT_DIR.'/', $docRoot))
|
|
{
|
|
$this->webroot = '/';
|
|
if (preg_match('/^(.*)\/index\.php$/', $scriptName, $r))
|
|
{
|
|
if(!empty($r[1]))
|
|
{
|
|
return $base.$r[1];
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (defined('BASE_URL'))
|
|
{
|
|
$webroot =setUri();
|
|
$htaccess = preg_replace('/(?:'.APP_DIR.'(.*)|index\\.php(.*))/i', '', $webroot).APP_DIR.'/'.WEBROOT_DIR.'/';
|
|
}
|
|
if(APP_DIR === 'app')
|
|
{
|
|
if (preg_match('/^(.*)\\/'.APP_DIR.'\\/'.WEBROOT_DIR.'\\/index\\.php$/', $scriptName, $regs))
|
|
{
|
|
!empty($htaccess)? $this->webroot = $htaccess : $this->webroot = $regs[1].'/';
|
|
return $regs[1];
|
|
}
|
|
else
|
|
{
|
|
!empty($htaccess)? $this->webroot = $htaccess : $this->webroot = '/';
|
|
return $base;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (preg_match('/^(.*)\\/'.WEBROOT_DIR.'\\/index\\.php$/', $scriptName, $regs))
|
|
{
|
|
!empty($htaccess)? $this->webroot = $htaccess : $this->webroot = $regs[1].'/';
|
|
return $regs[1];
|
|
}
|
|
else
|
|
{
|
|
!empty($htaccess)? $this->webroot = $htaccess : $this->webroot = '/';
|
|
return $base;
|
|
}
|
|
}
|
|
}
|
|
return $base;
|
|
}
|
|
|
|
/**
|
|
* Displays an error page (e.g. 404 Not found).
|
|
*
|
|
* @param int $code Error code (e.g. 404)
|
|
* @param string $name Name of the error message (e.g. Not found)
|
|
* @param string $message
|
|
* @return unknown
|
|
*/
|
|
function error ($code, $name, $message)
|
|
{
|
|
$controller =& new Controller ($this);
|
|
$controller->base = $this->base;
|
|
$controller->autoLayout = true;
|
|
$controller->set(array('code'=>$code, 'name'=>$name, 'message'=>$message));
|
|
$controller->pageTitle = $code.' '. $name;
|
|
return $controller->render('errors/error404');
|
|
}
|
|
|
|
|
|
/**
|
|
* Convenience method to display a 404 page.
|
|
*
|
|
* @param string $url URL that spawned this message, to be included in the output.
|
|
* @param string $message Message text for the 404 page.
|
|
*/
|
|
function error404 ($url, $message)
|
|
{
|
|
header("HTTP/1.0 404 Not Found");
|
|
$this->error('404', 'Not found', sprintf(ERROR_404, $url, $message));
|
|
}
|
|
}
|
|
?>
|