MediaWiki REL1_30
deleteBatch.php
Go to the documentation of this file.
1<?php
31require_once __DIR__ . '/Maintenance.php';
32
38class DeleteBatch extends Maintenance {
39
40 public function __construct() {
41 parent::__construct();
42 $this->addDescription( 'Deletes a batch of pages' );
43 $this->addOption( 'u', "User to perform deletion", false, true );
44 $this->addOption( 'r', "Reason to delete page", false, true );
45 $this->addOption( 'i', "Interval to sleep between deletions" );
46 $this->addArg( 'listfile', 'File with titles to delete, separated by newlines. ' .
47 'If not given, stdin will be used.', false );
48 }
49
50 public function execute() {
51 global $wgUser;
52
53 # Change to current working directory
54 $oldCwd = getcwd();
55 chdir( $oldCwd );
56
57 # Options processing
58 $username = $this->getOption( 'u', false );
59 $reason = $this->getOption( 'r', '' );
60 $interval = $this->getOption( 'i', 0 );
61
62 if ( $username === false ) {
63 $user = User::newSystemUser( 'Delete page script', [ 'steal' => true ] );
64 } else {
65 $user = User::newFromName( $username );
66 }
67 if ( !$user ) {
68 $this->error( "Invalid username", true );
69 }
70 $wgUser = $user;
71
72 if ( $this->hasArg() ) {
73 $file = fopen( $this->getArg(), 'r' );
74 } else {
75 $file = $this->getStdin();
76 }
77
78 # Setup
79 if ( !$file ) {
80 $this->error( "Unable to read file, exiting", true );
81 }
82
83 $dbw = $this->getDB( DB_MASTER );
84
85 # Handle each entry
86 // @codingStandardsIgnoreStart Ignore Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
87 for ( $linenum = 1; !feof( $file ); $linenum++ ) {
88 // @codingStandardsIgnoreEnd
89 $line = trim( fgets( $file ) );
90 if ( $line == '' ) {
91 continue;
92 }
93 $title = Title::newFromText( $line );
94 if ( is_null( $title ) ) {
95 $this->output( "Invalid title '$line' on line $linenum\n" );
96 continue;
97 }
98 if ( !$title->exists() ) {
99 $this->output( "Skipping nonexistent page '$line'\n" );
100 continue;
101 }
102
103 $this->output( $title->getPrefixedText() );
104 if ( $title->getNamespace() == NS_FILE ) {
105 $img = wfFindFile( $title, [ 'ignoreRedirect' => true ] );
106 if ( $img && $img->isLocal() && !$img->delete( $reason ) ) {
107 $this->output( " FAILED to delete associated file... " );
108 }
109 }
110 $page = WikiPage::factory( $title );
111 $error = '';
112 $success = $page->doDeleteArticle( $reason, false, 0, true, $error, $user );
113 if ( $success ) {
114 $this->output( " Deleted!\n" );
115 } else {
116 $this->output( " FAILED to delete article\n" );
117 }
118
119 if ( $interval ) {
120 sleep( $interval );
121 }
123 }
124 }
125}
126
127$maintClass = "DeleteBatch";
128require_once RUN_MAINTENANCE_IF_MAIN;
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
wfFindFile( $title, $options=[])
Find a file.
$wgUser
Definition Setup.php:817
$line
Definition cdb.php:58
Maintenance script to delete a batch of pages.
execute()
Do the actual work.
__construct()
Default constructor.
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.
getStdin( $len=null)
Return input from stdin.
hasArg( $argId=0)
Does a given argument exist?
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
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.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition WikiPage.php:121
$maintClass
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2581
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:783
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 local account $user
Definition hooks.txt:247
const NS_FILE
Definition Defines.php:71
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:26