2005-06-21 23:44:49 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-06-21 23:44:49 +00:00
|
|
|
|
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Object class, allowing __construct and __destruct in PHP4.
|
2005-08-22 04:15:57 +00:00
|
|
|
*
|
2005-12-22 01:07:28 +00:00
|
|
|
* Also includes methods for logging and the special method RequestAction,
|
2005-10-18 22:27:39 +00:00
|
|
|
* to call other Controllers' Actions from anywhere.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-20 07:46:14 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-06-21 23:44:49 +00:00
|
|
|
*
|
2005-08-22 04:15:57 +00:00
|
|
|
* @filesource
|
2006-01-20 07:46:14 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-08-21 06:49:02 +00:00
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs
|
2005-08-21 06:49:02 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
2005-06-21 23:44:49 +00:00
|
|
|
* @lastmodified $Date$
|
2005-08-21 06:49:02 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-06-21 23:44:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2005-06-22 23:16:26 +00:00
|
|
|
* Object class, allowing __construct and __destruct in PHP4.
|
2005-06-21 23:44:49 +00:00
|
|
|
*
|
2005-12-22 01:07:28 +00:00
|
|
|
* Also includes methods for logging and the special method RequestAction,
|
2005-10-18 22:27:39 +00:00
|
|
|
* to call other Controllers' Actions from anywhere.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs
|
2005-08-21 06:49:02 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
2005-06-21 23:44:49 +00:00
|
|
|
*/
|
|
|
|
class Object
|
|
|
|
{
|
|
|
|
|
2005-08-22 04:15:57 +00:00
|
|
|
/**
|
|
|
|
* Log object
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
var $_log = null;
|
2005-08-22 04:15:57 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* A hack to support __construct() on PHP 4
|
|
|
|
* Hint: descendant classes have no PHP4 class_name() constructors,
|
|
|
|
* so this constructor gets called first and calls the top-layer __construct()
|
|
|
|
* which (if present) should call parent::__construct()
|
|
|
|
*
|
|
|
|
* @return Object
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function Object()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
2005-12-24 07:56:48 +00:00
|
|
|
|
2006-02-18 23:42:21 +00:00
|
|
|
if (method_exists($this, '__destruct'))
|
|
|
|
{
|
|
|
|
register_shutdown_function(array(&$this, '__destruct'));
|
|
|
|
}
|
2005-12-24 07:56:48 +00:00
|
|
|
|
2006-02-18 23:42:21 +00:00
|
|
|
call_user_func_array(array(&$this, '__construct'), $args);
|
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Class constructor, overridden in descendant classes.
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Object-to-string conversion.
|
2005-10-18 22:27:39 +00:00
|
|
|
* Each class can override this method as necessary.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
2005-10-18 22:27:39 +00:00
|
|
|
* @return string The name of this class
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function toString()
|
|
|
|
{
|
2005-07-10 05:08:19 +00:00
|
|
|
return get_class($this);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
|
2005-09-19 17:20:24 +00:00
|
|
|
/**
|
2005-12-22 01:07:28 +00:00
|
|
|
* Calls a controller's method from any location.
|
2005-09-19 17:20:24 +00:00
|
|
|
*
|
2005-10-18 22:27:39 +00:00
|
|
|
* @param string $url URL in the form of Cake URL ("/controller/method/parameter")
|
2006-04-27 10:04:08 +00:00
|
|
|
* @param array $extra If array includes the key "return" it sets the AutoRender to true.
|
2005-10-18 22:27:39 +00:00
|
|
|
* @return boolean Success
|
2005-09-19 17:20:24 +00:00
|
|
|
*/
|
2005-09-21 05:48:09 +00:00
|
|
|
function requestAction ($url, $extra = array())
|
2005-09-19 17:20:24 +00:00
|
|
|
{
|
2006-01-18 04:38:21 +00:00
|
|
|
if(!empty($url))
|
2005-09-21 05:48:09 +00:00
|
|
|
{
|
2006-01-18 04:38:21 +00:00
|
|
|
$dispatcher =& new Dispatcher();
|
|
|
|
if(in_array('return', $extra))
|
|
|
|
{
|
|
|
|
$extra['return'] = 0;
|
2006-02-18 23:42:21 +00:00
|
|
|
$extra['bare'] = 1;
|
2005-12-29 05:07:12 +00:00
|
|
|
ob_start();
|
2005-12-28 17:23:12 +00:00
|
|
|
$out = $dispatcher->dispatch($url, $extra);
|
|
|
|
$out = ob_get_clean();
|
|
|
|
return $out;
|
2006-01-18 04:38:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$extra['return'] = 1;
|
2006-02-18 23:42:21 +00:00
|
|
|
$extra['bare'] = 1;
|
2006-01-18 04:38:21 +00:00
|
|
|
return $dispatcher->dispatch($url, $extra);
|
|
|
|
}
|
2005-09-21 05:48:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-01-18 04:38:21 +00:00
|
|
|
return false;
|
2005-09-21 05:48:09 +00:00
|
|
|
}
|
2005-09-19 17:20:24 +00:00
|
|
|
}
|
2005-12-22 01:07:28 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* API for logging events.
|
|
|
|
*
|
|
|
|
* @param string $msg Log message
|
2006-02-08 15:25:34 +00:00
|
|
|
* @param int $type Error type constant. Defined in app/config/core.php.
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function log ($msg, $type=LOG_ERROR)
|
|
|
|
{
|
|
|
|
if(!class_exists('CakeLog'))
|
|
|
|
{
|
|
|
|
uses('cake_log');
|
|
|
|
}
|
2006-02-28 07:35:01 +00:00
|
|
|
if (is_null($this->_log))
|
|
|
|
{
|
|
|
|
$this->_log = new CakeLog();
|
|
|
|
}
|
|
|
|
if (!is_string($msg))
|
|
|
|
{
|
|
|
|
ob_start();
|
|
|
|
print_r($msg);
|
|
|
|
$msg = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
|
2006-02-28 07:35:01 +00:00
|
|
|
switch ($type)
|
|
|
|
{
|
|
|
|
case LOG_DEBUG:
|
|
|
|
return $this->_log->write('debug', $msg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $this->_log->write('error', $msg);
|
|
|
|
break;
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-12-22 01:07:28 +00:00
|
|
|
|
|
|
|
/**
|
2006-05-01 23:50:20 +00:00
|
|
|
* Used to report user friendly errors.
|
|
|
|
* If there is a file app/error.php this file will be loaded
|
|
|
|
* error.php is the AppError class it should extend ErrorHandler class.
|
2005-12-22 01:07:28 +00:00
|
|
|
*
|
2006-05-01 23:50:20 +00:00
|
|
|
* @param string $method Method to be called in the error class (AppError or ErrorHandler classes)
|
|
|
|
* @param array $messages Message that is to be displayed by the error class
|
|
|
|
* @return error message
|
2005-12-22 01:07:28 +00:00
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function cakeError($method, $messages)
|
|
|
|
{
|
|
|
|
if(!class_exists('ErrorHandler'))
|
|
|
|
{
|
|
|
|
uses('error');
|
2006-05-01 23:50:20 +00:00
|
|
|
if(file_exists(APP.'error.php'))
|
|
|
|
{
|
|
|
|
include_once(APP.'error.php');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(class_exists('AppError'))
|
|
|
|
{
|
|
|
|
$error = new AppError($method, $messages);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$error = new ErrorHandler($method, $messages);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2006-03-28 02:44:55 +00:00
|
|
|
return $error;
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2006-03-19 03:26:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks for a persistent class file, if found file is opened and true returned
|
|
|
|
* If file is not found a file is created and false returned
|
|
|
|
* If used in other locations of the model you should choose a unique name for the persistent file
|
|
|
|
* There are many uses for this method, see manual for examples
|
|
|
|
*
|
|
|
|
* @param string $name name of the class to persist
|
|
|
|
* @return boolean
|
|
|
|
* @param string $object the object to persist
|
|
|
|
* @access public
|
|
|
|
* @todo add examples to manual
|
|
|
|
*/
|
2006-03-28 19:46:59 +00:00
|
|
|
function _persist($name, $return = null, &$object, $type = null)
|
2006-03-19 03:26:43 +00:00
|
|
|
{
|
|
|
|
$file = CACHE.'persistent'.DS.strtolower($name).'.php';
|
|
|
|
|
|
|
|
if($return === null)
|
|
|
|
{
|
|
|
|
if(!file_exists($file))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!file_exists($file))
|
|
|
|
{
|
2006-03-19 14:13:07 +00:00
|
|
|
$this->_savePersistent($name, $object);
|
2006-03-19 03:26:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-28 19:46:59 +00:00
|
|
|
$this->__openPersistent($name, $type);
|
2006-03-19 03:26:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When a Model::persist; is set to true, a file with the model name it auto created.
|
|
|
|
* If used in other locations of the model you should choose a unique name for the persistent file
|
|
|
|
* There are many uses for this method, see manual for examples
|
|
|
|
*
|
|
|
|
* @param string $name name used for object to cach
|
|
|
|
* @param string $object the object to persist
|
|
|
|
* @return true on save, throws error if file can not be created
|
|
|
|
* @access public
|
|
|
|
* @todo add examples to manual
|
|
|
|
*/
|
|
|
|
function _savePersistent($name, &$object)
|
|
|
|
{
|
|
|
|
$file = 'persistent'.DS.strtolower($name).'.php';
|
|
|
|
$objectArray = array(&$object);
|
|
|
|
$data = '<?php $'.$name.' = \''.str_replace('\'', '\\\'', serialize($objectArray)).'\' ?>';
|
|
|
|
cache($file, $data, '+1 day');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the persistent class file for reading
|
|
|
|
*
|
|
|
|
* @param string $name name of the class
|
|
|
|
* @access private
|
|
|
|
*/
|
2006-03-28 19:46:59 +00:00
|
|
|
function __openPersistent($name, $type = null)
|
2006-03-19 03:26:43 +00:00
|
|
|
{
|
|
|
|
$file = CACHE.'persistent'.DS.strtolower($name).'.php';
|
|
|
|
include($file);
|
2006-03-28 19:46:59 +00:00
|
|
|
switch ($type)
|
|
|
|
{
|
|
|
|
case 'registry':
|
|
|
|
$vars = unserialize(${$name});
|
|
|
|
foreach ($vars['0'] as $key => $value)
|
|
|
|
{
|
|
|
|
ClassRegistry::addObject($key, $value);
|
|
|
|
unset($value);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$vars = unserialize(${$name});
|
|
|
|
$this->{$name} = $vars['0'];
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
2006-03-19 03:26:43 +00:00
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
|
|
|
|
2005-05-15 21:41:38 +00:00
|
|
|
?>
|