MediaWiki  1.30.1
renameUserCleanup.php
Go to the documentation of this file.
1 <?php
26 $IP = getenv( 'MW_INSTALL_PATH' );
27 if ( $IP === false ) {
28  $IP = __DIR__ . '/../../..';
29 }
30 require_once "$IP/maintenance/Maintenance.php";
31 
33  public function __construct() {
34  parent::__construct();
35  $this->mDescription = 'Maintenance script to finish incomplete rename user,'
36  . ' in particular to reassign edits that were missed';
37  $this->addOption( 'olduser', 'Old user name', true, true );
38  $this->addOption( 'newuser', 'New user name', true, true );
39  $this->addOption( 'olduid', 'Old user id in revision records (DANGEROUS)', false, true );
40  $this->mBatchSize = 1000;
41  }
42 
43  public function execute() {
44  $this->output( "Rename User Cleanup starting...\n\n" );
45  $olduser = User::newFromName( $this->getOption( 'olduser' ) );
46  $newuser = User::newFromName( $this->getOption( 'newuser' ) );
47  $olduid = $this->getOption( 'olduid' );
48 
49  $this->checkUserExistence( $olduser, $newuser );
50  $this->checkRenameLog( $olduser, $newuser );
51 
52  if ( $olduid ) {
53  $this->doUpdates( $olduser, $newuser, $olduid );
54  }
55  $this->doUpdates( $olduser, $newuser, $newuser->getId() );
56  $this->doUpdates( $olduser, $newuser, 0 );
57 
58  $this->output( "Done!\n" );
59  }
60 
65  public function checkUserExistence( $olduser, $newuser ) {
66  if ( !$newuser->getId() ) {
67  $this->error( 'No such user: ' . $this->getOption( 'newuser' ), true );
68  }
69  if ( $olduser->getId() ) {
70  $this->output( 'WARNING!!: Old user still exists: ' . $this->getOption( 'olduser' ) . "\n" );
71  $this->output( 'We\'ll only re-attribute edits that have the new user uid (or 0) ' );
72  $this->output( 'or the uid specified by the caller, and the old user name.' );
73  $this->output( 'Proceed anyway? [N/y] ' );
74 
75  $stdin = fopen( 'php://stdin', 'rt' );
76  $line = fgets( $stdin );
77  fclose( $stdin );
78 
79  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
80  $this->output( "Exiting at users request\n" );
81  }
82  }
83  }
84 
89  public function checkRenameLog( $olduser, $newuser ) {
90  $dbr = wfGetDB( DB_SLAVE );
91 
92  $oldTitle = Title::makeTitle( NS_USER, $olduser->getName() );
93 
94  $result = $dbr->select( 'logging', '*',
95  [ 'log_type' => 'renameuser',
96  'log_action' => 'renameuser',
97  'log_namespace' => NS_USER,
98  'log_title' => $oldTitle->getDBkey(),
99  'log_params' => $newuser->getName()
100  ],
101  __METHOD__
102  );
103  if ( !$result || !$result->numRows() ) {
104  // try the old format
105  if ( class_exists( CommentStore::class ) ) {
106  $commentStore = CommentStore::newKey( 'log_comment' );
107  $commentQuery = $commentStore->getJoin();
108  } else {
109  $commentStore = null;
110  $commentQuery = [
111  'tables' => [],
112  'fields' => [ 'log_comment' => 'log_comment' ],
113  'joins' => [],
114  ];
115  }
116  $result = $dbr->select(
117  [ 'logging' ] + $commentQuery['tables'],
118  [ 'log_title', 'log_timestamp' ] + $commentQuery['fields'],
119  [
120  'log_type' => 'renameuser',
121  'log_action' => 'renameuser',
122  'log_namespace' => NS_USER,
123  'log_title' => $olduser->getName(),
124  ],
125  __METHOD__,
126  [],
127  $commentQuery['joins']
128  );
129  if ( !$result || !$result->numRows() ) {
130  $this->output( 'No log entry found for a rename of ' . $olduser->getName() .
131  ' to ' . $newuser->getName() . ', proceed anyways? [N/y] ' );
132 
133  $stdin = fopen( 'php://stdin', 'rt' );
134  $line = fgets( $stdin );
135  fclose( $stdin );
136 
137  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
138  $this->output( "Exiting at user's request\n" );
139  exit( 1 );
140  }
141  } else {
142  foreach ( $result as $row ) {
143  $comment = $commentStore ? $commentStore->getComment( $row )->text : $row->log_comment;
144  $this->output( 'Found possible log entry of the rename, please check: ' .
145  $row->log_title . ' with comment ' . $comment .
146  " on $row->log_timestamp\n" );
147  }
148  }
149  } else {
150  foreach ( $result as $row ) {
151  $this->output( 'Found log entry of the rename: ' . $olduser->getName() .
152  ' to ' . $newuser->getName() . " on $row->log_timestamp\n" );
153  }
154  }
155  if ( $result && $result->numRows() > 1 ) {
156  print 'More than one rename entry found in the log, not sure ' .
157  'what to do. Proceed anyways? [N/y] ';
158 
159  $stdin = fopen( 'php://stdin', 'rt' );
160  $line = fgets( $stdin );
161  fclose( $stdin );
162 
163  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
164  $this->output( "Exiting at users request\n" );
165  exit( 1 );
166  }
167  }
168  }
169 
175  public function doUpdates( $olduser, $newuser, $uid ) {
176  $this->updateTable(
177  'revision',
178  'rev_user_text',
179  'rev_user',
180  'rev_timestamp',
181  $olduser,
182  $newuser,
183  $uid
184  );
185  $this->updateTable(
186  'archive',
187  'ar_user_text',
188  'ar_user',
189  'ar_timestamp',
190  $olduser,
191  $newuser,
192  $uid
193  );
194  $this->updateTable(
195  'logging',
196  'log_user_text',
197  'log_user',
198  'log_timestamp',
199  $olduser,
200  $newuser,
201  $uid
202  );
203  $this->updateTable(
204  'image',
205  'img_user_text',
206  'img_user',
207  'img_timestamp',
208  $olduser,
209  $newuser,
210  $uid
211  );
212  $this->updateTable(
213  'oldimage',
214  'oi_user_text',
215  'oi_user',
216  'oi_timestamp',
217  $olduser,
218  $newuser,
219  $uid
220  );
221  $this->updateTable(
222  'filearchive',
223  'fa_user_text',
224  'fa_user',
225  'fa_timestamp',
226  $olduser,
227  $newuser,
228  $uid
229  );
230  }
231 
241  public function updateTable( $table, $usernamefield, $useridfield,
242  $timestampfield, $olduser, $newuser, $uid
243  ) {
244  $dbw = wfGetDB( DB_MASTER );
245 
246  $contribs = $dbw->selectField(
247  $table,
248  'count(*)',
249  [
250  $usernamefield => $olduser->getName(),
251  $useridfield => $uid
252  ],
253  __METHOD__
254  );
255 
256  if ( $contribs === 0 ) {
257  $this->output( "No edits to be re-attributed from table $table for uid $uid\n" );
258 
259  return;
260  }
261 
262  $this->output( "Found $contribs edits to be re-attributed from table $table for uid $uid\n" );
263  if ( $uid !== $newuser->getId() ) {
264  $this->output( 'If you proceed, the uid field will be set to that ' .
265  'of the new user name (i.e. ' . $newuser->getId() . ") in these rows.\n" );
266  }
267 
268  $this->output( 'Proceed? [N/y] ' );
269 
270  $stdin = fopen( 'php://stdin', 'rt' );
271  $line = fgets( $stdin );
272  fclose( $stdin );
273 
274  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
275  $this->output( "Skipping at user's request\n" );
276  return;
277  }
278 
279  $selectConds = [ $usernamefield => $olduser->getName(), $useridfield => $uid ];
280  $updateFields = [ $usernamefield => $newuser->getName(), $useridfield => $newuser->getId() ];
281 
282  while ( $contribs > 0 ) {
283  $this->output( 'Doing batch of up to approximately ' . $this->mBatchSize . "\n" );
284  $this->output( 'Do this batch? [N/y] ' );
285 
286  $stdin = fopen( 'php://stdin', 'rt' );
287  $line = fgets( $stdin );
288  fclose( $stdin );
289 
290  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
291  $this->output( "Skipping at user's request\n" );
292  return;
293  }
294 
295  $this->beginTransaction( $dbw, __METHOD__ );
296  $result = $dbw->select(
297  $table,
298  $timestampfield,
299  $selectConds,
300  __METHOD__,
301  [
302  'ORDER BY' => $timestampfield . ' DESC',
303  'LIMIT' => $this->mBatchSize
304  ]
305  );
306 
307  if ( !$result ) {
308  $this->output( "There were rows for updating but now they are gone. Skipping.\n" );
309  $this->rollbackTransaction( $dbw, __METHOD__ );
310 
311  return;
312  }
313 
314  $result->seek( $result->numRows() - 1 );
315  $row = $result->fetchObject();
316  $timestamp = $row->$timestampfield;
317  $updateCondsWithTime = array_merge( $selectConds, [ "$timestampfield >= $timestamp" ] );
318  $success = $dbw->update(
319  $table,
320  $updateFields,
321  $updateCondsWithTime,
322  __METHOD__
323  );
324 
325  if ( $success ) {
326  $rowsDone = $dbw->affectedRows();
327  $this->commitTransaction( $dbw, __METHOD__ );
328  } else {
329  $this->rollbackTransaction( $dbw, __METHOD__ );
330  $this->error( "Problem with the update, rolling back and exiting\n", true );
331  }
332 
333  // $contribs = User::edits( $olduser->getId() );
334  $contribs = $dbw->selectField( $table, 'count(*)', $selectConds, __METHOD__ );
335  $this->output( "Updated $rowsDone edits; $contribs edits remaining to be re-attributed\n" );
336  }
337  }
338 }
339 
340 $maintClass = 'RenameUserCleanup';
341 require_once RUN_MAINTENANCE_IF_MAIN;
$maintClass
$maintClass
Definition: renameUserCleanup.php:340
RenameUserCleanup
Definition: renameUserCleanup.php:32
RenameUserCleanup\execute
execute()
Do the actual work.
Definition: renameUserCleanup.php:43
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1963
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:550
DB_SLAVE
const DB_SLAVE
Definition: Defines.php:37
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$success
$success
Definition: NoLocalSettings.php:44
CommentStore\newKey
static newKey( $key)
Static constructor for easier chaining.
Definition: CommentStore.php:114
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
Maintenance\rollbackTransaction
rollbackTransaction(IDatabase $dbw, $fname)
Rollback the transcation on a DB handle.
Definition: Maintenance.php:1318
Maintenance\beginTransaction
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Definition: Maintenance.php:1278
RenameUserCleanup\checkRenameLog
checkRenameLog( $olduser, $newuser)
Definition: renameUserCleanup.php:89
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2856
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
$oldTitle
versus $oldTitle
Definition: globals.txt:16
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:529
DB_MASTER
const DB_MASTER
Definition: defines.php:26
$line
$line
Definition: cdb.php:58
RenameUserCleanup\updateTable
updateTable( $table, $usernamefield, $useridfield, $timestampfield, $olduser, $newuser, $uid)
Definition: renameUserCleanup.php:241
Maintenance\commitTransaction
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Definition: Maintenance.php:1293
RenameUserCleanup\__construct
__construct()
Default constructor.
Definition: renameUserCleanup.php:33
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
$IP
$IP
Maintenance script to clean up after incomplete user renames Sometimes user edits are left lying arou...
Definition: renameUserCleanup.php:26
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
NS_USER
const NS_USER
Definition: Defines.php:67
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
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
RenameUserCleanup\doUpdates
doUpdates( $olduser, $newuser, $uid)
Definition: renameUserCleanup.php:175
RenameUserCleanup\checkUserExistence
checkUserExistence( $olduser, $newuser)
Definition: renameUserCleanup.php:65