2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
2009-10-01 02:44:15 +00:00
|
|
|
* CacheHelper helps create full page view caching.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* 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.view.helpers
|
|
|
|
* @since CakePHP(tm) v 1.0.0.2277
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
/**
|
2009-10-01 02:44:15 +00:00
|
|
|
* CacheHelper helps create full page view caching.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-10-01 02:44:15 +00:00
|
|
|
* When using CacheHelper you don't call any of its methods, they are all automatically
|
|
|
|
* called by View, and use the $cacheAction settings set in the controller.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class CacheHelper extends AppHelper {
|
|
|
|
/**
|
|
|
|
* Array of strings replaced in cached views.
|
|
|
|
* The strings are found between <cake:nocache><cake:nocache> in views
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
2008-06-20 11:57:56 +00:00
|
|
|
var $__replace = array();
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Array of string that are replace with there var replace above.
|
|
|
|
* The strings are any content inside <cake:nocache><cake:nocache> and includes the tags in views
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
2008-06-20 11:57:56 +00:00
|
|
|
var $__match = array();
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* holds the View object passed in final call to CacheHelper::cache()
|
|
|
|
*
|
2009-03-17 21:10:28 +00:00
|
|
|
* @var View
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2008-06-20 11:57:56 +00:00
|
|
|
var $view;
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* cache action time
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-06-20 11:57:56 +00:00
|
|
|
var $cacheAction;
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Main method used to cache a view
|
|
|
|
*
|
|
|
|
* @param string $file File to cache
|
|
|
|
* @param string $out output to cache
|
|
|
|
* @param boolean $cache
|
|
|
|
* @return view ouput
|
|
|
|
*/
|
|
|
|
function cache($file, $out, $cache = false) {
|
|
|
|
$cacheTime = 0;
|
2008-06-15 19:48:15 +00:00
|
|
|
$useCallbacks = false;
|
2008-05-30 11:40:08 +00:00
|
|
|
if (is_array($this->cacheAction)) {
|
2009-10-30 20:42:04 +00:00
|
|
|
$controller = Inflector::underscore($this->controllerName);
|
2008-05-30 11:40:08 +00:00
|
|
|
$check = str_replace('/', '_', $this->here);
|
|
|
|
$replace = str_replace('/', '_', $this->base);
|
|
|
|
$match = str_replace($this->base, '', $this->here);
|
|
|
|
$match = str_replace('//', '/', $match);
|
2009-10-30 20:42:04 +00:00
|
|
|
$match = str_replace('/' . $controller . '/', '', $match);
|
2008-05-30 11:40:08 +00:00
|
|
|
$match = str_replace('/' . $this->controllerName . '/', '', $match);
|
|
|
|
$check = str_replace($replace, '', $check);
|
2009-10-30 20:42:04 +00:00
|
|
|
$check = str_replace('_' . $controller . '_', '', $check);
|
2008-05-30 11:40:08 +00:00
|
|
|
$check = str_replace('_' . $this->controllerName . '_', '', $check);
|
|
|
|
$check = Inflector::slug($check);
|
|
|
|
$check = preg_replace('/^_+/', '', $check);
|
|
|
|
$keys = str_replace('/', '_', array_keys($this->cacheAction));
|
|
|
|
$found = array_keys($this->cacheAction);
|
|
|
|
$index = null;
|
|
|
|
$count = 0;
|
|
|
|
|
|
|
|
foreach ($keys as $key => $value) {
|
|
|
|
if (strpos($check, $value) === 0) {
|
|
|
|
$index = $found[$count];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($index)) {
|
|
|
|
$pos1 = strrpos($match, '/');
|
|
|
|
$char = strlen($match) - 1;
|
|
|
|
|
|
|
|
if ($pos1 == $char) {
|
|
|
|
$match = substr($match, 0, $char);
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = $match;
|
|
|
|
} elseif ($this->action == 'index') {
|
|
|
|
$index = 'index';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = $this->cacheAction;
|
|
|
|
if (isset($this->cacheAction[$index])) {
|
|
|
|
if (is_array($this->cacheAction[$index])) {
|
|
|
|
$options = array_merge(array('duration'=> 0, 'callbacks' => false), $this->cacheAction[$index]);
|
|
|
|
} else {
|
|
|
|
$cacheTime = $this->cacheAction[$index];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('duration', $options)) {
|
|
|
|
$cacheTime = $options['duration'];
|
|
|
|
}
|
|
|
|
if (array_key_exists('callbacks', $options)) {
|
|
|
|
$useCallbacks = $options['callbacks'];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$cacheTime = $this->cacheAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cacheTime != '' && $cacheTime > 0) {
|
|
|
|
$this->__parseFile($file, $out);
|
|
|
|
if ($cache === true) {
|
|
|
|
$cached = $this->__parseOutput($out);
|
|
|
|
$this->__writeFile($cached, $cacheTime, $useCallbacks);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
} else {
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Parse file searching for no cache tags
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @param boolean $cache
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __parseFile($file, $cache) {
|
|
|
|
if (is_file($file)) {
|
|
|
|
$file = file_get_contents($file);
|
|
|
|
} elseif ($file = fileExistsInPath($file)) {
|
|
|
|
$file = file_get_contents($file);
|
|
|
|
}
|
2009-10-01 05:03:47 +00:00
|
|
|
preg_match_all('/(<cake:nocache>(?<=<cake:nocache>)[\\s\\S]*?(?=<\/cake:nocache>)<\/cake:nocache>)/i', $cache, $outputResult, PREG_PATTERN_ORDER);
|
|
|
|
preg_match_all('/(?<=<cake:nocache>)([\\s\\S]*?)(?=<\/cake:nocache>)/i', $file, $fileResult, PREG_PATTERN_ORDER);
|
|
|
|
$fileResult = $fileResult[0];
|
|
|
|
$outputResult = $outputResult[0];
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-09-05 21:41:07 +00:00
|
|
|
if (!empty($this->__replace)) {
|
2009-10-01 05:03:47 +00:00
|
|
|
foreach ($outputResult as $i => $element) {
|
2008-09-05 21:41:07 +00:00
|
|
|
$index = array_search($element, $this->__match);
|
|
|
|
if ($index !== false) {
|
2009-10-01 05:03:47 +00:00
|
|
|
unset($outputResult[$i]);
|
2008-09-24 11:52:29 +00:00
|
|
|
}
|
2008-09-05 21:41:07 +00:00
|
|
|
}
|
2009-10-01 05:03:47 +00:00
|
|
|
$outputResult = array_values($outputResult);
|
2008-09-05 21:41:07 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-10-01 05:03:47 +00:00
|
|
|
if (!empty($fileResult)) {
|
|
|
|
$i = 0;
|
|
|
|
foreach ($fileResult as $cacheBlock) {
|
|
|
|
if (isset($outputResult[$i])) {
|
|
|
|
$this->__replace[] = $cacheBlock;
|
|
|
|
$this->__match[] = $outputResult[$i];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-10-01 05:03:47 +00:00
|
|
|
$i++;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Parse the output and replace cache tags
|
|
|
|
*
|
|
|
|
* @param sting $cache
|
|
|
|
* @return string with all replacements made to <cake:nocache><cake:nocache>
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __parseOutput($cache) {
|
|
|
|
$count = 0;
|
|
|
|
if (!empty($this->__match)) {
|
|
|
|
foreach ($this->__match as $found) {
|
|
|
|
$original = $cache;
|
|
|
|
$length = strlen($found);
|
|
|
|
$position = 0;
|
|
|
|
|
2009-10-30 20:42:04 +00:00
|
|
|
for ($i = 1; $i <= 1; $i++) {
|
|
|
|
$position = strpos($cache, $found, $position);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-10-30 20:42:04 +00:00
|
|
|
if ($position !== false) {
|
|
|
|
$cache = substr($original, 0, $position);
|
|
|
|
$cache .= $this->__replace[$count];
|
|
|
|
$cache .= substr($original, $position + $length);
|
|
|
|
} else {
|
|
|
|
break;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-10-30 20:42:04 +00:00
|
|
|
}
|
|
|
|
$count++;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
return $cache;
|
|
|
|
}
|
|
|
|
return $cache;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Write a cached version of the file
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @param sting $timestamp
|
|
|
|
* @return cached view
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __writeFile($content, $timestamp, $useCallbacks = false) {
|
|
|
|
$now = time();
|
|
|
|
|
|
|
|
if (is_numeric($timestamp)) {
|
|
|
|
$cacheTime = $now + $timestamp;
|
|
|
|
} else {
|
|
|
|
$cacheTime = strtotime($timestamp, $now);
|
|
|
|
}
|
2008-06-12 18:36:08 +00:00
|
|
|
$path = $this->here;
|
|
|
|
if ($this->here == '/') {
|
|
|
|
$path = 'home';
|
|
|
|
}
|
2008-10-26 18:51:38 +00:00
|
|
|
$cache = strtolower(Inflector::slug($path));
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (empty($cache)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$cache = $cache . '.php';
|
|
|
|
$file = '<!--cachetime:' . $cacheTime . '--><?php';
|
|
|
|
|
|
|
|
if (empty($this->plugin)) {
|
|
|
|
$file .= '
|
|
|
|
App::import(\'Controller\', \'' . $this->controllerName. '\');
|
|
|
|
';
|
|
|
|
} else {
|
|
|
|
$file .= '
|
|
|
|
App::import(\'Controller\', \'' . $this->plugin . '.' . $this->controllerName. '\');
|
|
|
|
';
|
|
|
|
}
|
|
|
|
|
2008-06-03 05:12:12 +00:00
|
|
|
$file .= '$controller =& new ' . $this->controllerName . 'Controller();
|
2008-05-30 11:40:08 +00:00
|
|
|
$controller->plugin = $this->plugin = \''.$this->plugin.'\';
|
|
|
|
$controller->helpers = $this->helpers = unserialize(\'' . serialize($this->helpers) . '\');
|
|
|
|
$controller->base = $this->base = \'' . $this->base . '\';
|
|
|
|
$controller->layout = $this->layout = \'' . $this->layout. '\';
|
|
|
|
$controller->webroot = $this->webroot = \'' . $this->webroot . '\';
|
|
|
|
$controller->here = $this->here = \'' . $this->here . '\';
|
|
|
|
$controller->namedArgs = $this->namedArgs = \'' . $this->namedArgs . '\';
|
|
|
|
$controller->argSeparator = $this->argSeparator = \'' . $this->argSeparator . '\';
|
|
|
|
$controller->params = $this->params = unserialize(stripslashes(\'' . addslashes(serialize($this->params)) . '\'));
|
|
|
|
$controller->action = $this->action = unserialize(\'' . serialize($this->action) . '\');
|
|
|
|
$controller->data = $this->data = unserialize(stripslashes(\'' . addslashes(serialize($this->data)) . '\'));
|
2009-06-10 17:11:17 +00:00
|
|
|
$controller->themeWeb = $this->themeWeb = \'' . $this->themeWeb . '\';
|
|
|
|
Router::setRequestInfo(array($this->params, array(\'base\' => $this->base, \'webroot\' => $this->webroot)));';
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if ($useCallbacks == true) {
|
2008-06-15 19:48:15 +00:00
|
|
|
$file .= '
|
|
|
|
$controller->constructClasses();
|
2008-06-04 19:04:58 +00:00
|
|
|
$controller->Component->initialize($controller);
|
2008-05-30 11:40:08 +00:00
|
|
|
$controller->beforeFilter();
|
2008-06-03 05:12:12 +00:00
|
|
|
$controller->Component->startup($controller);';
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$file .= '
|
|
|
|
$loadedHelpers = array();
|
|
|
|
$loadedHelpers = $this->_loadHelpers($loadedHelpers, $this->helpers);
|
|
|
|
foreach (array_keys($loadedHelpers) as $helper) {
|
|
|
|
$camelBackedHelper = Inflector::variable($helper);
|
|
|
|
${$camelBackedHelper} =& $loadedHelpers[$helper];
|
|
|
|
$this->loaded[$camelBackedHelper] =& ${$camelBackedHelper};
|
|
|
|
}
|
|
|
|
?>';
|
2008-06-20 11:57:56 +00:00
|
|
|
$content = preg_replace("/(<\\?xml)/", "<?php echo '$1';?>",$content);
|
|
|
|
$file .= $content;
|
|
|
|
return cache('views' . DS . $cache, $file, $timestamp);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
?>
|