31require_once __DIR__ .
'/Maintenance.php';
40 parent::__construct();
42 $this->
addOption(
'u',
"User to perform move",
false,
true );
43 $this->
addOption(
'r',
"Reason to move page",
false,
true );
44 $this->
addOption(
'i',
"Interval to sleep between moves" );
45 $this->
addOption(
'noredirects',
"Suppress creation of redirects" );
46 $this->
addArg(
'listfile',
'List of pages to move, newline delimited',
false );
50 # Change to current working directory
55 $username = $this->
getOption(
'u',
false );
58 $noredirects = $this->
hasOption(
'noredirects' );
59 if ( $this->
hasArg( 0 ) ) {
67 $this->
fatalError(
"Unable to read file, exiting" );
69 if ( $username ===
false ) {
79 # Setup complete, now start
81 for ( $linenum = 1; !feof(
$file ); $linenum++ ) {
83 if (
$line ===
false ) {
86 $parts = array_map(
'trim', explode(
'|',
$line ) );
87 if ( count( $parts ) != 2 ) {
88 $this->
error(
"Error on line $linenum, no pipe character" );
91 $source = Title::newFromText( $parts[0] );
92 $dest = Title::newFromText( $parts[1] );
93 if (
$source ===
null || $dest ===
null ) {
94 $this->
error(
"Invalid title on line $linenum" );
98 $this->
output(
$source->getPrefixedText() .
' --> ' . $dest->getPrefixedText() );
100 $mp = MediaWikiServices::getInstance()->getMovePageFactory()
101 ->newMovePage(
$source, $dest );
102 $status = $mp->move( $user, $reason, !$noredirects );
103 if ( !$status->isOK() ) {
104 $this->
output(
"\nFAILED: " . $status->getMessage(
false,
false,
'en' )->text() );
117require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
addArg( $arg, $description, $required=true)
Add some args that are needed.
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getStdin( $len=null)
Return input from stdin.
hasArg( $argId=0)
Does a given argument exist?
hasOption( $name)
Checks to see if a particular option was set.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script to move a batch of pages.
execute()
Do the actual work.
__construct()
Default constructor.
static setUser( $user)
Reset the stub global user to a different "real" user object, while ensuring that any method calls on...
static newFromName( $name, $validate='valid')
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.