Introduce WebRequest::getProtocol()
[lhc/web/wiklou.git] / maintenance / Maintenance.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Maintenance
20 * @defgroup Maintenance Maintenance
21 */
22
23 // Make sure we're on PHP5.3.2 or better
24 if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3.2' ) < 0 ) {
25 // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+
26 require_once dirname( __FILE__ ) . '/../includes/PHPVersionError.php';
27 wfPHPVersionError( 'cli' );
28 }
29
30 /**
31 * @defgroup MaintenanceArchive Maintenance archives
32 * @ingroup Maintenance
33 */
34
35 // Define this so scripts can easily find doMaintenance.php
36 define( 'RUN_MAINTENANCE_IF_MAIN', __DIR__ . '/doMaintenance.php' );
37 define( 'DO_MAINTENANCE', RUN_MAINTENANCE_IF_MAIN ); // original name, harmless
38
39 $maintClass = false;
40
41 /**
42 * Abstract maintenance class for quickly writing and churning out
43 * maintenance scripts with minimal effort. All that _must_ be defined
44 * is the execute() method. See docs/maintenance.txt for more info
45 * and a quick demo of how to use it.
46 *
47 * @author Chad Horohoe <chad@anyonecanedit.org>
48 * @since 1.16
49 * @ingroup Maintenance
50 */
51 abstract class Maintenance {
52
53 /**
54 * Constants for DB access type
55 * @see Maintenance::getDbType()
56 */
57 const DB_NONE = 0;
58 const DB_STD = 1;
59 const DB_ADMIN = 2;
60
61 // Const for getStdin()
62 const STDIN_ALL = 'all';
63
64 // This is the desired params
65 protected $mParams = array();
66
67 // Array of mapping short parameters to long ones
68 protected $mShortParamsMap = array();
69
70 // Array of desired args
71 protected $mArgList = array();
72
73 // This is the list of options that were actually passed
74 protected $mOptions = array();
75
76 // This is the list of arguments that were actually passed
77 protected $mArgs = array();
78
79 // Name of the script currently running
80 protected $mSelf;
81
82 // Special vars for params that are always used
83 protected $mQuiet = false;
84 protected $mDbUser, $mDbPass;
85
86 // A description of the script, children should change this
87 protected $mDescription = '';
88
89 // Have we already loaded our user input?
90 protected $mInputLoaded = false;
91
92 /**
93 * Batch size. If a script supports this, they should set
94 * a default with setBatchSize()
95 *
96 * @var int
97 */
98 protected $mBatchSize = null;
99
100 // Generic options added by addDefaultParams()
101 private $mGenericParameters = array();
102 // Generic options which might or not be supported by the script
103 private $mDependantParameters = array();
104
105 /**
106 * Used by getDD() / setDB()
107 * @var DatabaseBase
108 */
109 private $mDb = null;
110
111 /**
112 * Used when creating separate schema files.
113 * @var resource
114 */
115 public $fileHandle;
116
117 /**
118 * List of all the core maintenance scripts. This is added
119 * to scripts added by extensions in $wgMaintenanceScripts
120 * and returned by getMaintenanceScripts()
121 */
122 protected static $mCoreScripts = null;
123
124 /**
125 * Default constructor. Children should call this *first* if implementing
126 * their own constructors
127 */
128 public function __construct() {
129 // Setup $IP, using MW_INSTALL_PATH if it exists
130 global $IP;
131 $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
132 ? getenv( 'MW_INSTALL_PATH' )
133 : realpath( __DIR__ . '/..' );
134
135 $this->addDefaultParams();
136 register_shutdown_function( array( $this, 'outputChanneled' ), false );
137 }
138
139 /**
140 * Should we execute the maintenance script, or just allow it to be included
141 * as a standalone class? It checks that the call stack only includes this
142 * function and "requires" (meaning was called from the file scope)
143 *
144 * @return Boolean
145 */
146 public static function shouldExecute() {
147 $bt = debug_backtrace();
148 $count = count( $bt );
149 if ( $count < 2 ) {
150 return false; // sanity
151 }
152 if ( $bt[0]['class'] !== 'Maintenance' || $bt[0]['function'] !== 'shouldExecute' ) {
153 return false; // last call should be to this function
154 }
155 $includeFuncs = array( 'require_once', 'require', 'include', 'include_once' );
156 for ( $i = 1; $i < $count; $i++ ) {
157 if ( !in_array( $bt[$i]['function'], $includeFuncs ) ) {
158 return false; // previous calls should all be "requires"
159 }
160 }
161 return true;
162 }
163
164 /**
165 * Do the actual work. All child classes will need to implement this
166 */
167 abstract public function execute();
168
169 /**
170 * Add a parameter to the script. Will be displayed on --help
171 * with the associated description
172 *
173 * @param $name String: the name of the param (help, version, etc)
174 * @param $description String: the description of the param to show on --help
175 * @param $required Boolean: is the param required?
176 * @param $withArg Boolean: is an argument required with this option?
177 * @param $shortName String: character to use as short name
178 */
179 protected function addOption( $name, $description, $required = false, $withArg = false, $shortName = false ) {
180 $this->mParams[$name] = array( 'desc' => $description, 'require' => $required, 'withArg' => $withArg, 'shortName' => $shortName );
181 if ( $shortName !== false ) {
182 $this->mShortParamsMap[$shortName] = $name;
183 }
184 }
185
186 /**
187 * Checks to see if a particular param exists.
188 * @param $name String: the name of the param
189 * @return Boolean
190 */
191 protected function hasOption( $name ) {
192 return isset( $this->mOptions[$name] );
193 }
194
195 /**
196 * Get an option, or return the default
197 * @param $name String: the name of the param
198 * @param $default Mixed: anything you want, default null
199 * @return Mixed
200 */
201 protected function getOption( $name, $default = null ) {
202 if ( $this->hasOption( $name ) ) {
203 return $this->mOptions[$name];
204 } else {
205 // Set it so we don't have to provide the default again
206 $this->mOptions[$name] = $default;
207 return $this->mOptions[$name];
208 }
209 }
210
211 /**
212 * Add some args that are needed
213 * @param $arg String: name of the arg, like 'start'
214 * @param $description String: short description of the arg
215 * @param $required Boolean: is this required?
216 */
217 protected function addArg( $arg, $description, $required = true ) {
218 $this->mArgList[] = array(
219 'name' => $arg,
220 'desc' => $description,
221 'require' => $required
222 );
223 }
224
225 /**
226 * Remove an option. Useful for removing options that won't be used in your script.
227 * @param $name String: the option to remove.
228 */
229 protected function deleteOption( $name ) {
230 unset( $this->mParams[$name] );
231 }
232
233 /**
234 * Set the description text.
235 * @param $text String: the text of the description
236 */
237 protected function addDescription( $text ) {
238 $this->mDescription = $text;
239 }
240
241 /**
242 * Does a given argument exist?
243 * @param $argId Integer: the integer value (from zero) for the arg
244 * @return Boolean
245 */
246 protected function hasArg( $argId = 0 ) {
247 return isset( $this->mArgs[$argId] );
248 }
249
250 /**
251 * Get an argument.
252 * @param $argId Integer: the integer value (from zero) for the arg
253 * @param $default Mixed: the default if it doesn't exist
254 * @return mixed
255 */
256 protected function getArg( $argId = 0, $default = null ) {
257 return $this->hasArg( $argId ) ? $this->mArgs[$argId] : $default;
258 }
259
260 /**
261 * Set the batch size.
262 * @param $s Integer: the number of operations to do in a batch
263 */
264 protected function setBatchSize( $s = 0 ) {
265 $this->mBatchSize = $s;
266
267 // If we support $mBatchSize, show the option.
268 // Used to be in addDefaultParams, but in order for that to
269 // work, subclasses would have to call this function in the constructor
270 // before they called parent::__construct which is just weird
271 // (and really wasn't done).
272 if ( $this->mBatchSize ) {
273 $this->addOption( 'batch-size', 'Run this many operations ' .
274 'per batch, default: ' . $this->mBatchSize, false, true );
275 if ( isset( $this->mParams['batch-size'] ) ) {
276 // This seems a little ugly...
277 $this->mDependantParameters['batch-size'] = $this->mParams['batch-size'];
278 }
279 }
280 }
281
282 /**
283 * Get the script's name
284 * @return String
285 */
286 public function getName() {
287 return $this->mSelf;
288 }
289
290 /**
291 * Return input from stdin.
292 * @param $len Integer: the number of bytes to read. If null,
293 * just return the handle. Maintenance::STDIN_ALL returns
294 * the full length
295 * @return Mixed
296 */
297 protected function getStdin( $len = null ) {
298 if ( $len == Maintenance::STDIN_ALL ) {
299 return file_get_contents( 'php://stdin' );
300 }
301 $f = fopen( 'php://stdin', 'rt' );
302 if ( !$len ) {
303 return $f;
304 }
305 $input = fgets( $f, $len );
306 fclose( $f );
307 return rtrim( $input );
308 }
309
310 /**
311 * @return bool
312 */
313 public function isQuiet() {
314 return $this->mQuiet;
315 }
316
317 /**
318 * Throw some output to the user. Scripts can call this with no fears,
319 * as we handle all --quiet stuff here
320 * @param $out String: the text to show to the user
321 * @param $channel Mixed: unique identifier for the channel. See
322 * function outputChanneled.
323 */
324 protected function output( $out, $channel = null ) {
325 if ( $this->mQuiet ) {
326 return;
327 }
328 if ( $channel === null ) {
329 $this->cleanupChanneled();
330 print $out;
331 } else {
332 $out = preg_replace( '/\n\z/', '', $out );
333 $this->outputChanneled( $out, $channel );
334 }
335 }
336
337 /**
338 * Throw an error to the user. Doesn't respect --quiet, so don't use
339 * this for non-error output
340 * @param $err String: the error to display
341 * @param $die Int: if > 0, go ahead and die out using this int as the code
342 */
343 protected function error( $err, $die = 0 ) {
344 $this->outputChanneled( false );
345 if ( PHP_SAPI == 'cli' ) {
346 fwrite( STDERR, $err . "\n" );
347 } else {
348 print $err;
349 }
350 $die = intval( $die );
351 if ( $die > 0 ) {
352 die( $die );
353 }
354 }
355
356 private $atLineStart = true;
357 private $lastChannel = null;
358
359 /**
360 * Clean up channeled output. Output a newline if necessary.
361 */
362 public function cleanupChanneled() {
363 if ( !$this->atLineStart ) {
364 print "\n";
365 $this->atLineStart = true;
366 }
367 }
368
369 /**
370 * Message outputter with channeled message support. Messages on the
371 * same channel are concatenated, but any intervening messages in another
372 * channel start a new line.
373 * @param $msg String: the message without trailing newline
374 * @param $channel string Channel identifier or null for no
375 * channel. Channel comparison uses ===.
376 */
377 public function outputChanneled( $msg, $channel = null ) {
378 if ( $msg === false ) {
379 $this->cleanupChanneled();
380 return;
381 }
382
383 // End the current line if necessary
384 if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
385 print "\n";
386 }
387
388 print $msg;
389
390 $this->atLineStart = false;
391 if ( $channel === null ) {
392 // For unchanneled messages, output trailing newline immediately
393 print "\n";
394 $this->atLineStart = true;
395 }
396 $this->lastChannel = $channel;
397 }
398
399 /**
400 * Does the script need different DB access? By default, we give Maintenance
401 * scripts normal rights to the DB. Sometimes, a script needs admin rights
402 * access for a reason and sometimes they want no access. Subclasses should
403 * override and return one of the following values, as needed:
404 * Maintenance::DB_NONE - For no DB access at all
405 * Maintenance::DB_STD - For normal DB access, default
406 * Maintenance::DB_ADMIN - For admin DB access
407 * @return Integer
408 */
409 public function getDbType() {
410 return Maintenance::DB_STD;
411 }
412
413 /**
414 * Add the default parameters to the scripts
415 */
416 protected function addDefaultParams() {
417
418 # Generic (non script dependant) options:
419
420 $this->addOption( 'help', 'Display this help message', false, false, 'h' );
421 $this->addOption( 'quiet', 'Whether to supress non-error output', false, false, 'q' );
422 $this->addOption( 'conf', 'Location of LocalSettings.php, if not default', false, true );
423 $this->addOption( 'wiki', 'For specifying the wiki ID', false, true );
424 $this->addOption( 'globals', 'Output globals at the end of processing for debugging' );
425 $this->addOption( 'memory-limit', 'Set a specific memory limit for the script, "max" for no limit or "default" to avoid changing it' );
426 $this->addOption( 'server', "The protocol and server name to use in URLs, e.g. " .
427 "http://en.wikipedia.org. This is sometimes necessary because " .
428 "server name detection may fail in command line scripts.", false, true );
429 $this->addOption( 'profiler', 'Set to "text" or "trace" to show profiling output', false, true );
430
431 # Save generic options to display them separately in help
432 $this->mGenericParameters = $this->mParams;
433
434 # Script dependant options:
435
436 // If we support a DB, show the options
437 if ( $this->getDbType() > 0 ) {
438 $this->addOption( 'dbuser', 'The DB user to use for this script', false, true );
439 $this->addOption( 'dbpass', 'The password to use for this script', false, true );
440 }
441
442 # Save additional script dependant options to display
443 # them separately in help
444 $this->mDependantParameters = array_diff_key( $this->mParams, $this->mGenericParameters );
445 }
446
447 /**
448 * Run a child maintenance script. Pass all of the current arguments
449 * to it.
450 * @param $maintClass String: a name of a child maintenance class
451 * @param $classFile String: full path of where the child is
452 * @return Maintenance child
453 */
454 public function runChild( $maintClass, $classFile = null ) {
455 // Make sure the class is loaded first
456 if ( !class_exists( $maintClass ) ) {
457 if ( $classFile ) {
458 require_once $classFile;
459 }
460 if ( !class_exists( $maintClass ) ) {
461 $this->error( "Cannot spawn child: $maintClass" );
462 }
463 }
464
465 /**
466 * @var $child Maintenance
467 */
468 $child = new $maintClass();
469 $child->loadParamsAndArgs( $this->mSelf, $this->mOptions, $this->mArgs );
470 if ( !is_null( $this->mDb ) ) {
471 $child->setDB( $this->mDb );
472 }
473 return $child;
474 }
475
476 /**
477 * Do some sanity checking and basic setup
478 */
479 public function setup() {
480 global $IP, $wgCommandLineMode, $wgRequestTime;
481
482 # Abort if called from a web server
483 if ( isset( $_SERVER ) && isset( $_SERVER['REQUEST_METHOD'] ) ) {
484 $this->error( 'This script must be run from the command line', true );
485 }
486
487 if ( $IP === null ) {
488 $this->error( "\$IP not set, aborting!\n" .
489 '(Did you forget to call parent::__construct() in your maintenance script?)', 1 );
490 }
491
492 # Make sure we can handle script parameters
493 if ( !defined( 'HPHP_VERSION' ) && !ini_get( 'register_argc_argv' ) ) {
494 $this->error( 'Cannot get command line arguments, register_argc_argv is set to false', true );
495 }
496
497 // Send PHP warnings and errors to stderr instead of stdout.
498 // This aids in diagnosing problems, while keeping messages
499 // out of redirected output.
500 if ( ini_get( 'display_errors' ) ) {
501 ini_set( 'display_errors', 'stderr' );
502 }
503
504 $this->loadParamsAndArgs();
505 $this->maybeHelp();
506
507 # Set the memory limit
508 # Note we need to set it again later in cache LocalSettings changed it
509 $this->adjustMemoryLimit();
510
511 # Set max execution time to 0 (no limit). PHP.net says that
512 # "When running PHP from the command line the default setting is 0."
513 # But sometimes this doesn't seem to be the case.
514 ini_set( 'max_execution_time', 0 );
515
516 $wgRequestTime = microtime( true );
517
518 # Define us as being in MediaWiki
519 define( 'MEDIAWIKI', true );
520
521 $wgCommandLineMode = true;
522
523 # Turn off output buffering if it's on
524 while ( ob_get_level() > 0 ) {
525 ob_end_flush();
526 }
527
528 $this->validateParamsAndArgs();
529 }
530
531 /**
532 * Normally we disable the memory_limit when running admin scripts.
533 * Some scripts may wish to actually set a limit, however, to avoid
534 * blowing up unexpectedly. We also support a --memory-limit option,
535 * to allow sysadmins to explicitly set one if they'd prefer to override
536 * defaults (or for people using Suhosin which yells at you for trying
537 * to disable the limits)
538 * @return string
539 */
540 public function memoryLimit() {
541 $limit = $this->getOption( 'memory-limit', 'max' );
542 $limit = trim( $limit, "\" '" ); // trim quotes in case someone misunderstood
543 return $limit;
544 }
545
546 /**
547 * Adjusts PHP's memory limit to better suit our needs, if needed.
548 */
549 protected function adjustMemoryLimit() {
550 $limit = $this->memoryLimit();
551 if ( $limit == 'max' ) {
552 $limit = -1; // no memory limit
553 }
554 if ( $limit != 'default' ) {
555 ini_set( 'memory_limit', $limit );
556 }
557 }
558
559 /**
560 * Clear all params and arguments.
561 */
562 public function clearParamsAndArgs() {
563 $this->mOptions = array();
564 $this->mArgs = array();
565 $this->mInputLoaded = false;
566 }
567
568 /**
569 * Process command line arguments
570 * $mOptions becomes an array with keys set to the option names
571 * $mArgs becomes a zero-based array containing the non-option arguments
572 *
573 * @param $self String The name of the script, if any
574 * @param $opts Array An array of options, in form of key=>value
575 * @param $args Array An array of command line arguments
576 */
577 public function loadParamsAndArgs( $self = null, $opts = null, $args = null ) {
578 # If we were given opts or args, set those and return early
579 if ( $self ) {
580 $this->mSelf = $self;
581 $this->mInputLoaded = true;
582 }
583 if ( $opts ) {
584 $this->mOptions = $opts;
585 $this->mInputLoaded = true;
586 }
587 if ( $args ) {
588 $this->mArgs = $args;
589 $this->mInputLoaded = true;
590 }
591
592 # If we've already loaded input (either by user values or from $argv)
593 # skip on loading it again. The array_shift() will corrupt values if
594 # it's run again and again
595 if ( $this->mInputLoaded ) {
596 $this->loadSpecialVars();
597 return;
598 }
599
600 global $argv;
601 $this->mSelf = array_shift( $argv );
602
603 $options = array();
604 $args = array();
605
606 # Parse arguments
607 for ( $arg = reset( $argv ); $arg !== false; $arg = next( $argv ) ) {
608 if ( $arg == '--' ) {
609 # End of options, remainder should be considered arguments
610 $arg = next( $argv );
611 while ( $arg !== false ) {
612 $args[] = $arg;
613 $arg = next( $argv );
614 }
615 break;
616 } elseif ( substr( $arg, 0, 2 ) == '--' ) {
617 # Long options
618 $option = substr( $arg, 2 );
619 if ( array_key_exists( $option, $options ) ) {
620 $this->error( "\nERROR: $option parameter given twice\n" );
621 $this->maybeHelp( true );
622 }
623 if ( isset( $this->mParams[$option] ) && $this->mParams[$option]['withArg'] ) {
624 $param = next( $argv );
625 if ( $param === false ) {
626 $this->error( "\nERROR: $option parameter needs a value after it\n" );
627 $this->maybeHelp( true );
628 }
629 $options[$option] = $param;
630 } else {
631 $bits = explode( '=', $option, 2 );
632 if ( count( $bits ) > 1 ) {
633 $option = $bits[0];
634 $param = $bits[1];
635 } else {
636 $param = 1;
637 }
638 $options[$option] = $param;
639 }
640 } elseif ( substr( $arg, 0, 1 ) == '-' ) {
641 # Short options
642 for ( $p = 1; $p < strlen( $arg ); $p++ ) {
643 $option = $arg { $p };
644 if ( !isset( $this->mParams[$option] ) && isset( $this->mShortParamsMap[$option] ) ) {
645 $option = $this->mShortParamsMap[$option];
646 }
647 if ( array_key_exists( $option, $options ) ) {
648 $this->error( "\nERROR: $option parameter given twice\n" );
649 $this->maybeHelp( true );
650 }
651 if ( isset( $this->mParams[$option]['withArg'] ) && $this->mParams[$option]['withArg'] ) {
652 $param = next( $argv );
653 if ( $param === false ) {
654 $this->error( "\nERROR: $option parameter needs a value after it\n" );
655 $this->maybeHelp( true );
656 }
657 $options[$option] = $param;
658 } else {
659 $options[$option] = 1;
660 }
661 }
662 } else {
663 $args[] = $arg;
664 }
665 }
666
667 $this->mOptions = $options;
668 $this->mArgs = $args;
669 $this->loadSpecialVars();
670 $this->mInputLoaded = true;
671 }
672
673 /**
674 * Run some validation checks on the params, etc
675 */
676 protected function validateParamsAndArgs() {
677 $die = false;
678 # Check to make sure we've got all the required options
679 foreach ( $this->mParams as $opt => $info ) {
680 if ( $info['require'] && !$this->hasOption( $opt ) ) {
681 $this->error( "Param $opt required!" );
682 $die = true;
683 }
684 }
685 # Check arg list too
686 foreach ( $this->mArgList as $k => $info ) {
687 if ( $info['require'] && !$this->hasArg( $k ) ) {
688 $this->error( 'Argument <' . $info['name'] . '> required!' );
689 $die = true;
690 }
691 }
692
693 if ( $die ) {
694 $this->maybeHelp( true );
695 }
696 }
697
698 /**
699 * Handle the special variables that are global to all scripts
700 */
701 protected function loadSpecialVars() {
702 if ( $this->hasOption( 'dbuser' ) ) {
703 $this->mDbUser = $this->getOption( 'dbuser' );
704 }
705 if ( $this->hasOption( 'dbpass' ) ) {
706 $this->mDbPass = $this->getOption( 'dbpass' );
707 }
708 if ( $this->hasOption( 'quiet' ) ) {
709 $this->mQuiet = true;
710 }
711 if ( $this->hasOption( 'batch-size' ) ) {
712 $this->mBatchSize = intval( $this->getOption( 'batch-size' ) );
713 }
714 }
715
716 /**
717 * Maybe show the help.
718 * @param $force boolean Whether to force the help to show, default false
719 */
720 protected function maybeHelp( $force = false ) {
721 if ( !$force && !$this->hasOption( 'help' ) ) {
722 return;
723 }
724
725 $screenWidth = 80; // TODO: Caculate this!
726 $tab = " ";
727 $descWidth = $screenWidth - ( 2 * strlen( $tab ) );
728
729 ksort( $this->mParams );
730 $this->mQuiet = false;
731
732 // Description ...
733 if ( $this->mDescription ) {
734 $this->output( "\n" . $this->mDescription . "\n" );
735 }
736 $output = "\nUsage: php " . basename( $this->mSelf );
737
738 // ... append parameters ...
739 if ( $this->mParams ) {
740 $output .= " [--" . implode( array_keys( $this->mParams ), "|--" ) . "]";
741 }
742
743 // ... and append arguments.
744 if ( $this->mArgList ) {
745 $output .= ' ';
746 foreach ( $this->mArgList as $k => $arg ) {
747 if ( $arg['require'] ) {
748 $output .= '<' . $arg['name'] . '>';
749 } else {
750 $output .= '[' . $arg['name'] . ']';
751 }
752 if ( $k < count( $this->mArgList ) - 1 ) {
753 $output .= ' ';
754 }
755 }
756 }
757 $this->output( "$output\n\n" );
758
759 # TODO abstract some repetitive code below
760
761 // Generic parameters
762 $this->output( "Generic maintenance parameters:\n" );
763 foreach ( $this->mGenericParameters as $par => $info ) {
764 if ( $info['shortName'] !== false ) {
765 $par .= " (-{$info['shortName']})";
766 }
767 $this->output(
768 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
769 "\n$tab$tab" ) . "\n"
770 );
771 }
772 $this->output( "\n" );
773
774 $scriptDependantParams = $this->mDependantParameters;
775 if ( count( $scriptDependantParams ) > 0 ) {
776 $this->output( "Script dependant parameters:\n" );
777 // Parameters description
778 foreach ( $scriptDependantParams as $par => $info ) {
779 if ( $info['shortName'] !== false ) {
780 $par .= " (-{$info['shortName']})";
781 }
782 $this->output(
783 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
784 "\n$tab$tab" ) . "\n"
785 );
786 }
787 $this->output( "\n" );
788 }
789
790
791 // Script specific parameters not defined on construction by
792 // Maintenance::addDefaultParams()
793 $scriptSpecificParams = array_diff_key(
794 # all script parameters:
795 $this->mParams,
796 # remove the Maintenance default parameters:
797 $this->mGenericParameters,
798 $this->mDependantParameters
799 );
800 if ( count( $scriptSpecificParams ) > 0 ) {
801 $this->output( "Script specific parameters:\n" );
802 // Parameters description
803 foreach ( $scriptSpecificParams as $par => $info ) {
804 if ( $info['shortName'] !== false ) {
805 $par .= " (-{$info['shortName']})";
806 }
807 $this->output(
808 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
809 "\n$tab$tab" ) . "\n"
810 );
811 }
812 $this->output( "\n" );
813 }
814
815 // Print arguments
816 if ( count( $this->mArgList ) > 0 ) {
817 $this->output( "Arguments:\n" );
818 // Arguments description
819 foreach ( $this->mArgList as $info ) {
820 $openChar = $info['require'] ? '<' : '[';
821 $closeChar = $info['require'] ? '>' : ']';
822 $this->output(
823 wordwrap( "$tab$openChar" . $info['name'] . "$closeChar: " .
824 $info['desc'], $descWidth, "\n$tab$tab" ) . "\n"
825 );
826 }
827 $this->output( "\n" );
828 }
829
830 die( 1 );
831 }
832
833 /**
834 * Handle some last-minute setup here.
835 */
836 public function finalSetup() {
837 global $wgCommandLineMode, $wgShowSQLErrors, $wgServer;
838 global $wgDBadminuser, $wgDBadminpassword;
839 global $wgDBuser, $wgDBpassword, $wgDBservers, $wgLBFactoryConf;
840
841 # Turn off output buffering again, it might have been turned on in the settings files
842 if ( ob_get_level() ) {
843 ob_end_flush();
844 }
845 # Same with these
846 $wgCommandLineMode = true;
847
848 # Override $wgServer
849 if ( $this->hasOption( 'server' ) ) {
850 $wgServer = $this->getOption( 'server', $wgServer );
851 }
852
853 # If these were passed, use them
854 if ( $this->mDbUser ) {
855 $wgDBadminuser = $this->mDbUser;
856 }
857 if ( $this->mDbPass ) {
858 $wgDBadminpassword = $this->mDbPass;
859 }
860
861 if ( $this->getDbType() == self::DB_ADMIN && isset( $wgDBadminuser ) ) {
862 $wgDBuser = $wgDBadminuser;
863 $wgDBpassword = $wgDBadminpassword;
864
865 if ( $wgDBservers ) {
866 /**
867 * @var $wgDBservers array
868 */
869 foreach ( $wgDBservers as $i => $server ) {
870 $wgDBservers[$i]['user'] = $wgDBuser;
871 $wgDBservers[$i]['password'] = $wgDBpassword;
872 }
873 }
874 if ( isset( $wgLBFactoryConf['serverTemplate'] ) ) {
875 $wgLBFactoryConf['serverTemplate']['user'] = $wgDBuser;
876 $wgLBFactoryConf['serverTemplate']['password'] = $wgDBpassword;
877 }
878 LBFactory::destroyInstance();
879 }
880
881 $this->afterFinalSetup();
882
883 $wgShowSQLErrors = true;
884 @set_time_limit( 0 );
885 $this->adjustMemoryLimit();
886
887 // Per-script profiling; useful for debugging
888 $forcedProfiler = $this->getOption( 'profiler' );
889 if ( $forcedProfiler === 'text' ) {
890 Profiler::setInstance( new ProfilerSimpleText( array() ) );
891 Profiler::instance()->setTemplated( true );
892 } elseif ( $forcedProfiler === 'trace' ) {
893 Profiler::setInstance( new ProfilerSimpleTrace( array() ) );
894 Profiler::instance()->setTemplated( true );
895 }
896 }
897
898 /**
899 * Execute a callback function at the end of initialisation
900 */
901 protected function afterFinalSetup() {
902 if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
903 call_user_func( MW_CMDLINE_CALLBACK );
904 }
905 }
906
907 /**
908 * Potentially debug globals. Originally a feature only
909 * for refreshLinks
910 */
911 public function globals() {
912 if ( $this->hasOption( 'globals' ) ) {
913 print_r( $GLOBALS );
914 }
915 }
916
917 /**
918 * Generic setup for most installs. Returns the location of LocalSettings
919 * @return String
920 */
921 public function loadSettings() {
922 global $wgCommandLineMode, $IP;
923
924 if ( isset( $this->mOptions['conf'] ) ) {
925 $settingsFile = $this->mOptions['conf'];
926 } elseif ( defined( "MW_CONFIG_FILE" ) ) {
927 $settingsFile = MW_CONFIG_FILE;
928 } else {
929 $settingsFile = "$IP/LocalSettings.php";
930 }
931 if ( isset( $this->mOptions['wiki'] ) ) {
932 $bits = explode( '-', $this->mOptions['wiki'] );
933 if ( count( $bits ) == 1 ) {
934 $bits[] = '';
935 }
936 define( 'MW_DB', $bits[0] );
937 define( 'MW_PREFIX', $bits[1] );
938 }
939
940 if ( !is_readable( $settingsFile ) ) {
941 $this->error( "A copy of your installation's LocalSettings.php\n" .
942 "must exist and be readable in the source directory.\n" .
943 "Use --conf to specify it.", true );
944 }
945 $wgCommandLineMode = true;
946 return $settingsFile;
947 }
948
949 /**
950 * Support function for cleaning up redundant text records
951 * @param $delete Boolean: whether or not to actually delete the records
952 * @author Rob Church <robchur@gmail.com>
953 */
954 public function purgeRedundantText( $delete = true ) {
955 # Data should come off the master, wrapped in a transaction
956 $dbw = $this->getDB( DB_MASTER );
957 $dbw->begin( __METHOD__ );
958
959 # Get "active" text records from the revisions table
960 $this->output( 'Searching for active text records in revisions table...' );
961 $res = $dbw->select( 'revision', 'rev_text_id', array(), __METHOD__, array( 'DISTINCT' ) );
962 foreach ( $res as $row ) {
963 $cur[] = $row->rev_text_id;
964 }
965 $this->output( "done.\n" );
966
967 # Get "active" text records from the archive table
968 $this->output( 'Searching for active text records in archive table...' );
969 $res = $dbw->select( 'archive', 'ar_text_id', array(), __METHOD__, array( 'DISTINCT' ) );
970 foreach ( $res as $row ) {
971 # old pre-MW 1.5 records can have null ar_text_id's.
972 if ( $row->ar_text_id !== null ) {
973 $cur[] = $row->ar_text_id;
974 }
975 }
976 $this->output( "done.\n" );
977
978 # Get the IDs of all text records not in these sets
979 $this->output( 'Searching for inactive text records...' );
980 $cond = 'old_id NOT IN ( ' . $dbw->makeList( $cur ) . ' )';
981 $res = $dbw->select( 'text', 'old_id', array( $cond ), __METHOD__, array( 'DISTINCT' ) );
982 $old = array();
983 foreach ( $res as $row ) {
984 $old[] = $row->old_id;
985 }
986 $this->output( "done.\n" );
987
988 # Inform the user of what we're going to do
989 $count = count( $old );
990 $this->output( "$count inactive items found.\n" );
991
992 # Delete as appropriate
993 if ( $delete && $count ) {
994 $this->output( 'Deleting...' );
995 $dbw->delete( 'text', array( 'old_id' => $old ), __METHOD__ );
996 $this->output( "done.\n" );
997 }
998
999 # Done
1000 $dbw->commit( __METHOD__ );
1001 }
1002
1003 /**
1004 * Get the maintenance directory.
1005 * @return string
1006 */
1007 protected function getDir() {
1008 return __DIR__;
1009 }
1010
1011 /**
1012 * Get the list of available maintenance scripts. Note
1013 * that if you call this _before_ calling doMaintenance
1014 * you won't have any extensions in it yet
1015 * @return Array
1016 */
1017 public static function getMaintenanceScripts() {
1018 global $wgMaintenanceScripts;
1019 return $wgMaintenanceScripts + self::getCoreScripts();
1020 }
1021
1022 /**
1023 * Return all of the core maintenance scripts
1024 * @return array
1025 */
1026 protected static function getCoreScripts() {
1027 if ( !self::$mCoreScripts ) {
1028 $paths = array(
1029 __DIR__,
1030 __DIR__ . '/language',
1031 __DIR__ . '/storage',
1032 );
1033 self::$mCoreScripts = array();
1034 foreach ( $paths as $p ) {
1035 $handle = opendir( $p );
1036 while ( ( $file = readdir( $handle ) ) !== false ) {
1037 if ( $file == 'Maintenance.php' ) {
1038 continue;
1039 }
1040 $file = $p . '/' . $file;
1041 if ( is_dir( $file ) || !strpos( $file, '.php' ) ||
1042 ( strpos( file_get_contents( $file ), '$maintClass' ) === false ) ) {
1043 continue;
1044 }
1045 require $file;
1046 $vars = get_defined_vars();
1047 if ( array_key_exists( 'maintClass', $vars ) ) {
1048 self::$mCoreScripts[$vars['maintClass']] = $file;
1049 }
1050 }
1051 closedir( $handle );
1052 }
1053 }
1054 return self::$mCoreScripts;
1055 }
1056
1057 /**
1058 * Returns a database to be used by current maintenance script. It can be set by setDB().
1059 * If not set, wfGetDB() will be used.
1060 * This function has the same parameters as wfGetDB()
1061 *
1062 * @return DatabaseBase
1063 */
1064 protected function &getDB( $db, $groups = array(), $wiki = false ) {
1065 if ( is_null( $this->mDb ) ) {
1066 return wfGetDB( $db, $groups, $wiki );
1067 } else {
1068 return $this->mDb;
1069 }
1070 }
1071
1072 /**
1073 * Sets database object to be returned by getDB().
1074 *
1075 * @param $db DatabaseBase: Database object to be used
1076 */
1077 public function setDB( &$db ) {
1078 $this->mDb = $db;
1079 }
1080
1081 /**
1082 * Lock the search index
1083 * @param &$db DatabaseBase object
1084 */
1085 private function lockSearchindex( &$db ) {
1086 $write = array( 'searchindex' );
1087 $read = array( 'page', 'revision', 'text', 'interwiki', 'l10n_cache', 'user' );
1088 $db->lockTables( $read, $write, __CLASS__ . '::' . __METHOD__ );
1089 }
1090
1091 /**
1092 * Unlock the tables
1093 * @param &$db DatabaseBase object
1094 */
1095 private function unlockSearchindex( &$db ) {
1096 $db->unlockTables( __CLASS__ . '::' . __METHOD__ );
1097 }
1098
1099 /**
1100 * Unlock and lock again
1101 * Since the lock is low-priority, queued reads will be able to complete
1102 * @param &$db DatabaseBase object
1103 */
1104 private function relockSearchindex( &$db ) {
1105 $this->unlockSearchindex( $db );
1106 $this->lockSearchindex( $db );
1107 }
1108
1109 /**
1110 * Perform a search index update with locking
1111 * @param $maxLockTime Integer: the maximum time to keep the search index locked.
1112 * @param $callback callback String: the function that will update the function.
1113 * @param $dbw DatabaseBase object
1114 * @param $results
1115 */
1116 public function updateSearchIndex( $maxLockTime, $callback, $dbw, $results ) {
1117 $lockTime = time();
1118
1119 # Lock searchindex
1120 if ( $maxLockTime ) {
1121 $this->output( " --- Waiting for lock ---" );
1122 $this->lockSearchindex( $dbw );
1123 $lockTime = time();
1124 $this->output( "\n" );
1125 }
1126
1127 # Loop through the results and do a search update
1128 foreach ( $results as $row ) {
1129 # Allow reads to be processed
1130 if ( $maxLockTime && time() > $lockTime + $maxLockTime ) {
1131 $this->output( " --- Relocking ---" );
1132 $this->relockSearchindex( $dbw );
1133 $lockTime = time();
1134 $this->output( "\n" );
1135 }
1136 call_user_func( $callback, $dbw, $row );
1137 }
1138
1139 # Unlock searchindex
1140 if ( $maxLockTime ) {
1141 $this->output( " --- Unlocking --" );
1142 $this->unlockSearchindex( $dbw );
1143 $this->output( "\n" );
1144 }
1145
1146 }
1147
1148 /**
1149 * Update the searchindex table for a given pageid
1150 * @param $dbw DatabaseBase a database write handle
1151 * @param $pageId Integer: the page ID to update.
1152 * @return null|string
1153 */
1154 public function updateSearchIndexForPage( $dbw, $pageId ) {
1155 // Get current revision
1156 $rev = Revision::loadFromPageId( $dbw, $pageId );
1157 $title = null;
1158 if ( $rev ) {
1159 $titleObj = $rev->getTitle();
1160 $title = $titleObj->getPrefixedDBkey();
1161 $this->output( "$title..." );
1162 # Update searchindex
1163 $u = new SearchUpdate( $pageId, $titleObj->getText(), $rev->getContent() );
1164 $u->doUpdate();
1165 $this->output( "\n" );
1166 }
1167 return $title;
1168 }
1169
1170 /**
1171 * Wrapper for posix_isatty()
1172 * We default as considering stdin a tty (for nice readline methods)
1173 * but treating stout as not a tty to avoid color codes
1174 *
1175 * @param $fd int File descriptor
1176 * @return bool
1177 */
1178 public static function posix_isatty( $fd ) {
1179 if ( !function_exists( 'posix_isatty' ) ) {
1180 return !$fd;
1181 } else {
1182 return posix_isatty( $fd );
1183 }
1184 }
1185
1186 /**
1187 * Prompt the console for input
1188 * @param $prompt String what to begin the line with, like '> '
1189 * @return String response
1190 */
1191 public static function readconsole( $prompt = '> ' ) {
1192 static $isatty = null;
1193 if ( is_null( $isatty ) ) {
1194 $isatty = self::posix_isatty( 0 /*STDIN*/ );
1195 }
1196
1197 if ( $isatty && function_exists( 'readline' ) ) {
1198 return readline( $prompt );
1199 } else {
1200 if ( $isatty ) {
1201 $st = self::readlineEmulation( $prompt );
1202 } else {
1203 if ( feof( STDIN ) ) {
1204 $st = false;
1205 } else {
1206 $st = fgets( STDIN, 1024 );
1207 }
1208 }
1209 if ( $st === false ) {
1210 return false;
1211 }
1212 $resp = trim( $st );
1213 return $resp;
1214 }
1215 }
1216
1217 /**
1218 * Emulate readline()
1219 * @param $prompt String what to begin the line with, like '> '
1220 * @return String
1221 */
1222 private static function readlineEmulation( $prompt ) {
1223 $bash = Installer::locateExecutableInDefaultPaths( array( 'bash' ) );
1224 if ( !wfIsWindows() && $bash ) {
1225 $retval = false;
1226 $encPrompt = wfEscapeShellArg( $prompt );
1227 $command = "read -er -p $encPrompt && echo \"\$REPLY\"";
1228 $encCommand = wfEscapeShellArg( $command );
1229 $line = wfShellExec( "$bash -c $encCommand", $retval, array(), array( 'walltime' => 0 ) );
1230
1231 if ( $retval == 0 ) {
1232 return $line;
1233 } elseif ( $retval == 127 ) {
1234 // Couldn't execute bash even though we thought we saw it.
1235 // Shell probably spit out an error message, sorry :(
1236 // Fall through to fgets()...
1237 } else {
1238 // EOF/ctrl+D
1239 return false;
1240 }
1241 }
1242
1243 // Fallback... we'll have no editing controls, EWWW
1244 if ( feof( STDIN ) ) {
1245 return false;
1246 }
1247 print $prompt;
1248 return fgets( STDIN, 1024 );
1249 }
1250 }
1251
1252 /**
1253 * Fake maintenance wrapper, mostly used for the web installer/updater
1254 */
1255 class FakeMaintenance extends Maintenance {
1256 protected $mSelf = "FakeMaintenanceScript";
1257 public function execute() {
1258 return;
1259 }
1260 }
1261
1262 /**
1263 * Class for scripts that perform database maintenance and want to log the
1264 * update in `updatelog` so we can later skip it
1265 */
1266 abstract class LoggedUpdateMaintenance extends Maintenance {
1267 public function __construct() {
1268 parent::__construct();
1269 $this->addOption( 'force', 'Run the update even if it was completed already' );
1270 $this->setBatchSize( 200 );
1271 }
1272
1273 public function execute() {
1274 $db = $this->getDB( DB_MASTER );
1275 $key = $this->getUpdateKey();
1276
1277 if ( !$this->hasOption( 'force' ) &&
1278 $db->selectRow( 'updatelog', '1', array( 'ul_key' => $key ), __METHOD__ ) )
1279 {
1280 $this->output( "..." . $this->updateSkippedMessage() . "\n" );
1281 return true;
1282 }
1283
1284 if ( !$this->doDBUpdates() ) {
1285 return false;
1286 }
1287
1288 if (
1289 $db->insert( 'updatelog', array( 'ul_key' => $key ), __METHOD__, 'IGNORE' ) )
1290 {
1291 return true;
1292 } else {
1293 $this->output( $this->updatelogFailedMessage() . "\n" );
1294 return false;
1295 }
1296 }
1297
1298 /**
1299 * Message to show that the update was done already and was just skipped
1300 * @return String
1301 */
1302 protected function updateSkippedMessage() {
1303 $key = $this->getUpdateKey();
1304 return "Update '{$key}' already logged as completed.";
1305 }
1306
1307 /**
1308 * Message to show the the update log was unable to log the completion of this update
1309 * @return String
1310 */
1311 protected function updatelogFailedMessage() {
1312 $key = $this->getUpdateKey();
1313 return "Unable to log update '{$key}' as completed.";
1314 }
1315
1316 /**
1317 * Do the actual work. All child classes will need to implement this.
1318 * Return true to log the update as done or false (usually on failure).
1319 * @return Bool
1320 */
1321 abstract protected function doDBUpdates();
1322
1323 /**
1324 * Get the update key name to go in the update log table
1325 * @return String
1326 */
1327 abstract protected function getUpdateKey();
1328 }