Files
@ c7d7e38b2269
Branch filter:
Location: hot67beta/libraries/joomla/cache/handler/page.php
c7d7e38b2269
3.2 KiB
text/x-php
Initial import of the site.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | <?php
/**
* @version $Id: page.php 10707 2008-08-21 09:52:47Z eddieajau $
* @package Joomla.Framework
* @subpackage Cache
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* Joomla! Cache page type object
*
* @package Joomla.Framework
* @subpackage Cache
* @since 1.5
*/
class JCachePage extends JCache
{
/**
* Get the cached page data
*
* @access public
* @param string $id The cache data id
* @param string $group The cache data group
* @return boolean True if the cache is hit (false else)
* @since 1.5
*/
function get( $id=false, $group='page' )
{
// Initialize variables
$data = false;
// If an id is not given generate it from the request
if ($id == false) {
$id = $this->_makeId();
}
// If the etag matches the page id ... sent a no change header and exit : utilize browser cache
if ( !headers_sent() && isset($_SERVER['HTTP_IF_NONE_MATCH']) ){
$etag = stripslashes($_SERVER['HTTP_IF_NONE_MATCH']);
if( $etag == $id) {
$browserCache = isset($this->_options['browsercache']) ? $this->_options['browsercache'] : false;
if ($browserCache) {
$this->_noChange();
}
}
}
// We got a cache hit... set the etag header and echo the page data
$data = parent::get($id, $group);
if ($data !== false) {
$this->_setEtag($id);
return $data;
}
// Set id and group placeholders
$this->_id = $id;
$this->_group = $group;
return false;
}
/**
* Stop the cache buffer and store the cached data
*
* @access public
* @return boolean True if cache stored
* @since 1.5
*/
function store()
{
// Get page data from JResponse body
$data = JResponse::getBody();
// Get id and group and reset them placeholders
$id = $this->_id;
$group = $this->_group;
$this->_id = null;
$this->_group = null;
// Only attempt to store if page data exists
if ($data) {
return parent::store($data, $id, $group);
}
return false;
}
/**
* Generate a page cache id
* @todo Discuss whether this should be coupled to a data hash or a request hash ... perhaps hashed with a serialized request
*
* @access private
* @return string MD5 Hash : page cache id
* @since 1.5
*/
function _makeId()
{
return md5(JRequest::getURI());
}
/**
* There is no change in page data so send a not modified header and die gracefully
*
* @access private
* @return void
* @since 1.5
*/
function _noChange()
{
global $mainframe;
// Send not modified header and exit gracefully
header( 'HTTP/1.x 304 Not Modified', true );
$mainframe->close();
}
/**
* Set the ETag header in the response
*
* @access private
* @return void
* @since 1.5
*/
function _setEtag($etag)
{
JResponse::setHeader( 'ETag', $etag, true );
}
}
|