MediaWiki REL1_32
reassignEdits.php
Go to the documentation of this file.
1<?php
27
28require_once __DIR__ . '/Maintenance.php';
29
37 public function __construct() {
38 parent::__construct();
39 $this->addDescription( 'Reassign edits from one user to another' );
40 $this->addOption( "force", "Reassign even if the target user doesn't exist" );
41 $this->addOption( "norc", "Don't update the recent changes table" );
42 $this->addOption( "report", "Print out details of what would be changed, but don't update it" );
43 $this->addArg( 'from', 'Old user to take edits from' );
44 $this->addArg( 'to', 'New user to give edits to' );
45 }
46
47 public function execute() {
48 if ( $this->hasArg( 0 ) && $this->hasArg( 1 ) ) {
49 # Set up the users involved
50 $from = $this->initialiseUser( $this->getArg( 0 ) );
51 $to = $this->initialiseUser( $this->getArg( 1 ) );
52
53 # If the target doesn't exist, and --force is not set, stop here
54 if ( $to->getId() || $this->hasOption( 'force' ) ) {
55 # Reassign the edits
56 $report = $this->hasOption( 'report' );
57 $this->doReassignEdits( $from, $to, !$this->hasOption( 'norc' ), $report );
58 # If reporting, and there were items, advise the user to run without --report
59 if ( $report ) {
60 $this->output( "Run the script again without --report to update.\n" );
61 }
62 } else {
63 $ton = $to->getName();
64 $this->error( "User '{$ton}' not found." );
65 }
66 }
67 }
68
78 private function doReassignEdits( &$from, &$to, $rc = false, $report = false ) {
80
81 $dbw = $this->getDB( DB_MASTER );
82 $this->beginTransaction( $dbw, __METHOD__ );
83
84 # Count things
85 $this->output( "Checking current edits..." );
86 $revQueryInfo = ActorMigration::newMigration()->getWhere( $dbw, 'rev_user', $from );
87 $res = $dbw->select(
88 [ 'revision' ] + $revQueryInfo['tables'],
89 'COUNT(*) AS count',
90 $revQueryInfo['conds'],
91 __METHOD__,
92 [],
93 $revQueryInfo['joins']
94 );
95 $row = $dbw->fetchObject( $res );
96 $cur = $row->count;
97 $this->output( "found {$cur}.\n" );
98
99 $this->output( "Checking deleted edits..." );
100 $arQueryInfo = ActorMigration::newMigration()->getWhere( $dbw, 'ar_user', $from, false );
101 $res = $dbw->select(
102 [ 'archive' ] + $arQueryInfo['tables'],
103 'COUNT(*) AS count',
104 $arQueryInfo['conds'],
105 __METHOD__,
106 [],
107 $arQueryInfo['joins']
108 );
109 $row = $dbw->fetchObject( $res );
110 $del = $row->count;
111 $this->output( "found {$del}.\n" );
112
113 # Don't count recent changes if we're not supposed to
114 if ( $rc ) {
115 $this->output( "Checking recent changes..." );
116 $rcQueryInfo = ActorMigration::newMigration()->getWhere( $dbw, 'rc_user', $from, false );
117 $res = $dbw->select(
118 [ 'recentchanges' ] + $rcQueryInfo['tables'],
119 'COUNT(*) AS count',
120 $rcQueryInfo['conds'],
121 __METHOD__,
122 [],
123 $rcQueryInfo['joins']
124 );
125 $row = $dbw->fetchObject( $res );
126 $rec = $row->count;
127 $this->output( "found {$rec}.\n" );
128 } else {
129 $rec = 0;
130 }
131
132 $total = $cur + $del + $rec;
133 $this->output( "\nTotal entries to change: {$total}\n" );
134
135 if ( !$report ) {
136 if ( $total ) {
137 # Reassign edits
138 $this->output( "\nReassigning current edits..." );
139 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_WRITE_OLD ) {
140 $dbw->update(
141 'revision',
142 [
143 'rev_user' => $to->getId(),
144 'rev_user_text' => $to->getName(),
145 ],
146 $from->isLoggedIn()
147 ? [ 'rev_user' => $from->getId() ] : [ 'rev_user_text' => $from->getName() ],
148 __METHOD__
149 );
150 }
152 $dbw->update(
153 'revision_actor_temp',
154 [ 'revactor_actor' => $to->getActorId( $dbw ) ],
155 [ 'revactor_actor' => $from->getActorId() ],
156 __METHOD__
157 );
158 }
159 $this->output( "done.\nReassigning deleted edits..." );
160 $dbw->update( 'archive',
161 $this->userSpecification( $dbw, $to, 'ar_user', 'ar_user_text', 'ar_actor' ),
162 [ $arQueryInfo['conds'] ], __METHOD__ );
163 $this->output( "done.\n" );
164 # Update recent changes if required
165 if ( $rc ) {
166 $this->output( "Updating recent changes..." );
167 $dbw->update( 'recentchanges',
168 $this->userSpecification( $dbw, $to, 'rc_user', 'rc_user_text', 'rc_actor' ),
169 [ $rcQueryInfo['conds'] ], __METHOD__ );
170 $this->output( "done.\n" );
171 }
172 }
173 }
174
175 $this->commitTransaction( $dbw, __METHOD__ );
176
177 return (int)$total;
178 }
179
191 private function userSpecification( IDatabase $dbw, &$user, $idfield, $utfield, $acfield ) {
193
194 $ret = [];
196 $ret += [
197 $idfield => $user->getId(),
198 $utfield => $user->getName(),
199 ];
200 }
202 $ret += [ $acfield => $user->getActorId( $dbw ) ];
203 }
204 return $ret;
205 }
206
213 private function initialiseUser( $username ) {
214 if ( User::isIP( $username ) ) {
215 $user = new User();
216 $user->setId( 0 );
217 $user->setName( $username );
218 } else {
219 $user = User::newFromName( $username );
220 if ( !$user ) {
221 $this->fatalError( "Invalid username" );
222 }
223 }
224 $user->load();
225
226 return $user;
227 }
228}
229
230$maintClass = ReassignEdits::class;
231require_once RUN_MAINTENANCE_IF_MAIN;
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
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.
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
hasArg( $argId=0)
Does a given argument exist?
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular option exists.
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.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script that reassigns edits from a user or IP address to another user.
userSpecification(IDatabase $dbw, &$user, $idfield, $utfield, $acfield)
Return user specifications for an UPDATE i.e.
execute()
Do the actual work.
__construct()
Default constructor.
initialiseUser( $username)
Initialise the user object.
doReassignEdits(&$from, &$to, $rc=false, $report=false)
Reassign edits from one user to another.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:592
static isIP( $name)
Does the string match an anonymous IP address?
Definition User.php:971
$res
Definition database.txt:21
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:2683
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2054
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:815
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
const SCHEMA_COMPAT_WRITE_OLD
Definition Defines.php:284
const SCHEMA_COMPAT_WRITE_NEW
Definition Defines.php:286
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:26
$maintClass