` in views * * @var array */ protected $_replace = array(); /** * Array of string that are replace with there var replace above. * The strings are any content inside `` and includes the tags in views * * @var array */ protected $_match = array(); /** * Counter used for counting nocache section tags. * * @var integer */ protected $_counter = 0; /** * Parses the view file and stores content for cache file building. * * @param string $viewFile * @return void */ public function afterRender($viewFile) { $caching = (($this->_View->cacheAction != false)) && (Configure::read('Cache.check') === true); if ($caching) { $this->_View->output = $this->cache($viewFile, $this->_View->output, false); } } /** * Parses the layout file and stores content for cache file building. * * @param string $layoutFile * @return void */ public function afterLayout($layoutFile) { $caching = (($this->_View->cacheAction != false)) && (Configure::read('Cache.check') === true); if ($caching) { $this->_View->output = $this->cache($layoutFile, $this->_View->output, true); } $this->_View->output = preg_replace('//', '', $this->_View->output); } /** * Main method used to cache a view * * @param string $file File to cache * @param string $out output to cache * @param boolean $cache Whether or not a cache file should be written. * @return string view ouput */ public function cache($file, $out, $cache = false) { $cacheTime = 0; $useCallbacks = false; $cacheAction = $this->_View->cacheAction; if (is_array($cacheAction)) { $keys = array_keys($cacheAction); $index = null; foreach ($keys as $action) { if ($action == $this->request->params['action']) { $index = $action; break; } } if (!isset($index) && $this->request->params['action'] == 'index') { $index = 'index'; } $options = $cacheAction; if (isset($cacheAction[$index])) { if (is_array($cacheAction[$index])) { $options = array_merge(array('duration' => 0, 'callbacks' => false), $cacheAction[$index]); } else { $cacheTime = $cacheAction[$index]; } } if (isset($options['duration'])) { $cacheTime = $options['duration']; } if (isset($options['callbacks'])) { $useCallbacks = $options['callbacks']; } } else { $cacheTime = $cacheAction; } if ($cacheTime != '' && $cacheTime > 0) { $out = preg_replace_callback('//', array($this, '_replaceSection'), $out); $this->_parseFile($file, $out); if ($cache === true) { $cached = $this->_parseOutput($out); $this->_writeFile($cached, $cacheTime, $useCallbacks); $out = $this->_stripTags($out); } return $out; } else { return $out; } } /** * Parse file searching for no cache tags * * @param string $file The filename that needs to be parsed. * @param string $cache The cached content * @return void */ protected function _parseFile($file, $cache) { if (is_file($file)) { $file = file_get_contents($file); } elseif ($file = fileExistsInPath($file)) { $file = file_get_contents($file); } preg_match_all('/((?<=)[\\s\\S]*?(?=))/i', $cache, $outputResult, PREG_PATTERN_ORDER); preg_match_all('/(?<=)([\\s\\S]*?)(?=)/i', $file, $fileResult, PREG_PATTERN_ORDER); $fileResult = $fileResult[0]; $outputResult = $outputResult[0]; if (!empty($this->_replace)) { foreach ($outputResult as $i => $element) { $index = array_search($element, $this->_match); if ($index !== false) { unset($outputResult[$i]); } } $outputResult = array_values($outputResult); } if (!empty($fileResult)) { $i = 0; foreach ($fileResult as $cacheBlock) { if (isset($outputResult[$i])) { $this->_replace[] = $cacheBlock; $this->_match[] = $outputResult[$i]; } $i++; } } } /** * Munges the output from a view with cache tags, and numbers the sections. * This helps solve issues with empty/duplicate content. * * @return string The content with cake:nocache tags replaced. */ protected function _replaceSection() { $this->_counter += 1; return sprintf('', $this->_counter); } /** * Strip cake:nocache tags from a string. Since View::render() * only removes un-numbered nocache tags, remove all the numbered ones. * This is the complement to _replaceSection. * * @param string $content String to remove tags from. * @return string String with tags removed. */ protected function _stripTags($content) { return preg_replace('##', '', $content); } /** * Parse the output and replace cache tags * * @param string $cache Output to replace content in. * @return string with all replacements made to */ protected function _parseOutput($cache) { $count = 0; if (!empty($this->_match)) { foreach ($this->_match as $found) { $original = $cache; $length = strlen($found); $position = 0; for ($i = 1; $i <= 1; $i++) { $position = strpos($cache, $found, $position); if ($position !== false) { $cache = substr($original, 0, $position); $cache .= $this->_replace[$count]; $cache .= substr($original, $position + $length); } else { break; } } $count++; } return $cache; } return $cache; } /** * Write a cached version of the file * * @param string $content view content to write to a cache file. * @param string $timestamp Duration to set for cache file. * @param boolean $useCallbacks * @return boolean success of caching view. */ protected function _writeFile($content, $timestamp, $useCallbacks = false) { $now = time(); if (is_numeric($timestamp)) { $cacheTime = $now + $timestamp; } else { $cacheTime = strtotime($timestamp, $now); } $path = $this->request->here(); if ($path == '/') { $path = 'home'; } $cache = strtolower(Inflector::slug($path)); if (empty($cache)) { return; } $cache = $cache . '.php'; $file = '_View->plugin)) { $file .= ' App::import(\'Controller\', \'' . $this->_View->name. '\'); '; } else { $file .= ' App::import(\'Controller\', \'' . $this->_View->plugin . '.' . $this->_View->name. '\'); '; } $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. '\'; $controller->request = $this->request = unserialize(\'' . str_replace("'", "\\'", serialize($this->request)) . '\'); $controller->theme = $this->theme = \'' . $this->_View->theme . '\'; $controller->viewVars = $this->viewVars = unserialize(base64_decode(\'' . base64_encode(serialize($this->_View->viewVars)) . '\')); Router::setRequestInfo($controller->request);'; if ($useCallbacks == true) { $file .= ' $controller->constructClasses(); $controller->startupProcess();'; } $file .= ' $this->loadHelpers(); extract($this->viewVars, EXTR_SKIP); ?>'; $content = preg_replace("/(<\\?xml)/", "",$content); $file .= $content; return cache('views' . DS . $cache, $file, $timestamp); } }