Go to the documentation of this file.
25 require_once __DIR__ .
'/../includes/PHPVersionCheck.php';
36 define(
'RUN_MAINTENANCE_IF_MAIN', __DIR__ .
'/doMaintenance.php' );
164 $IP = strval( getenv(
'MW_INSTALL_PATH' ) ) !==
''
165 ? getenv(
'MW_INSTALL_PATH' )
166 : realpath( __DIR__ .
'/..' );
169 register_shutdown_function( [ $this,
'outputChanneled' ],
false );
182 if ( !function_exists(
'debug_backtrace' ) ) {
187 $bt = debug_backtrace();
188 $count =
count( $bt );
192 if ( $bt[0][
'class'] !==
self::class || $bt[0][
'function'] !==
'shouldExecute' ) {
195 $includeFuncs = [
'require_once',
'require',
'include',
'include_once' ];
196 for ( $i = 1; $i < $count; $i++ ) {
197 if ( !in_array( $bt[$i][
'function'], $includeFuncs ) ) {
213 abstract public function execute();
222 return isset( $this->mParams[
$name] );
237 $withArg =
false, $shortName =
false, $multiOccurrence =
false
239 $this->mParams[
$name] = [
240 'desc' => $description,
241 'require' => $required,
242 'withArg' => $withArg,
243 'shortName' => $shortName,
244 'multiOccurrence' => $multiOccurrence
247 if ( $shortName !==
false ) {
248 $this->mShortParamsMap[$shortName] =
$name;
258 return isset( $this->mOptions[
$name] );
273 return $this->mOptions[
$name];
276 $this->mOptions[
$name] = $default;
278 return $this->mOptions[
$name];
288 protected function addArg( $arg, $description, $required =
true ) {
289 $this->mArgList[] = [
291 'desc' => $description,
292 'require' => $required
301 unset( $this->mParams[
$name] );
310 $this->mAllowUnregisteredOptions = $allow;
318 $this->mDescription = $text;
326 protected function hasArg( $argId = 0 ) {
327 return isset( $this->mArgs[$argId] );
336 protected function getArg( $argId = 0, $default =
null ) {
337 return $this->
hasArg( $argId ) ? $this->mArgs[$argId] : $default;
356 $this->mBatchSize =
$s;
363 if ( $this->mBatchSize ) {
364 $this->
addOption(
'batch-size',
'Run this many operations ' .
365 'per batch, default: ' . $this->mBatchSize,
false,
true );
366 if ( isset( $this->mParams[
'batch-size'] ) ) {
368 $this->mDependantParameters[
'batch-size'] = $this->mParams[
'batch-size'];
388 if ( $len == self::STDIN_ALL ) {
389 return file_get_contents(
'php://stdin' );
391 $f = fopen(
'php://stdin',
'rt' );
395 $input = fgets( $f, $len );
418 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
419 if ( $stats->getDataCount() > 1000 ) {
424 if ( $this->mQuiet ) {
427 if ( $channel ===
null ) {
431 $out = preg_replace(
'/\n\z/',
'',
$out );
442 protected function error( $err, $die = 0 ) {
443 if ( intval( $die ) !== 0 ) {
449 ( PHP_SAPI ==
'cli' || PHP_SAPI ==
'phpdbg' ) &&
450 !defined(
'MW_PHPUNIT_TEST' )
452 fwrite( STDERR, $err .
"\n" );
466 $this->
error( $msg );
477 if ( !$this->atLineStart ) {
479 $this->atLineStart =
true;
492 if ( $msg ===
false ) {
499 if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
505 $this->atLineStart =
false;
506 if ( $channel ===
null ) {
509 $this->atLineStart =
true;
511 $this->lastChannel = $channel;
532 # Generic (non script dependant) options:
534 $this->
addOption(
'help',
'Display this help message',
false,
false,
'h' );
535 $this->
addOption(
'quiet',
'Whether to suppress non-error output',
false,
false,
'q' );
536 $this->
addOption(
'conf',
'Location of LocalSettings.php, if not default',
false,
true );
537 $this->
addOption(
'wiki',
'For specifying the wiki ID',
false,
true );
538 $this->
addOption(
'globals',
'Output globals at the end of processing for debugging' );
541 'Set a specific memory limit for the script, '
542 .
'"max" for no limit or "default" to avoid changing it',
546 $this->
addOption(
'server',
"The protocol and server name to use in URLs, e.g. " .
547 "http://en.wikipedia.org. This is sometimes necessary because " .
548 "server name detection may fail in command line scripts.",
false,
true );
549 $this->
addOption(
'profiler',
'Profiler output format (usually "text")',
false,
true );
551 $this->
addOption(
'mwdebug',
'Enable built-in MediaWiki development settings',
false,
true );
553 # Save generic options to display them separately in help
556 # Script dependant options:
560 $this->
addOption(
'dbuser',
'The DB user to use for this script',
false,
true );
561 $this->
addOption(
'dbpass',
'The password to use for this script',
false,
true );
562 $this->
addOption(
'dbgroupdefault',
'The default DB group to use.',
false,
true );
565 # Save additional script dependant options to display
566 # Â them separately in help
567 $this->mDependantParameters = array_diff_key( $this->mParams, $this->mGenericParameters );
575 if ( $this->config ===
null ) {
576 $this->config = MediaWikiServices::getInstance()->getMainConfig();
600 $this->requiredExtensions[] =
$name;
611 foreach ( $this->requiredExtensions
as $name ) {
612 if ( !$registry->isLoaded(
$name ) ) {
618 $joined = implode(
', ', $missing );
619 $msg =
"The following extensions are required to be installed "
620 .
"for this script to run: $joined. Please enable them and then try again.";
630 if ( function_exists(
'posix_getpwuid' ) ) {
631 $agent = posix_getpwuid( posix_geteuid() )[
'name'];
637 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
639 $lbFactory->setAgentName(
640 mb_strlen( $agent ) > 15 ? mb_substr( $agent, 0, 15 ) .
'...' : $agent
651 $services = MediaWikiServices::getInstance();
652 $stats =
$services->getStatsdDataFactory();
654 $lbFactory =
$services->getDBLoadBalancerFactory();
655 $lbFactory->setWaitForReplicationListener(
668 $lbFactory->getMainLB()->setTransactionListener(
670 function ( $trigger )
use ( $stats,
$config ) {
672 if (
$config->
get(
'CommandLineMode' ) && $trigger === IDatabase::TRIGGER_COMMIT ) {
692 require_once $classFile;
695 $this->
error(
"Cannot spawn child: $maintClass" );
703 $child->loadParamsAndArgs( $this->mSelf, $this->mOptions, $this->mArgs );
704 if ( !is_null( $this->mDb ) ) {
705 $child->setDB( $this->mDb );
717 # Abort if called from a web server
718 # wfIsCLI() is not available yet
719 if ( PHP_SAPI !==
'cli' && PHP_SAPI !==
'phpdbg' ) {
720 $this->
fatalError(
'This script must be run from the command line' );
723 if ( $IP ===
null ) {
724 $this->
fatalError(
"\$IP not set, aborting!\n" .
725 '(Did you forget to call parent::__construct() in your maintenance script?)' );
728 # Make sure we can handle script parameters
729 if ( !defined(
'HPHP_VERSION' ) && !ini_get(
'register_argc_argv' ) ) {
730 $this->
fatalError(
'Cannot get command line arguments, register_argc_argv is set to false' );
736 if ( ini_get(
'display_errors' ) ) {
737 ini_set(
'display_errors',
'stderr' );
743 # Set the memory limit
744 # Note we need to set it again later in cache LocalSettings changed it
747 # Set max execution time to 0 (no limit). PHP.net says that
748 # "When running PHP from the command line the default setting is 0."
749 # But sometimes this doesn't seem to be the case.
750 ini_set(
'max_execution_time', 0 );
752 # Define us as being in MediaWiki
753 define(
'MEDIAWIKI',
true );
757 # Turn off output buffering if it's on
758 while ( ob_get_level() > 0 ) {
775 $limit = $this->
getOption(
'memory-limit',
'max' );
776 $limit = trim( $limit,
"\" '" );
785 if ( $limit ==
'max' ) {
788 if ( $limit !=
'default' ) {
789 ini_set(
'memory_limit', $limit );
807 $profiler =
new $class(
808 [
'sampling' => 1,
'output' => [
$output ] ]
812 $profiler->setTemplated(
true );
817 $trxProfiler->setLogger( LoggerFactory::getInstance(
'DBPerformance' ) );
825 $this->mOptions = [];
827 $this->mInputLoaded =
false;
840 $this->orderedOptions = [];
843 for ( $arg = reset( $argv ); $arg !==
false; $arg = next( $argv ) ) {
844 if ( $arg ==
'--' ) {
845 # End of options, remainder should be considered arguments
846 $arg = next( $argv );
847 while ( $arg !==
false ) {
849 $arg = next( $argv );
852 } elseif ( substr( $arg, 0, 2 ) ==
'--' ) {
854 $option = substr( $arg, 2 );
855 if ( isset( $this->mParams[$option] ) && $this->mParams[$option][
'withArg'] ) {
856 $param = next( $argv );
857 if ( $param ===
false ) {
858 $this->
error(
"\nERROR: $option parameter needs a value after it\n" );
864 $bits = explode(
'=', $option, 2 );
865 if (
count( $bits ) > 1 ) {
874 } elseif ( $arg ==
'-' ) {
875 # Lonely "-", often used to indicate stdin or stdout.
877 } elseif ( substr( $arg, 0, 1 ) ==
'-' ) {
879 $argLength = strlen( $arg );
880 for ( $p = 1; $p < $argLength; $p++ ) {
882 if ( !isset( $this->mParams[$option] ) && isset( $this->mShortParamsMap[$option] ) ) {
883 $option = $this->mShortParamsMap[$option];
886 if ( isset( $this->mParams[$option][
'withArg'] ) && $this->mParams[$option][
'withArg'] ) {
887 $param = next( $argv );
888 if ( $param ===
false ) {
889 $this->
error(
"\nERROR: $option parameter needs a value after it\n" );
903 $this->mArgs =
$args;
905 $this->mInputLoaded =
true;
921 $this->orderedOptions[] = [ $option,
$value ];
923 if ( isset( $this->mParams[$option] ) ) {
924 $multi = $this->mParams[$option][
'multiOccurrence'];
928 $exists = array_key_exists( $option,
$options );
929 if ( $multi && $exists ) {
931 } elseif ( $multi ) {
933 } elseif ( !$exists ) {
936 $this->
error(
"\nERROR: $option parameter given twice\n" );
951 # If we were given opts or args, set those and return early
953 $this->mSelf =
$self;
954 $this->mInputLoaded =
true;
957 $this->mOptions = $opts;
958 $this->mInputLoaded =
true;
961 $this->mArgs =
$args;
962 $this->mInputLoaded =
true;
965 # If we've already loaded input (either by user values or from $argv)
966 # skip on loading it again. The array_shift() will corrupt values if
967 # it's run again and again
968 if ( $this->mInputLoaded ) {
975 $this->mSelf = $argv[0];
984 # Check to make sure we've got all the required options
985 foreach ( $this->mParams
as $opt => $info ) {
987 $this->
error(
"Param $opt required!" );
992 foreach ( $this->mArgList
as $k => $info ) {
993 if ( $info[
'require'] && !$this->
hasArg( $k ) ) {
994 $this->
error(
'Argument <' . $info[
'name'] .
'> required!' );
998 if ( !$this->mAllowUnregisteredOptions ) {
999 # Check for unexpected options
1000 foreach ( $this->mOptions
as $opt => $val ) {
1002 $this->
error(
"Unexpected option $opt!" );
1018 $this->mDbUser = $this->
getOption(
'dbuser' );
1021 $this->mDbPass = $this->
getOption(
'dbpass' );
1024 $this->mQuiet =
true;
1026 if ( $this->
hasOption(
'batch-size' ) ) {
1027 $this->mBatchSize = intval( $this->
getOption(
'batch-size' ) );
1036 if ( !$force && !$this->
hasOption(
'help' ) ) {
1042 $descWidth = $screenWidth - ( 2 * strlen( $tab ) );
1044 ksort( $this->mParams );
1045 $this->mQuiet =
false;
1048 if ( $this->mDescription ) {
1049 $this->
output(
"\n" . wordwrap( $this->mDescription, $screenWidth ) .
"\n" );
1051 $output =
"\nUsage: php " . basename( $this->mSelf );
1054 if ( $this->mParams ) {
1055 $output .=
" [--" . implode(
"|--", array_keys( $this->mParams ) ) .
"]";
1059 if ( $this->mArgList ) {
1061 foreach ( $this->mArgList
as $k => $arg ) {
1062 if ( $arg[
'require'] ) {
1063 $output .=
'<' . $arg[
'name'] .
'>';
1065 $output .=
'[' . $arg[
'name'] .
']';
1067 if ( $k <
count( $this->mArgList ) - 1 ) {
1072 $this->
output(
"$output\n\n" );
1074 # TODO abstract some repetitive code below
1077 $this->
output(
"Generic maintenance parameters:\n" );
1078 foreach ( $this->mGenericParameters
as $par => $info ) {
1079 if ( $info[
'shortName'] !==
false ) {
1080 $par .=
" (-{$info['shortName']})";
1083 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1084 "\n$tab$tab" ) .
"\n"
1090 if (
count( $scriptDependantParams ) > 0 ) {
1091 $this->
output(
"Script dependant parameters:\n" );
1093 foreach ( $scriptDependantParams
as $par => $info ) {
1094 if ( $info[
'shortName'] !==
false ) {
1095 $par .=
" (-{$info['shortName']})";
1098 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1099 "\n$tab$tab" ) .
"\n"
1107 $scriptSpecificParams = array_diff_key(
1111 $this->mGenericParameters,
1112 $this->mDependantParameters
1114 if (
count( $scriptSpecificParams ) > 0 ) {
1115 $this->
output(
"Script specific parameters:\n" );
1117 foreach ( $scriptSpecificParams
as $par => $info ) {
1118 if ( $info[
'shortName'] !==
false ) {
1119 $par .=
" (-{$info['shortName']})";
1122 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1123 "\n$tab$tab" ) .
"\n"
1130 if (
count( $this->mArgList ) > 0 ) {
1131 $this->
output(
"Arguments:\n" );
1133 foreach ( $this->mArgList
as $info ) {
1134 $openChar = $info[
'require'] ?
'<' :
'[';
1135 $closeChar = $info[
'require'] ?
'>' :
']';
1137 wordwrap(
"$tab$openChar" . $info[
'name'] .
"$closeChar: " .
1138 $info[
'desc'], $descWidth,
"\n$tab$tab" ) .
"\n"
1155 # Turn off output buffering again, it might have been turned on in the settings files
1156 if ( ob_get_level() ) {
1162 # Override $wgServer
1164 $wgServer = $this->
getOption(
'server', $wgServer );
1167 # If these were passed, use them
1168 if ( $this->mDbUser ) {
1171 if ( $this->mDbPass ) {
1174 if ( $this->
hasOption(
'dbgroupdefault' ) ) {
1175 $wgDBDefaultGroup = $this->
getOption(
'dbgroupdefault',
null );
1177 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->destroy();
1197 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->destroy();
1200 # Apply debug settings
1202 require __DIR__ .
'/../includes/DevelopmentSettings.php';
1210 $wgShowExceptionDetails =
true;
1213 Wikimedia\suppressWarnings();
1214 set_time_limit( 0 );
1215 Wikimedia\restoreWarnings();
1224 if ( defined(
'MW_CMDLINE_CALLBACK' ) ) {
1225 call_user_func( MW_CMDLINE_CALLBACK );
1246 if ( isset( $this->mOptions[
'conf'] ) ) {
1247 $settingsFile = $this->mOptions[
'conf'];
1248 } elseif ( defined(
"MW_CONFIG_FILE" ) ) {
1249 $settingsFile = MW_CONFIG_FILE;
1251 $settingsFile =
"$IP/LocalSettings.php";
1253 if ( isset( $this->mOptions[
'wiki'] ) ) {
1254 $bits = explode(
'-', $this->mOptions[
'wiki'] );
1255 if (
count( $bits ) == 1 ) {
1258 define(
'MW_DB', $bits[0] );
1259 define(
'MW_PREFIX', $bits[1] );
1260 } elseif ( isset( $this->mOptions[
'server'] ) ) {
1265 $_SERVER[
'SERVER_NAME'] = $this->mOptions[
'server'];
1268 if ( !is_readable( $settingsFile ) ) {
1269 $this->
fatalError(
"A copy of your installation's LocalSettings.php\n" .
1270 "must exist and be readable in the source directory.\n" .
1271 "Use --conf to specify it." );
1273 $wgCommandLineMode =
true;
1275 return $settingsFile;
1284 # Data should come off the master, wrapped in a transaction
1288 # Get "active" text records from the revisions table
1290 $this->
output(
'Searching for active text records in revisions table...' );
1291 $res = $dbw->select(
'revision',
'rev_text_id', [], __METHOD__, [
'DISTINCT' ] );
1292 foreach (
$res as $row ) {
1293 $cur[] = $row->rev_text_id;
1295 $this->
output(
"done.\n" );
1297 # Get "active" text records from the archive table
1298 $this->
output(
'Searching for active text records in archive table...' );
1299 $res = $dbw->select(
'archive',
'ar_text_id', [], __METHOD__, [
'DISTINCT' ] );
1300 foreach (
$res as $row ) {
1301 # old pre-MW 1.5 records can have null ar_text_id's.
1302 if ( $row->ar_text_id !==
null ) {
1303 $cur[] = $row->ar_text_id;
1306 $this->
output(
"done.\n" );
1308 # Get the IDs of all text records not in these sets
1309 $this->
output(
'Searching for inactive text records...' );
1310 $cond =
'old_id NOT IN ( ' . $dbw->makeList( $cur ) .
' )';
1311 $res = $dbw->select(
'text',
'old_id', [ $cond ], __METHOD__, [
'DISTINCT' ] );
1313 foreach (
$res as $row ) {
1314 $old[] = $row->old_id;
1316 $this->
output(
"done.\n" );
1318 # Inform the user of what we're going to do
1319 $count =
count( $old );
1320 $this->
output(
"$count inactive items found.\n" );
1322 # Delete as appropriate
1323 if ( $delete && $count ) {
1324 $this->
output(
'Deleting...' );
1325 $dbw->delete(
'text', [
'old_id' => $old ], __METHOD__ );
1326 $this->
output(
"done.\n" );
1351 protected function getDB( $db, $groups = [], $wiki =
false ) {
1352 if ( is_null( $this->mDb ) ) {
1353 return wfGetDB( $db, $groups, $wiki );
1395 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
1396 $waitSucceeded = $lbFactory->waitForReplication(
1397 [
'timeout' => 30,
'ifWritesSince' => $this->lastReplicationWait ]
1399 $this->lastReplicationWait = microtime(
true );
1400 return $waitSucceeded;
1422 $write = [
'searchindex' ];
1432 $db->lockTables( $read, $write, __CLASS__ .
'::' . __METHOD__ );
1440 $db->unlockTables( __CLASS__ .
'::' . __METHOD__ );
1464 if ( $maxLockTime ) {
1465 $this->
output(
" --- Waiting for lock ---" );
1471 # Loop through the results and do a search update
1472 foreach ( $results
as $row ) {
1473 # Allow reads to be processed
1474 if ( $maxLockTime && time() > $lockTime + $maxLockTime ) {
1475 $this->
output(
" --- Relocking ---" );
1480 call_user_func( $callback, $dbw, $row );
1483 # Unlock searchindex
1484 if ( $maxLockTime ) {
1485 $this->
output(
" --- Unlocking --" );
1502 $titleObj =
$rev->getTitle();
1503 $title = $titleObj->getPrefixedDBkey();
1504 $this->
output(
"$title..." );
1505 # Update searchindex
1506 $u =
new SearchUpdate( $pageId, $titleObj->getText(),
$rev->getContent() );
1528 for ( $i = $seconds; $i >= 0; $i-- ) {
1529 if ( $i != $seconds ) {
1530 $this->
output( str_repeat(
"\x08", strlen( $i + 1 ) ) );
1549 if ( !function_exists(
'posix_isatty' ) ) {
1562 static $isatty =
null;
1563 if ( is_null( $isatty ) ) {
1567 if ( $isatty && function_exists(
'readline' ) ) {
1568 return readline( $prompt );
1573 if ( feof( STDIN ) ) {
1576 $st = fgets( STDIN, 1024 );
1579 if ( $st ===
false ) {
1582 $resp = trim( $st );
1598 $command =
"read -er -p $encPrompt && echo \"\$REPLY\"";
1615 if ( feof( STDIN ) ) {
1620 return fgets( STDIN, 1024 );
1631 $default = [ 80, 50 ];
1635 if ( Shell::isDisabled() ) {
1645 $result = Shell::command(
'stty',
'size' )
1647 if (
$result->getExitCode() !== 0 ) {
1650 if ( !preg_match(
'/^(\d+) (\d+)$/',
$result->getStdout(), $m ) ) {
1653 return [ intval( $m[2] ), intval( $m[1] ) ];
1661 require_once __DIR__ .
'/../tests/common/TestsAutoLoader.php';
1681 parent::__construct();
1682 $this->
addOption(
'force',
'Run the update even if it was completed already' );
1691 && $db->selectRow(
'updatelog',
'1', [
'ul_key' => $key ], __METHOD__ )
1702 if ( $db->insert(
'updatelog', [
'ul_key' => $key ], __METHOD__,
'IGNORE' ) ) {
1718 return "Update '{$key}' already logged as completed.";
1728 return "Unable to log update '{$key}' as completed.";
$wgProfileLimit
Only record profiling info for pages that took longer than this.
const RUN_MAINTENANCE_IF_MAIN
int $mBatchSize
Batch size.
__construct()
Default constructor.
setParam(&$options, $option, $value)
Helper function used solely by loadParamsAndArgs to prevent code duplication.
static getTermSize()
Get the terminal size as a two-element array where the first element is the width (number of columns)...
getStdin( $len=null)
Return input from stdin.
static replaceStubInstance(Profiler $profiler)
Replace the current profiler with $profiler if no non-stub profiler is set.
static instance()
Singleton.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
maybeHelp( $force=false)
Maybe show the help.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addDescription( $text)
Set the description text.
setup()
Do some sanity checking and basic setup.
array $requiredExtensions
runChild( $maintClass, $classFile=null)
Run a child maintenance script.
static setLBFactoryTriggers(LBFactory $LBFactory, Config $config)
static readconsole( $prompt='> ')
Prompt the console for input.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
$mAllowUnregisteredOptions
loadParamsAndArgs( $self=null, $opts=null, $args=null)
Process command line arguments $mOptions becomes an array with keys set to the option names $mArgs be...
relockSearchindex( $db)
Unlock and lock again Since the lock is low-priority, queued reads will be able to complete.
getName()
Get the script's name.
wfHostname()
Fetch server name for use in error reporting etc.
$wgLBFactoryConf
Load balancer factory configuration To set up a multi-master wiki farm, set the class here to somethi...
hasArg( $argId=0)
Does a given argument exist?
setDB(IDatabase $db)
Sets database object to be returned by getDB().
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
setConfig(Config $config)
$wgDBpassword
Database user's password.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
loadWithArgv( $argv)
Load params and arguments from a given array of command-line arguments.
checkRequiredExtensions()
Verify that the required extensions are installed.
script(document.cookie)%253c/script%253e</pre ></div > !! end !! test XSS is escaped(inline) !!input< source lang
finalSetup()
Handle some last-minute setup here.
rollbackTransaction(IDatabase $dbw, $fname)
Rollback the transcation on a DB handle.
wfEntryPointCheck( $entryPoint)
Check php version and that external dependencies are installed, and display an informative error if e...
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
afterFinalSetup()
Execute a callback function at the end of initialisation.
$wgDBadminuser
Separate username for maintenance tasks.
unlockSearchindex( $db)
Unlock the tables.
clearParamsAndArgs()
Clear all params and arguments.
Interface for configuration instances.
$wgDBservers
Database load balancer This is a two-dimensional array, an array of server info structures Fields are...
$wgDBDefaultGroup
Default group to use when getting database connections.
updateSearchIndex( $maxLockTime, $callback, $dbw, $results)
Perform a search index update with locking.
$wgProfiler
Profiler configuration.
namespace and then decline to actually register it file or subcat img or subcat $title
loadSpecialVars()
Handle the special variables that are global to all scripts.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
float $lastReplicationWait
UNIX timestamp.
if(is_array( $mode)) switch( $mode) $input
global $wgCommandLineMode
static loadFromPageId( $db, $pageid, $id=0)
Load either the current, or a specified, revision that's attached to a given page.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
requireExtension( $name)
Indicate that the specified extension must be loaded before the script can run.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
array $orderedOptions
Used to read the options in the order they were passed.
globals()
Potentially debug globals.
updatelogFailedMessage()
Message to show that the update log was unable to log the completion of this update.
Fake maintenance wrapper, mostly used for the web installer/updater.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
addDefaultParams()
Add the default parameters to the scripts.
static readlineEmulation( $prompt)
Emulate readline()
countDown( $seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
deleteOption( $name)
Remove an option.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
static shouldExecute()
Should we execute the maintenance script, or just allow it to be included as a standalone class?...
Allows to change the fields on the form that will be generated $name
execute()
Do the actual work.
updateSearchIndexForPage( $dbw, $pageId)
Update the searchindex table for a given pageid.
supportsOption( $name)
Checks to see if a particular option in supported.
activateProfiler()
Activate the profiler (assuming $wgProfiler is set)
static tryOpportunisticExecute( $mode='run')
Run all deferred updates immediately if there are no DB writes active.
setAllowUnregisteredOptions( $allow)
Sets whether to allow unregistered options, which are options passed to a script that do not match an...
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account incomplete not yet checked for validity & $retval
wfIsWindows()
Check if the operating system is Windows.
$wgServer
URL of the server.
static requireTestsAutoloader()
Call this to set up the autoloader to allow classes to be used from the tests directory.
static posix_isatty( $fd)
Wrapper for posix_isatty() We default as considering stdin a tty (for nice readline methods) but trea...
updateSkippedMessage()
Message to show that the update was done already and was just skipped.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
validateParamsAndArgs()
Run some validation checks on the params, etc.
Config $config
Accessible via getConfig()
cleanupChanneled()
Clean up channeled output.
const DB_NONE
Constants for DB access type.
loadSettings()
Generic setup for most installs.
doDBUpdates()
Do the actual work.
adjustMemoryLimit()
Adjusts PHP's memory limit to better suit our needs, if needed.
getUpdateKey()
Get the update key name to go in the update log table.
purgeRedundantText( $delete=true)
Support function for cleaning up redundant text records.
resource $fileHandle
Used when creating separate schema files.
getOption( $name, $default=null)
Get an option, or return the default.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
addArg( $arg, $description, $required=true)
Add some args that are needed.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
getBatchSize()
Returns batch size.
$wgShowExceptionDetails
If set to true, uncaught exceptions will print the exception message and a complete stack trace to ou...
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
setAgentAndTriggers()
Set triggers like when to try to run deferred updates.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
wfEscapeShellArg(... $args)
Version of escapeshellarg() that works better on Windows.
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
getDir()
Get the maintenance directory.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
$wgDBuser
Database username.
static findInDefaultPaths( $names, $versionInfo=false)
Same as locateExecutable(), but checks in getPossibleBinPaths() by default.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
hasOption( $name)
Checks to see if a particular option exists.
getArg( $argId=0, $default=null)
Get an argument.
public function execute()
$wgDBadminpassword
Separate password for maintenance tasks.
outputChanneled( $msg, $channel=null)
Message outputter with channeled message support.
__construct()
Default constructor.
Advanced database interface for IDatabase handles that include maintenance methods.
execute()
Do the actual work.
$wgTrxProfilerLimits
Performance expectations for DB usage.
lockSearchindex( $db)
Lock the search index.
setBatchSize( $s=0)
Set the batch size.
IMaintainableDatabase $mDb
Used by getDB() / setDB()
memoryLimit()
Normally we disable the memory_limit when running admin scripts.
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out