MediaWiki REL1_39
undelete.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
26class Undelete extends Maintenance {
27 public function __construct() {
28 parent::__construct();
29 $this->addDescription( 'Undelete a page' );
30 $this->addOption( 'user', 'The user to perform the undeletion', false, true, 'u' );
31 $this->addOption( 'reason', 'The reason to undelete', false, true, 'r' );
32 $this->addArg( 'pagename', 'Page to undelete' );
33 }
34
35 public function execute() {
36 $username = $this->getOption( 'user', false );
37 $reason = $this->getOption( 'reason', '' );
38 $pageName = $this->getArg( 0 );
39
40 $title = Title::newFromText( $pageName );
41 if ( !$title ) {
42 $this->fatalError( "Invalid title" );
43 }
44 if ( $username === false ) {
45 $user = User::newSystemUser( 'Command line script', [ 'steal' => true ] );
46 } else {
47 $user = User::newFromName( $username );
48 }
49 if ( !$user ) {
50 $this->fatalError( "Invalid username" );
51 }
53
54 $archive = new PageArchive( $title );
55 $this->output( "Undeleting " . $title->getPrefixedDBkey() . '...' );
56 $archive->undeleteAsUser( [], $user, $reason );
57 $this->output( "done\n" );
58 }
59}
60
61$maintClass = Undelete::class;
62require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
output( $out, $channel=null)
Throw some output to the user.
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.
Used to show archived pages and eventually restore them.
static setUser( $user)
Reset the stub global user to a different "real" user object, while ensuring that any method calls on...
__construct()
Default constructor.
Definition undelete.php:27
execute()
Do the actual work.
Definition undelete.php:35
static newFromName( $name, $validate='valid')
Definition User.php:598
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
Definition User.php:806
$maintClass
Definition undelete.php:61