MediaWiki  1.29.2
rollbackEdits.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/Maintenance.php';
26 
33 class RollbackEdits extends Maintenance {
34  public function __construct() {
35  parent::__construct();
36  $this->addDescription(
37  "Rollback all edits by a given user or IP provided they're the most recent edit" );
38  $this->addOption(
39  'titles',
40  'A list of titles, none means all titles where the given user is the most recent',
41  false,
42  true
43  );
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' );
47  }
48 
49  public function execute() {
50  $user = $this->getOption( 'user' );
52  if ( !$username ) {
53  $this->error( 'Invalid username', true );
54  }
55 
56  $bot = $this->hasOption( 'bot' );
57  $summary = $this->getOption( 'summary', $this->mSelf . ' mass rollback' );
58  $titles = [];
59  $results = [];
60  if ( $this->hasOption( 'titles' ) ) {
61  foreach ( explode( '|', $this->getOption( 'titles' ) ) as $title ) {
62  $t = Title::newFromText( $title );
63  if ( !$t ) {
64  $this->error( 'Invalid title, ' . $title );
65  } else {
66  $titles[] = $t;
67  }
68  }
69  } else {
70  $titles = $this->getRollbackTitles( $user );
71  }
72 
73  if ( !$titles ) {
74  $this->output( 'No suitable titles to be rolled back' );
75 
76  return;
77  }
78 
79  $doer = User::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
80 
81  foreach ( $titles as $t ) {
83  $this->output( 'Processing ' . $t->getPrefixedText() . '... ' );
84  if ( !$page->commitRollback( $user, $summary, $bot, $results, $doer ) ) {
85  $this->output( "done\n" );
86  } else {
87  $this->output( "failed\n" );
88  }
89  }
90  }
91 
97  private function getRollbackTitles( $user ) {
98  $dbr = $this->getDB( DB_REPLICA );
99  $titles = [];
100  $results = $dbr->select(
101  [ 'page', 'revision' ],
102  [ 'page_namespace', 'page_title' ],
103  [ 'page_latest = rev_id', 'rev_user_text' => $user ],
104  __METHOD__
105  );
106  foreach ( $results as $row ) {
107  $titles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
108  }
109 
110  return $titles;
111  }
112 }
113 
114 $maintClass = 'RollbackEdits';
115 require_once RUN_MAINTENANCE_IF_MAIN;
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
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
$maintClass
$maintClass
Definition: rollbackEdits.php:114
RollbackEdits\getRollbackTitles
getRollbackTitles( $user)
Get all pages that should be rolled back for a given user.
Definition: rollbackEdits.php:97
$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
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
RollbackEdits
Maintenance script to rollback all edits by a given user or IP provided they're the most recent edit.
Definition: rollbackEdits.php:33
RollbackEdits\__construct
__construct()
Default constructor.
Definition: rollbackEdits.php:34
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
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:120
$titles
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
Definition: linkcache.txt:17
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
User\isIP
static isIP( $name)
Does the string match an anonymous IP address?
Definition: User.php:819
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
RollbackEdits\execute
execute()
Do the actual work.
Definition: rollbackEdits.php:49
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
$dbr
if(! $regexes) $dbr
Definition: cleanup.php:94
User\getCanonicalName
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
Definition: User.php:1076
as
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
Definition: distributors.txt:9
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1251
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
$t
$t
Definition: testCompression.php:67
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236
$username
this hook is for auditing only or null if authentication failed before getting that far $username
Definition: hooks.txt:783