MediaWiki REL1_31
rollbackEdits.php
Go to the documentation of this file.
1<?php
25require_once __DIR__ . '/Maintenance.php';
26
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' );
51 $username = User::isIP( $user ) ? $user : User::getCanonicalName( $user );
52 if ( !$username ) {
53 $this->fatalError( 'Invalid username' );
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 ) {
82 $page = WikiPage::factory( $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 $actorQuery = ActorMigration::newMigration()
101 ->getWhere( $dbr, 'rev_user', User::newFromName( $user, false ) );
102 foreach ( $actorQuery['orconds'] as $cond ) {
103 $results = $dbr->select(
104 [ 'page', 'revision' ] + $actorQuery['tables'],
105 [ 'page_namespace', 'page_title' ],
106 [ $cond ],
107 __METHOD__,
108 [],
109 [ 'revision' => [ 'JOIN', 'page_latest = rev_id' ] ] + $actorQuery['joins']
110 );
111 foreach ( $results as $row ) {
112 $titles[] = Title::makeTitle( $row->page_namespace, $row->page_title );
113 }
114 }
115
116 return $titles;
117 }
118}
119
120$maintClass = RollbackEdits::class;
121require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
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.
Maintenance script to rollback all edits by a given user or IP provided they're the most recent edit.
__construct()
Default constructor.
execute()
Do the actual work.
getRollbackTitles( $user)
Get all pages that should be rolled back for a given user.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:591
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
Definition User.php:1210
static newSystemUser( $name, $options=[])
Static factory method for creation of a "system" user from username.
Definition User.php:791
static isIP( $name)
Does the string match an anonymous IP address?
Definition User.php:943
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:2612
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:785
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
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
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25
$maintClass