3 * Page view caching in the file system.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Page view caching in the file system.
26 * The only cacheable actions are "view" and "history". Also special pages
31 class HTMLFileCache
extends FileCacheBase
{
33 * Construct an ObjectFileCache from a Title and an action
34 * @param Title|string $title Title object or prefixed DB key string
35 * @param string $action
37 * @return HTMLFileCache
39 * @deprecated Since 1.24, instantiate this class directly
41 public static function newFromTitle( $title, $action ) {
42 return new self( $title, $action );
46 * @param Title|string $title Title object or prefixed DB key string
47 * @param string $action
50 public function __construct( $title, $action ) {
51 parent
::__construct();
52 $allowedTypes = self
::cacheablePageActions();
53 if ( !in_array( $action, $allowedTypes ) ) {
54 throw new MWException( 'Invalid file cache type given.' );
56 $this->mKey
= ( $title instanceof Title
)
57 ?
$title->getPrefixedDBkey()
59 $this->mType
= (string)$action;
67 protected static function cacheablePageActions() {
68 return array( 'view', 'history' );
72 * Get the base file cache directory
75 protected function cacheDirectory() {
76 return $this->baseCacheDirectory(); // no subdir for b/c with old cache files
80 * Get the cache type subdirectory (with the trailing slash) or the empty string
81 * Alter the type -> directory mapping to put action=view cache at the root.
85 protected function typeSubdirectory() {
86 if ( $this->mType
=== 'view' ) {
87 return ''; // b/c to not skip existing cache
89 return $this->mType
. '/';
94 * Check if pages can be cached for this request/user
95 * @param IContextSource $context
98 public static function useFileCache( IContextSource
$context ) {
99 global $wgUseFileCache, $wgDebugToolbar, $wgContLang;
100 if ( !$wgUseFileCache ) {
103 if ( $wgDebugToolbar ) {
104 wfDebug( "HTML file cache skipped. \$wgDebugToolbar on\n" );
109 // Get all query values
110 $queryVals = $context->getRequest()->getValues();
111 foreach ( $queryVals as $query => $val ) {
112 if ( $query === 'title' ||
$query === 'curid' ) {
113 continue; // note: curid sets title
114 // Normal page view in query form can have action=view.
115 } elseif ( $query === 'action' && in_array( $val, self
::cacheablePageActions() ) ) {
117 // Below are header setting params
118 } elseif ( $query === 'maxage' ||
$query === 'smaxage' ) {
124 $user = $context->getUser();
125 // Check for non-standard user language; this covers uselang,
126 // and extensions for auto-detecting user language.
127 $ulang = $context->getLanguage()->getCode();
128 $clang = $wgContLang->getCode();
130 // Check that there are no other sources of variation
131 if ( $user->getId() ||
$user->getNewtalk() ||
$ulang != $clang ) {
134 // Allow extensions to disable caching
135 return Hooks
::run( 'HTMLFileCache::useFileCache', array( $context ) );
139 * Read from cache to context output
140 * @param IContextSource $context
143 public function loadFromFileCache( IContextSource
$context ) {
144 global $wgMimeType, $wgLanguageCode;
146 wfDebug( __METHOD__
. "()\n" );
147 $filename = $this->cachePath();
149 $context->getOutput()->sendCacheControl();
150 header( "Content-Type: $wgMimeType; charset=UTF-8" );
151 header( "Content-Language: $wgLanguageCode" );
152 if ( $this->useGzip() ) {
153 if ( wfClientAcceptsGzip() ) {
154 header( 'Content-Encoding: gzip' );
155 readfile( $filename );
157 /* Send uncompressed */
158 wfDebug( __METHOD__
. " uncompressing cache file and sending it\n" );
159 readgzfile( $filename );
162 readfile( $filename );
164 $context->getOutput()->disable(); // tell $wgOut that output is taken care of
168 * Save this cache object with the given text.
169 * Use this as an ob_start() handler.
170 * @param string $text
171 * @return bool Whether $wgUseFileCache is enabled
173 public function saveToFileCache( $text ) {
174 global $wgUseFileCache;
176 if ( !$wgUseFileCache ||
strlen( $text ) < 512 ) {
177 // Disabled or empty/broken output (OOM and PHP errors)
181 wfDebug( __METHOD__
. "()\n", 'private' );
183 $now = wfTimestampNow();
184 if ( $this->useGzip() ) {
186 '</html>', '<!-- Cached/compressed ' . $now . " -->\n</html>", $text );
189 '</html>', '<!-- Cached ' . $now . " -->\n</html>", $text );
192 // Store text to FS...
193 $compressed = $this->saveText( $text );
194 if ( $compressed === false ) {
195 return $text; // error
198 // gzip output to buffer as needed and set headers...
199 if ( $this->useGzip() ) {
200 // @todo Ugly wfClientAcceptsGzip() function - use context!
201 if ( wfClientAcceptsGzip() ) {
202 header( 'Content-Encoding: gzip' );
214 * Clear the file caches for a page for all actions
215 * @param Title $title
216 * @return bool Whether $wgUseFileCache is enabled
218 public static function clearFileCache( Title
$title ) {
219 global $wgUseFileCache;
221 if ( !$wgUseFileCache ) {
225 foreach ( self
::cacheablePageActions() as $type ) {
226 $fc = new self( $title, $type );