Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / maintenance / updateSpecialPages.php
1 <?php
2 /**
3 * Update for cached special pages.
4 * Run this script periodically if you have miser mode enabled.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @file
22 * @ingroup Maintenance
23 */
24
25 require_once __DIR__ . '/Maintenance.php';
26
27 use MediaWiki\MediaWikiServices;
28
29 /**
30 * Maintenance script to update cached special pages.
31 *
32 * @ingroup Maintenance
33 */
34 class UpdateSpecialPages extends Maintenance {
35 public function __construct() {
36 parent::__construct();
37 $this->addOption( 'list', 'List special page names' );
38 $this->addOption( 'only', 'Only update "page"; case sensitive, ' .
39 'check correct case by calling this script with --list. ' .
40 'Ex: --only=BrokenRedirects', false, true );
41 $this->addOption( 'override', 'Also update pages that have updates disabled' );
42 }
43
44 public function execute() {
45 global $wgQueryCacheLimit, $wgDisableQueryPageUpdate;
46
47 $dbw = $this->getDB( DB_MASTER );
48
49 $this->doSpecialPageCacheUpdates( $dbw );
50
51 foreach ( QueryPage::getPages() as $page ) {
52 list( , $special ) = $page;
53 $limit = $page[2] ?? null;
54
55 # --list : just show the name of pages
56 if ( $this->hasOption( 'list' ) ) {
57 $this->output( "$special [QueryPage]\n" );
58 continue;
59 }
60
61 if ( !$this->hasOption( 'override' )
62 && $wgDisableQueryPageUpdate && in_array( $special, $wgDisableQueryPageUpdate )
63 ) {
64 $this->output( sprintf( "%-30s [QueryPage] disabled\n", $special ) );
65 continue;
66 }
67
68 $specialObj = MediaWikiServices::getInstance()->getSpecialPageFactory()->
69 getPage( $special );
70 if ( !$specialObj ) {
71 $this->output( "No such special page: $special\n" );
72 exit;
73 }
74 if ( $specialObj instanceof QueryPage ) {
75 $queryPage = $specialObj;
76 } else {
77 $class = get_class( $specialObj );
78 $this->fatalError( "$class is not an instance of QueryPage.\n" );
79 die;
80 }
81
82 if ( !$this->hasOption( 'only' ) || $this->getOption( 'only' ) == $queryPage->getName() ) {
83 $this->output( sprintf( '%-30s [QueryPage] ', $special ) );
84 if ( $queryPage->isExpensive() ) {
85 $t1 = microtime( true );
86 # Do the query
87 $num = $queryPage->recache( $limit ?? $wgQueryCacheLimit );
88 $t2 = microtime( true );
89 if ( $num === false ) {
90 $this->output( "FAILED: database error\n" );
91 } else {
92 $this->output( "got $num rows in " );
93
94 $elapsed = $t2 - $t1;
95 $hours = intval( $elapsed / 3600 );
96 $minutes = intval( $elapsed % 3600 / 60 );
97 $seconds = $elapsed - $hours * 3600 - $minutes * 60;
98 if ( $hours ) {
99 $this->output( $hours . 'h ' );
100 }
101 if ( $minutes ) {
102 $this->output( $minutes . 'm ' );
103 }
104 $this->output( sprintf( "%.2fs\n", $seconds ) );
105 }
106 # Reopen any connections that have closed
107 $this->reopenAndWaitForReplicas();
108 } else {
109 $this->output( "cheap, skipped\n" );
110 }
111 if ( $this->hasOption( 'only' ) ) {
112 break;
113 }
114 }
115 }
116 }
117
118 /**
119 * Re-open any closed db connection, and wait for replicas
120 *
121 * Queries that take a really long time, might cause the
122 * mysql connection to "go away"
123 */
124 private function reopenAndWaitForReplicas() {
125 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
126 $lb = $lbFactory->getMainLB();
127 if ( !$lb->pingAll() ) {
128 $this->output( "\n" );
129 do {
130 $this->error( "Connection failed, reconnecting in 10 seconds..." );
131 sleep( 10 );
132 } while ( !$lb->pingAll() );
133 $this->output( "Reconnected\n\n" );
134 }
135 // Wait for the replica DB to catch up
136 $lbFactory->waitForReplication();
137 }
138
139 public function doSpecialPageCacheUpdates( $dbw ) {
140 global $wgSpecialPageCacheUpdates;
141
142 foreach ( $wgSpecialPageCacheUpdates as $special => $call ) {
143 # --list : just show the name of pages
144 if ( $this->hasOption( 'list' ) ) {
145 $this->output( "$special [callback]\n" );
146 continue;
147 }
148
149 if ( !$this->hasOption( 'only' ) || $this->getOption( 'only' ) == $special ) {
150 if ( !is_callable( $call ) ) {
151 $this->error( "Uncallable function $call!" );
152 continue;
153 }
154 $this->output( sprintf( '%-30s [callback] ', $special ) );
155 $t1 = microtime( true );
156 call_user_func( $call, $dbw );
157 $t2 = microtime( true );
158
159 $this->output( "completed in " );
160 $elapsed = $t2 - $t1;
161 $hours = intval( $elapsed / 3600 );
162 $minutes = intval( $elapsed % 3600 / 60 );
163 $seconds = $elapsed - $hours * 3600 - $minutes * 60;
164 if ( $hours ) {
165 $this->output( $hours . 'h ' );
166 }
167 if ( $minutes ) {
168 $this->output( $minutes . 'm ' );
169 }
170 $this->output( sprintf( "%.2fs\n", $seconds ) );
171 # Wait for the replica DB to catch up
172 $this->reopenAndWaitForReplicas();
173 }
174 }
175 }
176 }
177
178 $maintClass = UpdateSpecialPages::class;
179 require_once RUN_MAINTENANCE_IF_MAIN;