31require_once __DIR__ .
'/Maintenance.php';
41 parent::__construct();
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 );
53 # Change to current working directory
73 $file = fopen( $this->
getArg(),
'r' );
80 $this->
fatalError(
"Unable to read file, exiting" );
87 for ( $linenum = 1; !feof( $file ); $linenum++ ) {
88 $line = trim( fgets( $file ) );
92 $title = Title::newFromText(
$line );
93 if ( is_null( $title ) ) {
94 $this->
output(
"Invalid title '$line' on line $linenum\n" );
97 if ( !$title->exists() ) {
98 $this->
output(
"Skipping nonexistent page '$line'\n" );
102 $this->
output( $title->getPrefixedText() );
103 if ( $title->getNamespace() ==
NS_FILE ) {
104 $img =
wfFindFile( $title, [
'ignoreRedirect' =>
true ] );
105 if ( $img && $img->isLocal() && !$img->delete( $reason ) ) {
106 $this->
output(
" FAILED to delete associated file... " );
109 $page = WikiPage::factory( $title );
111 $success = $page->doDeleteArticle( $reason,
false, 0,
true, $error, $user );
113 $this->
output(
" Deleted!\n" );
115 $this->
output(
" FAILED to delete article\n" );
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.
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.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
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
this hook is for auditing only or null if authentication failed before getting that far $username
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
require_once RUN_MAINTENANCE_IF_MAIN