3 * Rollback all edits by a given user or IP provided they're the most
4 * recent edit (just like real rollback)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
22 * @ingroup Maintenance
25 require_once __DIR__
. '/Maintenance.php';
28 * Maintenance script to rollback all edits by a given user or IP provided
29 * they're the most recent edit.
31 * @ingroup Maintenance
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" );
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' );
49 public function execute() {
50 $user = $this->getOption( 'user' );
51 $username = User
::isIP( $user ) ?
$user : User
::getCanonicalName( $user );
53 $this->error( 'Invalid username', true );
56 $bot = $this->hasOption( 'bot' );
57 $summary = $this->getOption( 'summary', $this->mSelf
. ' mass rollback' );
60 if ( $this->hasOption( 'titles' ) ) {
61 foreach ( explode( '|', $this->getOption( 'titles' ) ) as $title ) {
62 $t = Title
::newFromText( $title );
64 $this->error( 'Invalid title, ' . $title );
70 $titles = $this->getRollbackTitles( $user );
74 $this->output( 'No suitable titles to be rolled back' );
79 $doer = User
::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
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" );
87 $this->output( "failed\n" );
93 * Get all pages that should be rolled back for a given user
94 * @param string $user A name to check against rev_user_text
97 private function getRollbackTitles( $user ) {
98 $dbr = $this->getDB( DB_REPLICA
);
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 ) {
107 $titles[] = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
114 $maintClass = 'RollbackEdits';
115 require_once RUN_MAINTENANCE_IF_MAIN
;