3 * Build file cache for content pages
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
21 * @ingroup Maintenance
24 require_once __DIR__
. '/Maintenance.php';
27 * Maintenance script that builds file cache for content pages.
29 * @ingroup Maintenance
31 class RebuildFileCache
extends Maintenance
{
32 private $enabled = true;
34 public function __construct() {
35 parent
::__construct();
36 $this->addDescription( 'Build file cache for content pages' );
37 $this->addOption( 'start', 'Page_id to start from', false, true );
38 $this->addOption( 'end', 'Page_id to end on', false, true );
39 $this->addOption( 'overwrite', 'Refresh page cache' );
40 $this->setBatchSize( 100 );
43 public function finalSetup() {
44 global $wgDebugToolbar, $wgUseFileCache, $wgReadOnly;
46 $this->enabled
= $wgUseFileCache;
47 // Script will handle capturing output and saving it itself
48 $wgUseFileCache = false;
49 // Debug toolbar makes content uncacheable so we disable it.
50 // Has to be done before Setup.php initialize MWDebug
51 $wgDebugToolbar = false;
52 // Avoid DB writes (like enotif/counters)
53 $wgReadOnly = 'Building cache'; // avoid DB writes (like enotif/counters)
58 public function execute() {
59 global $wgRequestTime;
61 if ( !$this->enabled
) {
62 $this->error( "Nothing to do -- \$wgUseFileCache is disabled.", true );
65 $start = $this->getOption( 'start', "0" );
66 if ( !ctype_digit( $start ) ) {
67 $this->error( "Invalid value for start parameter.", true );
69 $start = intval( $start );
71 $end = $this->getOption( 'end', "0" );
72 if ( !ctype_digit( $end ) ) {
73 $this->error( "Invalid value for end parameter.", true );
75 $end = intval( $end );
77 $this->output( "Building content page file cache from page {$start}!\n" );
79 $dbr = $this->getDB( DB_REPLICA
);
80 $overwrite = $this->getOption( 'overwrite', false );
81 $start = ( $start > 0 )
83 : $dbr->selectField( 'page', 'MIN(page_id)', false, __METHOD__
);
86 : $dbr->selectField( 'page', 'MAX(page_id)', false, __METHOD__
);
88 $this->error( "Nothing to do.", true );
91 $_SERVER['HTTP_ACCEPT_ENCODING'] = 'bgzip'; // hack, no real client
94 $end +
= $this->mBatchSize
- 1;
96 $blockEnd = $start +
$this->mBatchSize
- 1;
98 $dbw = $this->getDB( DB_MASTER
);
99 // Go through each page and save the output
100 while ( $blockEnd <= $end ) {
102 $res = $dbr->select( 'page',
103 [ 'page_namespace', 'page_title', 'page_id' ],
104 [ 'page_namespace' => MWNamespace
::getContentNamespaces(),
105 "page_id BETWEEN $blockStart AND $blockEnd" ],
107 [ 'ORDER BY' => 'page_id ASC', 'USE INDEX' => 'PRIMARY' ]
110 $this->beginTransaction( $dbw, __METHOD__
); // for any changes
111 foreach ( $res as $row ) {
114 $title = Title
::makeTitleSafe( $row->page_namespace
, $row->page_title
);
115 if ( null == $title ) {
116 $this->output( "Page {$row->page_id} has bad title\n" );
117 continue; // broken title?
120 $context = new RequestContext();
121 $context->setTitle( $title );
122 $article = Article
::newFromTitle( $title, $context );
123 $context->setWikiPage( $article->getPage() );
125 // Some extensions like FlaggedRevs while error out if this is unset
126 RequestContext
::getMain()->setTitle( $title );
128 // If the article is cacheable, then load it
129 if ( $article->isFileCacheable( HTMLFileCache
::MODE_REBUILD
) ) {
130 $viewCache = new HTMLFileCache( $title, 'view' );
131 $historyCache = new HTMLFileCache( $title, 'history' );
132 if ( $viewCache->isCacheGood() && $historyCache->isCacheGood() ) {
136 $this->output( "Page '$title' (id {$row->page_id}) already cached\n" );
137 continue; // done already!
141 MediaWiki\
suppressWarnings(); // header notices
142 // Cache ?action=view
143 $wgRequestTime = microtime( true ); # T24852
146 $context->getOutput()->output();
147 $context->getOutput()->clearHTML();
148 $viewHtml = ob_get_clean();
149 $viewCache->saveToFileCache( $viewHtml );
150 // Cache ?action=history
151 $wgRequestTime = microtime( true ); # T24852
153 Action
::factory( 'history', $article, $context )->show();
154 $context->getOutput()->output();
155 $context->getOutput()->clearHTML();
156 $historyHtml = ob_get_clean();
157 $historyCache->saveToFileCache( $historyHtml );
158 MediaWiki\restoreWarnings
();
161 $this->output( "Re-cached page '$title' (id {$row->page_id})..." );
163 $this->output( "Cached page '$title' (id {$row->page_id})..." );
165 $this->output( "[view: " . strlen( $viewHtml ) . " bytes; " .
166 "history: " . strlen( $historyHtml ) . " bytes]\n" );
168 $this->output( "Page '$title' (id {$row->page_id}) not cacheable\n" );
171 $this->commitTransaction( $dbw, __METHOD__
); // commit any changes (just for sanity)
173 $blockStart +
= $this->mBatchSize
;
174 $blockEnd +
= $this->mBatchSize
;
176 $this->output( "Done!\n" );
180 $maintClass = "RebuildFileCache";
181 require_once RUN_MAINTENANCE_IF_MAIN
;