Go to the documentation of this file.
40 require_once __DIR__ .
'/Maintenance.php';
49 parent::__construct();
51 $this->
addOption(
'u',
"User to perform move",
false,
true );
52 $this->
addOption(
'r',
"Reason to move page",
false,
true );
53 $this->
addOption(
'i',
"Interval to sleep between moves" );
54 $this->
addOption(
'noredirects',
"Suppress creation of redirects" );
55 $this->
addArg(
'listfile',
'List of pages to move, newline delimited',
false );
61 # Change to current working directory
69 $noredirects = $this->
hasOption(
'noredirects' );
70 if ( $this->
hasArg( 0 ) ) {
78 $this->
fatalError(
"Unable to read file, exiting" );
80 if ( $user ===
false ) {
89 # Setup complete, now start
91 for ( $linenum = 1; !feof(
$file ); $linenum++ ) {
93 if (
$line ===
false ) {
96 $parts = array_map(
'trim', explode(
'|',
$line ) );
97 if ( count( $parts ) != 2 ) {
98 $this->
error(
"Error on line $linenum, no pipe character" );
103 if ( is_null(
$source ) || is_null( $dest ) ) {
104 $this->
error(
"Invalid title on line $linenum" );
108 $this->
output(
$source->getPrefixedText() .
' --> ' . $dest->getPrefixedText() );
110 $mp = MediaWikiServices::getInstance()->getMovePageFactory()
111 ->newMovePage(
$source, $dest );
112 $status = $mp->move( $wgUser, $reason, !$noredirects );
114 $this->
output(
"\nFAILED: " .
$status->getMessage(
false,
false,
'en' )->text() );
const RUN_MAINTENANCE_IF_MAIN
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
getStdin( $len=null)
Return input from stdin.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
addDescription( $text)
Set the description text.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
hasArg( $argId=0)
Does a given argument exist?
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Maintenance script to move a batch of pages.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
getDB( $db, $groups=[], $dbDomain=false)
Returns a database to be used by current maintenance script.
__construct()
Default constructor.
getOption( $name, $default=null)
Get an option, or return the default.
execute()
Do the actual work.
addArg( $arg, $description, $required=true)
Add some args that are needed.
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option exists.
getArg( $argId=0, $default=null)
Get an argument.