MediaWiki  1.29.2
undelete.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
26 class 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() {
37 
38  $user = $this->getOption( 'user', false );
39  $reason = $this->getOption( 'reason', '' );
40  $pageName = $this->getArg();
41 
42  $title = Title::newFromText( $pageName );
43  if ( !$title ) {
44  $this->error( "Invalid title", true );
45  }
46  if ( $user === false ) {
47  $wgUser = User::newSystemUser( 'Command line script', [ 'steal' => true ] );
48  } else {
50  }
51  if ( !$wgUser ) {
52  $this->error( "Invalid username", true );
53  }
54  $archive = new PageArchive( $title, RequestContext::getMain()->getConfig() );
55  $this->output( "Undeleting " . $title->getPrefixedDBkey() . '...' );
56  $archive->undelete( [], $reason );
57  $this->output( "done\n" );
58  }
59 }
60 
61 $maintClass = "Undelete";
62 require_once RUN_MAINTENANCE_IF_MAIN;
$wgUser
$wgUser
Definition: Setup.php:781
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
PageArchive
Used to show archived pages and eventually restore them.
Definition: PageArchive.php:28
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
$user
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 $user
Definition: hooks.txt:246
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
php
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
Definition: injection.txt:35
User\newSystemUser
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
Definition: User.php:684
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
Maintenance\getConfig
getConfig()
Definition: Maintenance.php:504
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
Undelete
Definition: undelete.php:26
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$maintClass
$maintClass
Definition: undelete.php:61
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
Undelete\__construct
__construct()
Default constructor.
Definition: undelete.php:27
Maintenance\addArg
addArg( $arg, $description, $required=true)
Add some args that are needed.
Definition: Maintenance.php:267
Undelete\execute
execute()
Do the actual work.
Definition: undelete.php:35
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
Maintenance\getArg
getArg( $argId=0, $default=null)
Get an argument.
Definition: Maintenance.php:306