2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-10-01 02:44:15 +00:00
|
|
|
* CacheHelper helps create full page view caching.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
|
|
* @since CakePHP(tm) v 1.0.0.2277
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
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
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1376/Cache
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class CacheHelper extends AppHelper {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Array of strings replaced in cached views.
|
2010-11-06 05:18:23 +00:00
|
|
|
* The strings are found between `<!--nocache--><!--/nocache-->` in views
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-11-06 05:18:23 +00:00
|
|
|
protected $_replace = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Array of string that are replace with there var replace above.
|
2010-11-06 05:18:23 +00:00
|
|
|
* The strings are any content inside `<!--nocache--><!--/nocache-->` and includes the tags in views
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-11-06 05:18:23 +00:00
|
|
|
protected $_match = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-11-06 04:07:51 +00:00
|
|
|
* Parses the view file and stores content for cache file building.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-11-06 04:07:51 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-11-06 04:07:51 +00:00
|
|
|
public function afterRender($viewFile) {
|
|
|
|
$caching = (($this->_View->cacheAction != false)) && (Configure::read('Cache.check') === true);
|
|
|
|
if ($caching) {
|
|
|
|
$this->cache($viewFile, $this->_View->output, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses the layout file and stores content for cache file building.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function afterLayout($layoutFile) {
|
|
|
|
$caching = (($this->_View->cacheAction != false)) && (Configure::read('Cache.check') === true);
|
|
|
|
if ($caching) {
|
|
|
|
$this->cache($layoutFile, $this->_View->output, true);
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
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
|
2010-01-25 23:14:16 +00:00
|
|
|
* @param boolean $cache Whether or not a cache file should be written.
|
2010-01-25 22:59:05 +00:00
|
|
|
* @return string view ouput
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
function cache($file, $out, $cache = false) {
|
|
|
|
$cacheTime = 0;
|
2008-06-15 19:48:15 +00:00
|
|
|
$useCallbacks = false;
|
2010-11-06 04:07:51 +00:00
|
|
|
$cacheAction = $this->_View->cacheAction;
|
|
|
|
|
|
|
|
if (is_array($cacheAction)) {
|
|
|
|
$keys = array_keys($cacheAction);
|
2008-05-30 11:40:08 +00:00
|
|
|
$index = null;
|
|
|
|
|
2009-12-29 02:26:51 +00:00
|
|
|
foreach ($keys as $action) {
|
2010-05-14 04:12:29 +00:00
|
|
|
if ($action == $this->request->params['action']) {
|
2009-12-29 02:26:51 +00:00
|
|
|
$index = $action;
|
2008-05-30 11:40:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-14 04:12:29 +00:00
|
|
|
if (!isset($index) && $this->request->params['action'] == 'index') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$index = 'index';
|
|
|
|
}
|
|
|
|
|
2010-11-06 04:07:51 +00:00
|
|
|
$options = $cacheAction;
|
|
|
|
if (isset($cacheAction[$index])) {
|
|
|
|
if (is_array($cacheAction[$index])) {
|
|
|
|
$options = array_merge(array('duration' => 0, 'callbacks' => false), $cacheAction[$index]);
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
2010-11-06 04:07:51 +00:00
|
|
|
$cacheTime = $cacheAction[$index];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-12-29 02:26:51 +00:00
|
|
|
if (isset($options['duration'])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$cacheTime = $options['duration'];
|
|
|
|
}
|
2009-12-29 02:26:51 +00:00
|
|
|
if (isset($options['callbacks'])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$useCallbacks = $options['callbacks'];
|
|
|
|
}
|
|
|
|
} else {
|
2010-11-06 04:07:51 +00:00
|
|
|
$cacheTime = $cacheAction;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parse file searching for no cache tags
|
|
|
|
*
|
2010-01-25 22:59:05 +00:00
|
|
|
* @param string $file The filename that needs to be parsed.
|
|
|
|
* @param string $cache The cached content
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __parseFile($file, $cache) {
|
|
|
|
if (is_file($file)) {
|
|
|
|
$file = file_get_contents($file);
|
|
|
|
} elseif ($file = fileExistsInPath($file)) {
|
|
|
|
$file = file_get_contents($file);
|
|
|
|
}
|
2010-11-06 05:18:23 +00:00
|
|
|
preg_match_all('/(<!--nocache-->(?<=<!--nocache-->)[\\s\\S]*?(?=<!--\/nocache-->)<!--\/nocache-->)/i', $cache, $outputResult, PREG_PATTERN_ORDER);
|
|
|
|
preg_match_all('/(?<=<!--nocache-->)([\\s\\S]*?)(?=<!--\/nocache-->)/i', $file, $fileResult, PREG_PATTERN_ORDER);
|
2009-10-01 05:03:47 +00:00
|
|
|
$fileResult = $fileResult[0];
|
|
|
|
$outputResult = $outputResult[0];
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-11-06 05:18:23 +00:00
|
|
|
if (!empty($this->_replace)) {
|
2009-10-01 05:03:47 +00:00
|
|
|
foreach ($outputResult as $i => $element) {
|
2010-11-06 05:18:23 +00:00
|
|
|
$index = array_search($element, $this->_match);
|
2008-09-05 21:41:07 +00:00
|
|
|
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])) {
|
2010-11-06 05:18:23 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parse the output and replace cache tags
|
|
|
|
*
|
2010-01-25 22:59:05 +00:00
|
|
|
* @param string $cache Output to replace content in.
|
2010-11-06 05:18:23 +00:00
|
|
|
* @return string with all replacements made to <!--nocache--><!--nocache-->
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __parseOutput($cache) {
|
|
|
|
$count = 0;
|
2010-11-06 05:18:23 +00:00
|
|
|
if (!empty($this->_match)) {
|
|
|
|
foreach ($this->_match as $found) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$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);
|
2010-11-06 05:18:23 +00:00
|
|
|
$cache .= $this->_replace[$count];
|
2009-10-30 20:42:04 +00:00
|
|
|
$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;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Write a cached version of the file
|
|
|
|
*
|
2010-01-25 22:59:05 +00:00
|
|
|
* @param string $content view content to write to a cache file.
|
|
|
|
* @param sting $timestamp Duration to set for cache file.
|
|
|
|
* @return boolean success of caching view.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __writeFile($content, $timestamp, $useCallbacks = false) {
|
|
|
|
$now = time();
|
|
|
|
|
|
|
|
if (is_numeric($timestamp)) {
|
|
|
|
$cacheTime = $now + $timestamp;
|
|
|
|
} else {
|
|
|
|
$cacheTime = strtotime($timestamp, $now);
|
|
|
|
}
|
2010-05-14 04:12:29 +00:00
|
|
|
$path = $this->request->here;
|
2008-06-12 18:36:08 +00:00
|
|
|
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';
|
|
|
|
|
2010-11-06 04:07:51 +00:00
|
|
|
if (empty($this->_View->plugin)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$file .= '
|
2010-11-06 04:07:51 +00:00
|
|
|
App::import(\'Controller\', \'' . $this->_View->name. '\');
|
2008-05-30 11:40:08 +00:00
|
|
|
';
|
|
|
|
} else {
|
|
|
|
$file .= '
|
2010-11-06 04:07:51 +00:00
|
|
|
App::import(\'Controller\', \'' . $this->_View->plugin . '.' . $this->_View->name. '\');
|
2008-05-30 11:40:08 +00:00
|
|
|
';
|
|
|
|
}
|
|
|
|
|
2010-11-06 04:07:51 +00:00
|
|
|
$file .= '$controller = new ' . $this->_View->name . 'Controller();
|
|
|
|
$controller->plugin = $this->plugin = \'' . $this->_View->plugin . '\';
|
|
|
|
$controller->helpers = $this->helpers = unserialize(\'' . serialize($this->_View->helpers) . '\');
|
|
|
|
$controller->layout = $this->layout = \'' . $this->_View->layout. '\';
|
2010-05-14 04:12:29 +00:00
|
|
|
$controller->request = $this->request = unserialize(\'' . str_replace("'", "\\'", serialize($this->request)) . '\');
|
2010-11-06 04:07:51 +00:00
|
|
|
$controller->theme = $this->theme = \'' . $this->_View->theme . '\';
|
|
|
|
Router::setRequestInfo($controller->request);';
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if ($useCallbacks == true) {
|
2008-06-15 19:48:15 +00:00
|
|
|
$file .= '
|
|
|
|
$controller->constructClasses();
|
2010-11-06 04:07:51 +00:00
|
|
|
$controller->startupProcess();';
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$file .= '
|
2010-08-27 03:24:09 +00:00
|
|
|
$this->loadHelpers();
|
2008-05-30 11:40:08 +00:00
|
|
|
?>';
|
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
|
|
|
}
|