Avoid r60976 breakage of unexpected line breaks inside maybeHelp
[lhc/web/wiklou.git] / maintenance / Maintenance.php
1 <?php
2 /**
3 * @file
4 * @ingroup Maintenance
5 * @defgroup Maintenance Maintenance
6 */
7
8 // Define this so scripts can easily find doMaintenance.php
9 define( 'DO_MAINTENANCE', dirname( __FILE__ ) . '/doMaintenance.php' );
10 $maintClass = false;
11
12 // Make sure we're on PHP5 or better
13 if( version_compare( PHP_VERSION, '5.0.0' ) < 0 ) {
14 echo( "Sorry! This version of MediaWiki requires PHP 5; you are running " .
15 PHP_VERSION . ".\n\n" .
16 "If you are sure you already have PHP 5 installed, it may be installed\n" .
17 "in a different path from PHP 4. Check with your system administrator.\n" );
18 die();
19 }
20
21 /**
22 * Abstract maintenance class for quickly writing and churning out
23 * maintenance scripts with minimal effort. All that _must_ be defined
24 * is the execute() method. See docs/maintenance.txt for more info
25 * and a quick demo of how to use it.
26 *
27 * This program is free software; you can redistribute it and/or modify
28 * it under the terms of the GNU General Public License as published by
29 * the Free Software Foundation; either version 2 of the License, or
30 * (at your option) any later version.
31 *
32 * This program is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
36 *
37 * You should have received a copy of the GNU General Public License along
38 * with this program; if not, write to the Free Software Foundation, Inc.,
39 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
40 * http://www.gnu.org/copyleft/gpl.html
41 *
42 * @author Chad Horohoe <chad@anyonecanedit.org>
43 * @since 1.16
44 * @ingroup Maintenance
45 */
46 abstract class Maintenance {
47
48 /**
49 * Constants for DB access type
50 * @see Maintenance::getDbType()
51 */
52 const DB_NONE = 0;
53 const DB_STD = 1;
54 const DB_ADMIN = 2;
55
56 // Const for getStdin()
57 const STDIN_ALL = 'all';
58
59 // This is the desired params
60 protected $mParams = array();
61
62 // Array of desired args
63 protected $mArgList = array();
64
65 // This is the list of options that were actually passed
66 protected $mOptions = array();
67
68 // This is the list of arguments that were actually passed
69 protected $mArgs = array();
70
71 // Name of the script currently running
72 protected $mSelf;
73
74 // Special vars for params that are always used
75 protected $mQuiet = false;
76 protected $mDbUser, $mDbPass;
77
78 // A description of the script, children should change this
79 protected $mDescription = '';
80
81 // Have we already loaded our user input?
82 protected $mInputLoaded = false;
83
84 // Batch size. If a script supports this, they should set
85 // a default with setBatchSize()
86 protected $mBatchSize = null;
87
88 /**
89 * List of all the core maintenance scripts. This is added
90 * to scripts added by extensions in $wgMaintenanceScripts
91 * and returned by getMaintenanceScripts()
92 */
93 protected static $mCoreScripts = null;
94
95 /**
96 * Default constructor. Children should call this if implementing
97 * their own constructors
98 */
99 public function __construct() {
100 $this->addDefaultParams();
101 register_shutdown_function( array( $this, 'outputChanneled' ), false );
102 }
103
104 /**
105 * Do the actual work. All child classes will need to implement this
106 */
107 abstract public function execute();
108
109 /**
110 * Add a parameter to the script. Will be displayed on --help
111 * with the associated description
112 *
113 * @param $name String The name of the param (help, version, etc)
114 * @param $description String The description of the param to show on --help
115 * @param $required boolean Is the param required?
116 * @param $withArg Boolean Is an argument required with this option?
117 */
118 protected function addOption( $name, $description, $required = false, $withArg = false ) {
119 $this->mParams[$name] = array( 'desc' => $description, 'require' => $required, 'withArg' => $withArg );
120 }
121
122 /**
123 * Checks to see if a particular param exists.
124 * @param $name String The name of the param
125 * @return boolean
126 */
127 protected function hasOption( $name ) {
128 return isset( $this->mOptions[$name] );
129 }
130
131 /**
132 * Get an option, or return the default
133 * @param $name String The name of the param
134 * @param $default mixed Anything you want, default null
135 * @return mixed
136 */
137 protected function getOption( $name, $default = null ) {
138 if( $this->hasOption( $name ) ) {
139 return $this->mOptions[$name];
140 } else {
141 // Set it so we don't have to provide the default again
142 $this->mOptions[$name] = $default;
143 return $this->mOptions[$name];
144 }
145 }
146
147 /**
148 * Add some args that are needed
149 * @param $arg String Name of the arg, like 'start'
150 * @param $description String Short description of the arg
151 * @param $required Boolean Is this required?
152 */
153 protected function addArg( $arg, $description, $required = true ) {
154 $this->mArgList[] = array(
155 'name' => $arg,
156 'desc' => $description,
157 'require' => $required
158 );
159 }
160
161 /**
162 * Does a given argument exist?
163 * @param $argId int The integer value (from zero) for the arg
164 * @return boolean
165 */
166 protected function hasArg( $argId = 0 ) {
167 return isset( $this->mArgs[$argId] );
168 }
169
170 /**
171 * Get an argument.
172 * @param $argId int The integer value (from zero) for the arg
173 * @param $default mixed The default if it doesn't exist
174 * @return mixed
175 */
176 protected function getArg( $argId = 0, $default = null ) {
177 return $this->hasArg( $argId ) ? $this->mArgs[$argId] : $default;
178 }
179
180 /**
181 * Set the batch size.
182 * @param $s int The number of operations to do in a batch
183 */
184 protected function setBatchSize( $s = 0 ) {
185 $this->mBatchSize = $s;
186 }
187
188 /**
189 * Get the script's name
190 * @return String
191 */
192 public function getName() {
193 return $this->mSelf;
194 }
195
196 /**
197 * Return input from stdin.
198 * @param $length int The number of bytes to read. If null,
199 * just return the handle. Maintenance::STDIN_ALL returns
200 * the full length
201 * @return mixed
202 */
203 protected function getStdin( $len = null ) {
204 if ( $len == Maintenance::STDIN_ALL )
205 return file_get_contents( 'php://stdin' );
206 $f = fopen( 'php://stdin', 'rt' );
207 if( !$len )
208 return $f;
209 $input = fgets( $f, $len );
210 fclose( $f );
211 return rtrim( $input );
212 }
213
214 /**
215 * Throw some output to the user. Scripts can call this with no fears,
216 * as we handle all --quiet stuff here
217 * @param $out String The text to show to the user
218 * @param $channel Mixed Unique identifier for the channel. See function outputChanneled.
219 */
220 protected function output( $out, $channel = null ) {
221 if( $this->mQuiet ) {
222 return;
223 }
224 $out = preg_replace( '/\n\z/', '', $out );
225 $this->outputChanneled( $out, $channel );
226 }
227
228 /**
229 * Throw an error to the user. Doesn't respect --quiet, so don't use
230 * this for non-error output
231 * @param $err String The error to display
232 * @param $die boolean If true, go ahead and die out.
233 */
234 protected function error( $err, $die = false ) {
235 $this->outputChanneled( false );
236 if ( php_sapi_name() == 'cli' ) {
237 fwrite( STDERR, $err . "\n" );
238 } else {
239 $f = fopen( 'php://stderr', 'w' );
240 fwrite( $f, $err . "\n" );
241 fclose( $f );
242 }
243 if( $die ) die();
244 }
245
246 private $atLineStart = true;
247 private $lastChannel = null;
248
249 /**
250 * Message outputter with channeled message support. Messages on the
251 * same channel are concatenated, but any intervening messages in another
252 * channel start a new line.
253 * @param $msg String The message without trailing newline
254 * @param $channel Channel identifier or null for no channel. Channel comparison uses ===.
255 */
256 public function outputChanneled( $msg, $channel = null ) {
257 $handle = fopen( 'php://stdout', 'w' );
258
259 if ( $msg === false ) {
260 // For cleanup
261 if ( !$this->atLineStart ) fwrite( $handle, "\n" );
262 fclose( $handle );
263 return;
264 }
265
266 // End the current line if necessary
267 if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
268 fwrite( $handle, "\n" );
269 }
270
271 fwrite( $handle, $msg );
272
273 $this->atLineStart = false;
274 if ( $channel === null ) {
275 // For unchanneled messages, output trailing newline immediately
276 fwrite( $handle, "\n" );
277 $this->atLineStart = true;
278 }
279 $this->lastChannel = $channel;
280
281 // Cleanup handle
282 fclose( $handle );
283 }
284
285 /**
286 * Does the script need different DB access? By default, we give Maintenance
287 * scripts normal rights to the DB. Sometimes, a script needs admin rights
288 * access for a reason and sometimes they want no access. Subclasses should
289 * override and return one of the following values, as needed:
290 * Maintenance::DB_NONE - For no DB access at all
291 * Maintenance::DB_STD - For normal DB access, default
292 * Maintenance::DB_ADMIN - For admin DB access
293 * @return int
294 */
295 protected function getDbType() {
296 return Maintenance::DB_STD;
297 }
298
299 /**
300 * Add the default parameters to the scripts
301 */
302 protected function addDefaultParams() {
303 $this->addOption( 'help', "Display this help message" );
304 $this->addOption( 'quiet', "Whether to supress non-error output" );
305 $this->addOption( 'conf', "Location of LocalSettings.php, if not default", false, true );
306 $this->addOption( 'wiki', "For specifying the wiki ID", false, true );
307 $this->addOption( 'globals', "Output globals at the end of processing for debugging" );
308 // If we support a DB, show the options
309 if( $this->getDbType() > 0 ) {
310 $this->addOption( 'dbuser', "The DB user to use for this script", false, true );
311 $this->addOption( 'dbpass', "The password to use for this script", false, true );
312 }
313 // If we support $mBatchSize, show the option
314 if( $this->mBatchSize ) {
315 $this->addOption( 'batch-size', 'Run this many operations ' .
316 'per batch, default: ' . $this->mBatchSize , false, true );
317 }
318 }
319
320 /**
321 * Run a child maintenance script. Pass all of the current arguments
322 * to it.
323 * @param $maintClass String A name of a child maintenance class
324 * @param $classFile String Full path of where the child is
325 * @return Maintenance child
326 */
327 protected function runChild( $maintClass, $classFile = null ) {
328 // If we haven't already specified, kill setup procedures
329 // for child scripts, we've already got a sane environment
330 self::disableSetup();
331
332 // Make sure the class is loaded first
333 if( !class_exists( $maintClass ) ) {
334 if( $classFile ) {
335 require_once( $classFile );
336 }
337 if( !class_exists( $maintClass ) ) {
338 $this->error( "Cannot spawn child: $maintClass" );
339 }
340 }
341
342 $child = new $maintClass();
343 $child->loadParamsAndArgs( $this->mSelf, $this->mOptions, $this->mArgs );
344 return $child;
345 }
346
347 /**
348 * Disable Setup.php mostly
349 */
350 protected static function disableSetup() {
351 if( !defined( 'MW_NO_SETUP' ) )
352 define( 'MW_NO_SETUP', true );
353 }
354
355 /**
356 * Do some sanity checking and basic setup
357 */
358 public function setup() {
359 global $IP, $wgCommandLineMode, $wgUseNormalUser, $wgRequestTime;
360
361 # Abort if called from a web server
362 if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) ) {
363 $this->error( "This script must be run from the command line", true );
364 }
365
366 # Make sure we can handle script parameters
367 if( !ini_get( 'register_argc_argv' ) ) {
368 $this->error( "Cannot get command line arguments, register_argc_argv is set to false", true );
369 }
370
371 if( version_compare( phpversion(), '5.2.4' ) >= 0 ) {
372 // Send PHP warnings and errors to stderr instead of stdout.
373 // This aids in diagnosing problems, while keeping messages
374 // out of redirected output.
375 if( ini_get( 'display_errors' ) ) {
376 ini_set( 'display_errors', 'stderr' );
377 }
378
379 // Don't touch the setting on earlier versions of PHP,
380 // as setting it would disable output if you'd wanted it.
381
382 // Note that exceptions are also sent to stderr when
383 // command-line mode is on, regardless of PHP version.
384 }
385
386 # Set the memory limit
387 # Note we need to set it again later in cache LocalSettings changed it
388 ini_set( 'memory_limit', $this->memoryLimit() );
389
390 # Set max execution time to 0 (no limit). PHP.net says that
391 # "When running PHP from the command line the default setting is 0."
392 # But sometimes this doesn't seem to be the case.
393 ini_set( 'max_execution_time', 0 );
394
395 $wgRequestTime = microtime( true );
396
397 # Define us as being in MediaWiki
398 define( 'MEDIAWIKI', true );
399
400 # Setup $IP, using MW_INSTALL_PATH if it exists
401 $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
402 ? getenv( 'MW_INSTALL_PATH' )
403 : realpath( dirname( __FILE__ ) . '/..' );
404
405 $wgCommandLineMode = true;
406 # Turn off output buffering if it's on
407 @ob_end_flush();
408
409 if ( !isset( $wgUseNormalUser ) ) {
410 $wgUseNormalUser = false;
411 }
412
413 $this->loadParamsAndArgs();
414 $this->maybeHelp();
415 $this->validateParamsAndArgs();
416 }
417
418 /**
419 * Normally we disable the memory_limit when running admin scripts.
420 * Some scripts may wish to actually set a limit, however, to avoid
421 * blowing up unexpectedly.
422 */
423 public function memoryLimit() {
424 return -1;
425 }
426
427 /**
428 * Clear all params and arguments.
429 */
430 public function clearParamsAndArgs() {
431 $this->mOptions = array();
432 $this->mArgs = array();
433 $this->mInputLoaded = false;
434 }
435
436 /**
437 * Process command line arguments
438 * $mOptions becomes an array with keys set to the option names
439 * $mArgs becomes a zero-based array containing the non-option arguments
440 *
441 * @param $self String The name of the script, if any
442 * @param $opts Array An array of options, in form of key=>value
443 * @param $args Array An array of command line arguments
444 */
445 public function loadParamsAndArgs( $self = null, $opts = null, $args = null ) {
446 # If we were given opts or args, set those and return early
447 if( $self ) {
448 $this->mSelf = $self;
449 $this->mInputLoaded = true;
450 }
451 if( $opts ) {
452 $this->mOptions = $opts;
453 $this->mInputLoaded = true;
454 }
455 if( $args ) {
456 $this->mArgs = $args;
457 $this->mInputLoaded = true;
458 }
459
460 # If we've already loaded input (either by user values or from $argv)
461 # skip on loading it again. The array_shift() will corrupt values if
462 # it's run again and again
463 if( $this->mInputLoaded ) {
464 $this->loadSpecialVars();
465 return;
466 }
467
468 global $argv;
469 $this->mSelf = array_shift( $argv );
470
471 $options = array();
472 $args = array();
473
474 # Parse arguments
475 for( $arg = reset( $argv ); $arg !== false; $arg = next( $argv ) ) {
476 if ( $arg == '--' ) {
477 # End of options, remainder should be considered arguments
478 $arg = next( $argv );
479 while( $arg !== false ) {
480 $args[] = $arg;
481 $arg = next( $argv );
482 }
483 break;
484 } elseif ( substr( $arg, 0, 2 ) == '--' ) {
485 # Long options
486 $option = substr( $arg, 2 );
487 if ( isset( $this->mParams[$option] ) && $this->mParams[$option]['withArg'] ) {
488 $param = next( $argv );
489 if ( $param === false ) {
490 $this->error( "\nERROR: $option needs a value after it\n" );
491 $this->maybeHelp( true );
492 }
493 $options[$option] = $param;
494 } else {
495 $bits = explode( '=', $option, 2 );
496 if( count( $bits ) > 1 ) {
497 $option = $bits[0];
498 $param = $bits[1];
499 } else {
500 $param = 1;
501 }
502 $options[$option] = $param;
503 }
504 } elseif ( substr( $arg, 0, 1 ) == '-' ) {
505 # Short options
506 for ( $p=1; $p<strlen( $arg ); $p++ ) {
507 $option = $arg{$p};
508 if ( isset( $this->mParams[$option]['withArg'] ) && $this->mParams[$option]['withArg'] ) {
509 $param = next( $argv );
510 if ( $param === false ) {
511 $this->error( "\nERROR: $option needs a value after it\n" );
512 $this->maybeHelp( true );
513 }
514 $options[$option] = $param;
515 } else {
516 $options[$option] = 1;
517 }
518 }
519 } else {
520 $args[] = $arg;
521 }
522 }
523
524 $this->mOptions = $options;
525 $this->mArgs = $args;
526 $this->loadSpecialVars();
527 $this->mInputLoaded = true;
528 }
529
530 /**
531 * Run some validation checks on the params, etc
532 */
533 protected function validateParamsAndArgs() {
534 $die = false;
535 # Check to make sure we've got all the required options
536 foreach( $this->mParams as $opt => $info ) {
537 if( $info['require'] && !$this->hasOption( $opt ) ) {
538 $this->error( "Param $opt required!" );
539 $die = true;
540 }
541 }
542 # Check arg list too
543 foreach( $this->mArgList as $k => $info ) {
544 if( $info['require'] && !$this->hasArg($k) ) {
545 $this->error( "Argument <" . $info['name'] . "> required!" );
546 $die = true;
547 }
548 }
549
550 if( $die ) $this->maybeHelp( true );
551 }
552
553 /**
554 * Handle the special variables that are global to all scripts
555 */
556 protected function loadSpecialVars() {
557 if( $this->hasOption( 'dbuser' ) )
558 $this->mDbUser = $this->getOption( 'dbuser' );
559 if( $this->hasOption( 'dbpass' ) )
560 $this->mDbPass = $this->getOption( 'dbpass' );
561 if( $this->hasOption( 'quiet' ) )
562 $this->mQuiet = true;
563 if( $this->hasOption( 'batch-size' ) )
564 $this->mBatchSize = $this->getOption( 'batch-size' );
565 }
566
567 /**
568 * Maybe show the help.
569 * @param $force boolean Whether to force the help to show, default false
570 */
571 protected function maybeHelp( $force = false ) {
572 ksort( $this->mParams );
573 if( $this->hasOption( 'help' ) || $force ) {
574 $this->mQuiet = false;
575
576 if( $this->mDescription ) {
577 $this->output( "\n" . $this->mDescription . "\n" );
578 }
579 $output = "\nUsage: php " . $this->mSelf;
580 if( $this->mParams ) {
581 $output .= " [--" . implode( array_keys( $this->mParams ), "|--" ) . "]";
582 }
583 if( $this->mArgList ) {
584 $output .= " <";
585 foreach( $this->mArgList as $k => $arg ) {
586 $output .= $arg['name'] . ">";
587 if( $k < count( $this->mArgList ) - 1 )
588 $output .= " <";
589 }
590 }
591 $this->output( "$output\n" );
592 foreach( $this->mParams as $par => $info ) {
593 $this->output( "\t$par : " . $info['desc'] . "\n" );
594 }
595 foreach( $this->mArgList as $info ) {
596 $this->output( "\t<" . $info['name'] . "> : " . $info['desc'] . "\n" );
597 }
598 die( 1 );
599 }
600 }
601
602 /**
603 * Handle some last-minute setup here.
604 */
605 public function finalSetup() {
606 global $wgCommandLineMode, $wgUseNormalUser, $wgShowSQLErrors;
607 global $wgTitle, $wgProfiling, $IP, $wgDBadminuser, $wgDBadminpassword;
608 global $wgDBuser, $wgDBpassword, $wgDBservers, $wgLBFactoryConf;
609
610 # Turn off output buffering again, it might have been turned on in the settings files
611 if( ob_get_level() ) {
612 ob_end_flush();
613 }
614 # Same with these
615 $wgCommandLineMode = true;
616
617 # If these were passed, use them
618 if( $this->mDbUser )
619 $wgDBadminuser = $this->mDbUser;
620 if( $this->mDbPass )
621 $wgDBadminpassword = $this->mDbPass;
622
623 if ( empty( $wgUseNormalUser ) && isset( $wgDBadminuser ) ) {
624 $wgDBuser = $wgDBadminuser;
625 $wgDBpassword = $wgDBadminpassword;
626
627 if( $wgDBservers ) {
628 foreach ( $wgDBservers as $i => $server ) {
629 $wgDBservers[$i]['user'] = $wgDBuser;
630 $wgDBservers[$i]['password'] = $wgDBpassword;
631 }
632 }
633 if( isset( $wgLBFactoryConf['serverTemplate'] ) ) {
634 $wgLBFactoryConf['serverTemplate']['user'] = $wgDBuser;
635 $wgLBFactoryConf['serverTemplate']['password'] = $wgDBpassword;
636 }
637 }
638
639 if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
640 $fn = MW_CMDLINE_CALLBACK;
641 $fn();
642 }
643
644 $wgShowSQLErrors = true;
645 @set_time_limit( 0 );
646 ini_set( 'memory_limit', $this->memoryLimit() );
647
648 $wgProfiling = false; // only for Profiler.php mode; avoids OOM errors
649 }
650
651 /**
652 * Potentially debug globals. Originally a feature only
653 * for refreshLinks
654 */
655 public function globals() {
656 if( $this->hasOption( 'globals' ) ) {
657 print_r( $GLOBALS );
658 }
659 }
660
661 /**
662 * Do setup specific to WMF
663 */
664 public function loadWikimediaSettings() {
665 global $IP, $wgNoDBParam, $wgUseNormalUser, $wgConf, $site, $lang;
666
667 if ( empty( $wgNoDBParam ) ) {
668 # Check if we were passed a db name
669 if ( isset( $this->mOptions['wiki'] ) ) {
670 $db = $this->mOptions['wiki'];
671 } else {
672 $db = array_shift( $this->mArgs );
673 }
674 list( $site, $lang ) = $wgConf->siteFromDB( $db );
675
676 # If not, work out the language and site the old way
677 if ( is_null( $site ) || is_null( $lang ) ) {
678 if ( !$db ) {
679 $lang = 'aa';
680 } else {
681 $lang = $db;
682 }
683 if ( isset( $this->mArgs[0] ) ) {
684 $site = array_shift( $this->mArgs );
685 } else {
686 $site = 'wikipedia';
687 }
688 }
689 } else {
690 $lang = 'aa';
691 $site = 'wikipedia';
692 }
693
694 # This is for the IRC scripts, which now run as the apache user
695 # The apache user doesn't have access to the wikiadmin_pass command
696 if ( $_ENV['USER'] == 'apache' ) {
697 #if ( posix_geteuid() == 48 ) {
698 $wgUseNormalUser = true;
699 }
700
701 putenv( 'wikilang=' . $lang );
702
703 $DP = $IP;
704 ini_set( 'include_path', ".:$IP:$IP/includes:$IP/languages:$IP/maintenance" );
705
706 if ( $lang == 'test' && $site == 'wikipedia' ) {
707 define( 'TESTWIKI', 1 );
708 }
709 }
710
711 /**
712 * Generic setup for most installs. Returns the location of LocalSettings
713 * @return String
714 */
715 public function loadSettings() {
716 global $wgWikiFarm, $wgCommandLineMode, $IP, $DP;
717
718 $wgWikiFarm = false;
719 if ( isset( $this->mOptions['conf'] ) ) {
720 $settingsFile = $this->mOptions['conf'];
721 } else {
722 $settingsFile = "$IP/LocalSettings.php";
723 }
724 if ( isset( $this->mOptions['wiki'] ) ) {
725 $bits = explode( '-', $this->mOptions['wiki'] );
726 if ( count( $bits ) == 1 ) {
727 $bits[] = '';
728 }
729 define( 'MW_DB', $bits[0] );
730 define( 'MW_PREFIX', $bits[1] );
731 }
732
733 if ( !is_readable( $settingsFile ) ) {
734 $this->error( "A copy of your installation's LocalSettings.php\n" .
735 "must exist and be readable in the source directory.", true );
736 }
737 $wgCommandLineMode = true;
738 $DP = $IP;
739 return $settingsFile;
740 }
741
742 /**
743 * Support function for cleaning up redundant text records
744 * @param $delete boolean Whether or not to actually delete the records
745 * @author Rob Church <robchur@gmail.com>
746 */
747 protected function purgeRedundantText( $delete = true ) {
748 # Data should come off the master, wrapped in a transaction
749 $dbw = wfGetDB( DB_MASTER );
750 $dbw->begin();
751
752 $tbl_arc = $dbw->tableName( 'archive' );
753 $tbl_rev = $dbw->tableName( 'revision' );
754 $tbl_txt = $dbw->tableName( 'text' );
755
756 # Get "active" text records from the revisions table
757 $this->output( "Searching for active text records in revisions table..." );
758 $res = $dbw->query( "SELECT DISTINCT rev_text_id FROM $tbl_rev" );
759 foreach( $res as $row ) {
760 $cur[] = $row->rev_text_id;
761 }
762 $this->output( "done.\n" );
763
764 # Get "active" text records from the archive table
765 $this->output( "Searching for active text records in archive table..." );
766 $res = $dbw->query( "SELECT DISTINCT ar_text_id FROM $tbl_arc" );
767 foreach( $res as $row ) {
768 $cur[] = $row->ar_text_id;
769 }
770 $this->output( "done.\n" );
771
772 # Get the IDs of all text records not in these sets
773 $this->output( "Searching for inactive text records..." );
774 $set = implode( ', ', $cur );
775 $res = $dbw->query( "SELECT old_id FROM $tbl_txt WHERE old_id NOT IN ( $set )" );
776 $old = array();
777 foreach( $res as $row ) {
778 $old[] = $row->old_id;
779 }
780 $this->output( "done.\n" );
781
782 # Inform the user of what we're going to do
783 $count = count( $old );
784 $this->output( "$count inactive items found.\n" );
785
786 # Delete as appropriate
787 if( $delete && $count ) {
788 $this->output( "Deleting..." );
789 $set = implode( ', ', $old );
790 $dbw->query( "DELETE FROM $tbl_txt WHERE old_id IN ( $set )" );
791 $this->output( "done.\n" );
792 }
793
794 # Done
795 $dbw->commit();
796 }
797
798 /**
799 * Get the maintenance directory.
800 */
801 protected function getDir() {
802 return dirname( __FILE__ );
803 }
804
805 /**
806 * Get the list of available maintenance scripts. Note
807 * that if you call this _before_ calling doMaintenance
808 * you won't have any extensions in it yet
809 * @return array
810 */
811 public static function getMaintenanceScripts() {
812 global $wgMaintenanceScripts;
813 return $wgMaintenanceScripts + self::getCoreScripts();
814 }
815
816 /**
817 * Return all of the core maintenance scripts
818 * @return array
819 */
820 protected static function getCoreScripts() {
821 if( !self::$mCoreScripts ) {
822 self::disableSetup();
823 $paths = array(
824 dirname( __FILE__ ),
825 dirname( __FILE__ ) . '/gearman',
826 dirname( __FILE__ ) . '/language',
827 dirname( __FILE__ ) . '/storage',
828 );
829 self::$mCoreScripts = array();
830 foreach( $paths as $p ) {
831 $handle = opendir( $p );
832 while( ( $file = readdir( $handle ) ) !== false ) {
833 if( $file == 'Maintenance.php' )
834 continue;
835 $file = $p . '/' . $file;
836 if( is_dir( $file ) || !strpos( $file, '.php' ) ||
837 ( strpos( file_get_contents( $file ), '$maintClass' ) === false ) ) {
838 continue;
839 }
840 require( $file );
841 $vars = get_defined_vars();
842 if( array_key_exists( 'maintClass', $vars ) ) {
843 self::$mCoreScripts[$vars['maintClass']] = $file;
844 }
845 }
846 closedir( $handle );
847 }
848 }
849 return self::$mCoreScripts;
850 }
851 }