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
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +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
|
2007-02-02 10:39:45 +00:00
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @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
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2005-06-21 23:44:49 +00:00
|
|
|
*/
|
2007-04-12 00:34:16 +00:00
|
|
|
class Object {
|
2005-08-22 04:15:57 +00:00
|
|
|
/**
|
|
|
|
* Log object
|
|
|
|
*
|
|
|
|
* @var object
|
2007-05-22 02:38:12 +00:00
|
|
|
* @access protected
|
2005-08-22 04:15:57 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $_log = null;
|
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-05-26 05:29:17 +00:00
|
|
|
function Object() {
|
|
|
|
$args = func_get_args();
|
|
|
|
if (method_exists($this, '__destruct')) {
|
|
|
|
register_shutdown_function (array(&$this, '__destruct'));
|
|
|
|
}
|
|
|
|
call_user_func_array(array(&$this, '__construct'), $args);
|
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Class constructor, overridden in descendant classes.
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function __construct() {
|
|
|
|
}
|
2006-12-03 17:35:30 +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
|
2007-05-21 19:38:39 +00:00
|
|
|
* @access public
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function toString() {
|
|
|
|
$class = get_class($this);
|
|
|
|
return $class;
|
|
|
|
}
|
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.
|
2007-05-21 19:38:39 +00:00
|
|
|
* @return mixed Success (true/false) or contents if 'return' is set in $extra
|
|
|
|
* @access public
|
2005-09-19 17:20:24 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function requestAction($url, $extra = array()) {
|
|
|
|
if (!empty($url)) {
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!class_exists('dispatcher')) {
|
2007-05-18 15:02:34 +00:00
|
|
|
require CAKE . 'dispatcher.php';
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
$dispatcher =& new Dispatcher();
|
2007-06-20 07:51:52 +00:00
|
|
|
if (isset($this->plugin)) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$extra['plugin'] = $this->plugin;
|
|
|
|
}
|
2007-06-17 00:59:09 +00:00
|
|
|
if (in_array('return', $extra, true)) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$extra['return'] = 0;
|
|
|
|
$extra['bare'] = 1;
|
2006-11-01 04:54:25 +00:00
|
|
|
$extra['requested'] = 1;
|
2006-05-26 05:29:17 +00:00
|
|
|
ob_start();
|
2006-06-14 18:02:37 +00:00
|
|
|
$out = $dispatcher->dispatch($url, $extra);
|
|
|
|
$out = ob_get_clean();
|
2006-05-26 05:29:17 +00:00
|
|
|
return $out;
|
|
|
|
} else {
|
|
|
|
$extra['return'] = 1;
|
|
|
|
$extra['bare'] = 1;
|
2006-11-01 04:54:25 +00:00
|
|
|
$extra['requested'] = 1;
|
2006-05-26 05:29:17 +00:00
|
|
|
return $dispatcher->dispatch($url, $extra);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* API for logging events.
|
|
|
|
*
|
|
|
|
* @param string $msg Log message
|
2007-10-22 16:11:12 +00:00
|
|
|
* @param integer $type Error type constant. Defined in app/config/core.php.
|
2007-05-21 19:38:39 +00:00
|
|
|
* @access public
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function log($msg, $type = LOG_ERROR) {
|
|
|
|
if (!class_exists('CakeLog')) {
|
|
|
|
uses('cake_log');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($this->_log)) {
|
|
|
|
$this->_log = new CakeLog();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_string($msg)) {
|
2007-07-06 17:08:44 +00:00
|
|
|
$msg = print_r ($msg, true);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-04-12 00:34:16 +00:00
|
|
|
return $this->_log->write($type, $msg);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-02-08 17:33:59 +00:00
|
|
|
/**
|
|
|
|
* Allows setting of multiple properties of the object in a single line of code.
|
|
|
|
*
|
2007-05-21 19:38:39 +00:00
|
|
|
* @param array $properties An associative array containing properties and corresponding values.
|
|
|
|
* @access protected
|
2007-02-08 17:33:59 +00:00
|
|
|
*/
|
2007-02-09 05:08:15 +00:00
|
|
|
function _set($properties = array()) {
|
2007-02-08 17:33:59 +00:00
|
|
|
if (is_array($properties) && !empty($properties)) {
|
|
|
|
$vars = get_object_vars($this);
|
|
|
|
foreach ($properties as $key => $val) {
|
|
|
|
if (array_key_exists($key, $vars)) {
|
|
|
|
$this->{$key} = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
2007-05-21 19:38:39 +00:00
|
|
|
* @access public
|
2005-12-22 01:07:28 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function cakeError($method, $messages) {
|
|
|
|
if (!class_exists('ErrorHandler')) {
|
|
|
|
uses('error');
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
return $error;
|
|
|
|
}
|
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
|
|
|
|
* @param string $object the object to persist
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Success
|
2007-05-21 19:38:39 +00:00
|
|
|
* @access protected
|
2006-03-19 03:26:43 +00:00
|
|
|
* @todo add examples to manual
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function _persist($name, $return = null, &$object, $type = null) {
|
|
|
|
$file = CACHE . 'persistent' . DS . strtolower($name) . '.php';
|
|
|
|
if ($return === null) {
|
|
|
|
if (!file_exists($file)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_exists($file)) {
|
|
|
|
$this->_savePersistent($name, $object);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
$this->__openPersistent($name, $type);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2006-03-19 03:26:43 +00:00
|
|
|
/**
|
2006-11-28 11:18:05 +00:00
|
|
|
* You should choose a unique name for the persistent file
|
|
|
|
*
|
2006-03-19 03:26:43 +00:00
|
|
|
* There are many uses for this method, see manual for examples
|
|
|
|
*
|
2006-11-28 11:18:05 +00:00
|
|
|
* @param string $name name used for object to cache
|
|
|
|
* @param object $object the object to persist
|
2006-03-19 03:26:43 +00:00
|
|
|
* @return true on save, throws error if file can not be created
|
2006-11-28 11:18:05 +00:00
|
|
|
* @access protected
|
2006-03-19 03:26:43 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function _savePersistent($name, &$object) {
|
|
|
|
$file = 'persistent' . DS . strtolower($name) . '.php';
|
|
|
|
$objectArray = array(&$object);
|
2006-09-15 00:10:09 +00:00
|
|
|
$data = str_replace('\\', '\\\\', serialize($objectArray));
|
|
|
|
$data = '<?php $' . $name . ' = \'' . str_replace('\'', '\\\'', $data) . '\' ?>';
|
2006-05-26 05:29:17 +00:00
|
|
|
cache($file, $data, '+1 day');
|
|
|
|
}
|
2006-03-19 03:26:43 +00:00
|
|
|
/**
|
|
|
|
* Open the persistent class file for reading
|
2006-11-28 11:18:05 +00:00
|
|
|
* Used by Object::_persist()
|
2006-03-19 03:26:43 +00:00
|
|
|
*
|
2007-05-21 19:38:39 +00:00
|
|
|
* @param string $name Name of persisted class
|
|
|
|
* @param string $type Type of persistance (e.g: registry)
|
2006-03-19 03:26:43 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function __openPersistent($name, $type = null) {
|
|
|
|
$file = CACHE . 'persistent' . DS . strtolower($name) . '.php';
|
|
|
|
include($file);
|
|
|
|
|
|
|
|
switch($type) {
|
|
|
|
case 'registry':
|
2006-11-28 11:18:05 +00:00
|
|
|
$vars = unserialize(${$name});
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($vars['0'] as $key => $value) {
|
2007-10-17 01:56:14 +00:00
|
|
|
if(strpos($key, '_behavior')) {
|
|
|
|
loadBehavior(Inflector::classify(str_replace('_behavior', '', $key)));
|
|
|
|
} else {
|
|
|
|
loadModel(Inflector::classify($key));
|
|
|
|
}
|
2006-11-28 11:18:05 +00:00
|
|
|
}
|
|
|
|
unset($vars);
|
2006-05-26 05:29:17 +00:00
|
|
|
$vars = unserialize(${$name});
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($vars['0'] as $key => $value) {
|
2006-05-26 05:29:17 +00:00
|
|
|
ClassRegistry::addObject($key, $value);
|
|
|
|
unset ($value);
|
|
|
|
}
|
2006-11-28 11:18:05 +00:00
|
|
|
unset($vars);
|
2006-05-26 05:29:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$vars = unserialize(${$name});
|
|
|
|
$this->{$name} = $vars['0'];
|
2006-11-28 11:18:05 +00:00
|
|
|
unset($vars);
|
2006-05-26 05:29:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
2005-05-15 21:41:38 +00:00
|
|
|
?>
|