Go to the documentation of this file.
25 require_once __DIR__ .
'/Maintenance.php';
35 parent::__construct();
37 "Rollback all edits by a given user or IP provided they're the most recent edit" );
40 'A list of titles, none means all titles where the given user is the most recent',
44 $this->
addOption(
'user',
'A user or IP to rollback all edits for',
true,
true );
45 $this->
addOption(
'summary',
'Edit summary to use',
false,
true );
46 $this->
addOption(
'bot',
'Mark the edits as bot' );
53 $this->
error(
'Invalid username',
true );
57 $summary = $this->
getOption(
'summary', $this->mSelf .
' mass rollback' );
64 $this->
error(
'Invalid title, ' . $title );
74 $this->
output(
'No suitable titles to be rolled back' );
83 $this->
output(
'Processing ' . $t->getPrefixedText() .
'... ' );
84 if ( !$page->commitRollback(
$user, $summary, $bot, $results, $doer ) ) {
87 $this->
output(
"failed\n" );
100 $results =
$dbr->select(
101 [
'page',
'revision' ],
102 [
'page_namespace',
'page_title' ],
103 [
'page_latest = rev_id',
'rev_user_text' =>
$user ],
106 foreach ( $results
as $row ) {
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
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
addDescription( $text)
Set the description text.
getRollbackTitles( $user)
Get all pages that should be rolled back for a given user.
require_once RUN_MAINTENANCE_IF_MAIN
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Maintenance script to rollback all edits by a given user or IP provided they're the most recent edit.
__construct()
Default constructor.
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
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
namespace and then decline to actually register it file or subcat img or subcat $title
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
static isIP( $name)
Does the string match an anonymous IP address?
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
execute()
Do the actual work.
getOption( $name, $default=null)
Get an option, or return the default.
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
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 param exists.
this hook is for auditing only or null if authentication failed before getting that far $username