diff options
Diffstat (limited to 'library/Smarty/libs/sysplugins/smarty_template_cached.php')
-rw-r--r-- | library/Smarty/libs/sysplugins/smarty_template_cached.php | 285 |
1 files changed, 64 insertions, 221 deletions
diff --git a/library/Smarty/libs/sysplugins/smarty_template_cached.php b/library/Smarty/libs/sysplugins/smarty_template_cached.php index 5b9043958..cecf42986 100644 --- a/library/Smarty/libs/sysplugins/smarty_template_cached.php +++ b/library/Smarty/libs/sysplugins/smarty_template_cached.php @@ -14,37 +14,9 @@ * @subpackage TemplateResources * @author Rodney Rehm */ -class Smarty_Template_Cached +class Smarty_Template_Cached extends Smarty_Template_Resource_Base { /** - * Source Filepath - * - * @var string - */ - public $filepath = false; - - /** - * Source Content - * - * @var string - */ - public $content = null; - - /** - * Source Timestamp - * - * @var integer - */ - public $timestamp = false; - - /** - * Source Existence - * - * @var boolean - */ - public $exists = false; - - /** * Cache Is Valid * * @var boolean @@ -52,13 +24,6 @@ class Smarty_Template_Cached public $valid = null; /** - * Cache was processed - * - * @var boolean - */ - public $processed = false; - - /** * CacheResource Handler * * @var Smarty_CacheResource @@ -66,18 +31,18 @@ class Smarty_Template_Cached public $handler = null; /** - * Template Compile Id (Smarty_Internal_Template::$compile_id) + * Template Cache Id (Smarty_Internal_Template::$cache_id) * * @var string */ - public $compile_id = null; + public $cache_id = null; /** - * Template Cache Id (Smarty_Internal_Template::$cache_id) + * saved cache lifetime in seconds * - * @var string + * @var integer */ - public $cache_id = null; + public $cache_lifetime = 0; /** * Id for cache locking @@ -101,6 +66,13 @@ class Smarty_Template_Cached public $source = null; /** + * Nocache hash codes of processed compiled templates + * + * @var array + */ + public $hashes = array(); + + /** * create Cached Object container * * @param Smarty_Internal_Template $_template template object @@ -109,9 +81,6 @@ class Smarty_Template_Cached { $this->compile_id = $_template->compile_id; $this->cache_id = $_template->cache_id; - if (!isset($_template->source)) { - $_template->loadSource(); - } $this->source = $_template->source; if (!class_exists('Smarty_CacheResource', false)) { require SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php'; @@ -126,13 +95,42 @@ class Smarty_Template_Cached */ static function load(Smarty_Internal_Template $_template) { - $_template->cached = $cached = new Smarty_Template_Cached($_template); - $cached->handler->populate($cached, $_template); + $_template->cached = new Smarty_Template_Cached($_template); + $_template->cached->handler->populate($_template->cached, $_template); // caching enabled ? - if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || $_template->source->recompiled) { - $cached->valid = false; + if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || + $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || $_template->source->handler->recompiled + ) { + $_template->cached->valid = false; + } + return $_template->cached; + } + + /** + * Render cache template + * + * @param \Smarty_Internal_Template $_template + * @param bool $no_output_filter + * + * @throws \Exception + */ + public function render(Smarty_Internal_Template $_template, $no_output_filter = true) + { + if ($this->isCached($_template)) { + if ($_template->smarty->debugging) { + $_template->smarty->_debug->start_cache($_template); + } + if (!$this->processed) { + $this->process($_template); + } + $this->getRenderedTemplateCode($_template); + if ($_template->smarty->debugging) { + $_template->smarty->_debug->end_cache($_template); + } + return; + } else { + $_template->smarty->ext->_updateCache->updateCache($this, $_template, $no_output_filter); } - return $cached; } /** @@ -149,16 +147,20 @@ class Smarty_Template_Cached } while (true) { while (true) { - if ($this->exists === false || $_template->smarty->force_compile || $_template->smarty->force_cache) { + if ($this->exists === false || $_template->smarty->force_compile || $_template->smarty->force_cache) { $this->valid = false; } else { $this->valid = true; } - if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && $_template->cache_lifetime >= 0 && time() > ($this->timestamp + $_template->cache_lifetime)) { + if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && + $_template->cache_lifetime >= 0 && time() > ($this->timestamp + $_template->cache_lifetime) + ) { // lifetime expired $this->valid = false; } - if ($this->valid && $_template->source->timestamp > $this->timestamp) { + if ($this->valid && $_template->smarty->compile_check == 1 && + $_template->source->getTimeStamp() > $this->timestamp + ) { $this->valid = false; } if ($this->valid || !$_template->smarty->cache_locking) { @@ -174,7 +176,7 @@ class Smarty_Template_Cached if (!$_template->smarty->cache_locking || $this->handler->locked($_template->smarty, $this) === null) { // load cache file for the following checks if ($_template->smarty->debugging) { - Smarty_Internal_Debug::start_cache($_template); + $_template->smarty->_debug->start_cache($_template); } if ($this->handler->process($_template, $this) === false) { $this->valid = false; @@ -182,7 +184,7 @@ class Smarty_Template_Cached $this->processed = true; } if ($_template->smarty->debugging) { - Smarty_Internal_Debug::end_cache($_template); + $_template->smarty->_debug->end_cache($_template); } } else { $this->is_locked = true; @@ -191,7 +193,10 @@ class Smarty_Template_Cached } else { return $this->valid; } - if ($this->valid && $_template->caching === Smarty::CACHING_LIFETIME_SAVED && $_template->properties['cache_lifetime'] >= 0 && (time() > ($_template->cached->timestamp + $_template->properties['cache_lifetime']))) { + if ($this->valid && $_template->caching === Smarty::CACHING_LIFETIME_SAVED && + $_template->cached->cache_lifetime >= 0 && + (time() > ($_template->cached->timestamp + $_template->cached->cache_lifetime)) + ) { $this->valid = false; } if ($_template->smarty->cache_locking) { @@ -210,10 +215,11 @@ class Smarty_Template_Cached * Process cached template * * @param Smarty_Internal_Template $_template template object + * @param bool $update flag if called because cache update */ - public function process(Smarty_Internal_Template $_template) + public function process(Smarty_Internal_Template $_template, $update = false) { - if ($this->handler->process($_template, $this) === false) { + if ($this->handler->process($_template, $this, $update) === false) { $this->valid = false; } if ($this->valid) { @@ -224,55 +230,6 @@ class Smarty_Template_Cached } /** - * Render cached template - * - * @param Smarty_Internal_Template $_template - * - * @return string - * @throws Exception - */ - public function render(Smarty_Internal_Template $_template) - { - if (!$this->processed) { - $this->process($_template); - } - return $_template->getRenderedTemplateCode(); - } - - /** - * Write this cache object to handler - * - * @param Smarty_Internal_Template $_template template object - * @param string $content content to cache - * - * @return boolean success - */ - public function write(Smarty_Internal_Template $_template, $content) - { - if (!$_template->source->recompiled) { - if ($this->handler->writeCachedContent($_template, $content)) { - $this->content = null; - $this->timestamp = time(); - $this->exists = true; - $this->valid = true; - $this->processed = false; - if ($_template->smarty->cache_locking) { - $this->handler->releaseLock($_template->smarty, $this); - } - - return true; - } - $this->content = null; - $this->timestamp = false; - $this->exists = false; - $this->valid = false; - $this->processed = false; - } - - return false; - } - - /** * Read cache content from handler * * @param Smarty_Internal_Template $_template template object @@ -281,123 +238,9 @@ class Smarty_Template_Cached */ public function read(Smarty_Internal_Template $_template) { - if (!$_template->source->recompiled) { + if (!$_template->source->handler->recompiled) { return $this->handler->readCachedContent($_template); } return false; } - - /** - * Sanitize content and write it to cache resource - * - * @param Smarty_Internal_Template $_template - * @param string $content - * @param bool $no_output_filter - * - * @throws SmartyException - */ - public function updateCache(Smarty_Internal_Template $_template, $content, $no_output_filter) - { - $_template->properties['has_nocache_code'] = false; - // get text between non-cached items - $cache_split = preg_split("!/\*%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*/!s", $content); - // get non-cached items - preg_match_all("!/\*%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*/!s", $content, $cache_parts); - $output = ''; - // loop over items, stitch back together - foreach ($cache_split as $curr_idx => $curr_split) { - // escape PHP tags in template content - $output .= preg_replace('/(<%|%>|<\?php|<\?|\?>|<script\s+language\s*=\s*[\"\']?\s*php\s*[\"\']?\s*>)/', "<?php echo '\$1'; ?>\n", $curr_split); - if (isset($cache_parts[0][$curr_idx])) { - $_template->properties['has_nocache_code'] = true; - $output .= $cache_parts[1][$curr_idx]; - } - } - if (!$no_output_filter && !$_template->has_nocache_code && (isset($_template->smarty->autoload_filters['output']) || isset($_template->smarty->registered_filters['output']))) { - $output = Smarty_Internal_Filter_Handler::runFilter('output', $output, $_template); - } - // write cache file content - $this->writeCachedContent($_template, $output); - } - - /** - * Writes the content to cache resource - * - * @param Smarty_Internal_Template $_template - * @param string $content - * - * @return bool - */ - public function writeCachedContent(Smarty_Internal_Template $_template, $content) - { - if ($_template->source->recompiled || !($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED)) { - // don't write cache file - return false; - } - $_template->properties['cache_lifetime'] = $_template->cache_lifetime; - $_template->properties['unifunc'] = 'content_' . str_replace(array('.', ','), '_', uniqid('', true)); - $content = Smarty_Internal_Extension_CodeFrame::create($_template, $content, true); - if (!empty($_template->properties['tpl_function'])) { - foreach ($_template->properties['tpl_function'] as $funcParam) { - if (is_file($funcParam['compiled_filepath'])) { - // read compiled file - $code = file_get_contents($funcParam['compiled_filepath']); - // grab template function - if (preg_match("/\/\* {$funcParam['call_name']} \*\/([\S\s]*?)\/\*\/ {$funcParam['call_name']} \*\//", $code, $match)) { - unset($code); - $content .= "<?php " . $match[0] . "?>\n"; - } - } - } - } - return $this->write($_template, $content); - } - - /** - * check client side cache - * - * @param Smarty_Internal_Template $_template - * @param string $content - */ - public function cacheModifiedCheck(Smarty_Internal_Template $_template, $content) - { - $_isCached = $_template->isCached() && !$_template->has_nocache_code; - $_last_modified_date = @substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_SERVER['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3); - if ($_isCached && $this->timestamp <= strtotime($_last_modified_date)) { - switch (PHP_SAPI) { - case 'cgi': // php-cgi < 5.3 - case 'cgi-fcgi': // php-cgi >= 5.3 - case 'fpm-fcgi': // php-fpm >= 5.3.3 - header('Status: 304 Not Modified'); - break; - - case 'cli': - if ( /* ^phpunit */ - !empty($_SERVER['SMARTY_PHPUNIT_DISABLE_HEADERS']) /* phpunit$ */ - ) { - $_SERVER['SMARTY_PHPUNIT_HEADERS'][] = '304 Not Modified'; - } - break; - - default: - header($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified'); - break; - } - } else { - switch (PHP_SAPI) { - case 'cli': - if ( /* ^phpunit */ - !empty($_SERVER['SMARTY_PHPUNIT_DISABLE_HEADERS']) /* phpunit$ */ - ) { - $_SERVER['SMARTY_PHPUNIT_HEADERS'][] = 'Last-Modified: ' . gmdate('D, d M Y H:i:s', $this->timestamp) . ' GMT'; - } - break; - - default: - header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $this->timestamp) . ' GMT'); - break; - } - echo $content; - } - } } |