MediaWiki  1.29.2
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  print "Done!\n";
59  exit( 0 );
60  }
61 
66  public function checkUserExistence( $olduser, $newuser ) {
67  if ( !$newuser->getId() ) {
68  $this->error( 'No such user: ' . $this->getOption( 'newuser' ), true );
69  exit( 1 );
70  }
71  if ( $olduser->getId() ) {
72  print 'WARNING!!: Old user still exists: ' . $this->getOption( 'olduser' ) . "\n";
73  print "proceed anyways? We'll only re-attribute edits that have the new user uid (or 0)";
74  print ' or the uid specified by the caller, and the old user name. [N/y] ';
75  $stdin = fopen( 'php://stdin', 'rt' );
76  $line = fgets( $stdin );
77  fclose( $stdin );
78  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
79  print "Exiting at user's request\n";
80  exit( 0 );
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  $result = $dbr->select( 'logging', '*',
106  [ 'log_type' => 'renameuser',
107  'log_action' => 'renameuser',
108  'log_namespace' => NS_USER,
109  'log_title' => $olduser->getName(),
110  ],
111  __METHOD__
112  );
113  if ( !$result || !$result->numRows() ) {
114  print 'No log entry found for a rename of ' . $olduser->getName() .
115  ' to ' . $newuser->getName() . ', proceed anyways??? [N/y] ';
116  $stdin = fopen( 'php://stdin', 'rt' );
117  $line = fgets( $stdin );
118  fclose( $stdin );
119  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
120  print "Exiting at user's request\n";
121  exit( 1 );
122  }
123  } else {
124  foreach ( $result as $row ) {
125  print 'Found possible log entry of the rename, please check: ' .
126  $row->log_title . ' with comment ' . $row->log_comment .
127  " on $row->log_timestamp\n";
128  }
129  }
130  } else {
131  foreach ( $result as $row ) {
132  print 'Found log entry of the rename: ' . $olduser->getName() .
133  ' to ' . $newuser->getName() . " on $row->log_timestamp\n";
134  }
135  }
136  if ( $result && $result->numRows() > 1 ) {
137  print 'More than one rename entry found in the log, not sure ' .
138  'what to do. Continue anyways? [N/y] ';
139  $stdin = fopen( 'php://stdin', 'rt' );
140  $line = fgets( $stdin );
141  fclose( $stdin );
142  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
143  print "Exiting at user's request\n";
144  exit( 1 );
145  }
146  }
147  }
148 
154  public function doUpdates( $olduser, $newuser, $uid ) {
155  $this->updateTable( 'revision', 'rev_user_text', 'rev_user', 'rev_timestamp',
156  $olduser, $newuser, $uid );
157  $this->updateTable( 'archive', 'ar_user_text', 'ar_user', 'ar_timestamp',
158  $olduser, $newuser, $uid );
159  $this->updateTable( 'logging', 'log_user_text', 'log_user', 'log_timestamp',
160  $olduser, $newuser, $uid );
161  $this->updateTable( 'image', 'img_user_text', 'img_user', 'img_timestamp',
162  $olduser, $newuser, $uid );
163  $this->updateTable( 'oldimage', 'oi_user_text', 'oi_user', 'oi_timestamp',
164  $olduser, $newuser, $uid );
165  $this->updateTable( 'filearchive', 'fa_user_text', 'fa_user', 'fa_timestamp',
166  $olduser, $newuser, $uid );
167  }
168 
179  public function updateTable( $table, $usernamefield, $useridfield,
180  $timestampfield, $olduser, $newuser, $uid
181  ) {
182  $dbw = wfGetDB( DB_MASTER );
183 
184  $contribs = $dbw->selectField( $table, 'count(*)',
185  [ $usernamefield => $olduser->getName(), $useridfield => $uid ], __METHOD__ );
186 
187  if ( $contribs === 0 ) {
188  print "No edits to be re-attributed from table $table for uid $uid\n";
189 
190  return ( 0 );
191  }
192 
193  print "Found $contribs edits to be re-attributed from table $table for uid $uid\n";
194  if ( $uid !== $newuser->getId() ) {
195  print 'If you proceed, the uid field will be set to that ' .
196  'of the new user name (i.e. ' . $newuser->getId() . ") in these rows.\n";
197  }
198 
199  print 'Proceed? [N/y] ';
200  $stdin = fopen( 'php://stdin', 'rt' );
201  $line = fgets( $stdin );
202  fclose( $stdin );
203  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
204  print "Skipping at user's request\n";
205 
206  return ( 0 );
207  }
208 
209  $selectConds = [ $usernamefield => $olduser->getName(), $useridfield => $uid ];
210  $updateFields = [ $usernamefield => $newuser->getName(), $useridfield => $newuser->getId() ];
211 
212  while ( $contribs > 0 ) {
213  print 'Doing batch of up to approximately ' . $this->mBatchSize . "\n";
214  print 'Do this batch? [N/y] ';
215  $stdin = fopen( 'php://stdin', 'rt' );
216  $line = fgets( $stdin );
217  fclose( $stdin );
218  if ( $line[0] !== 'Y' && $line[0] !== 'y' ) {
219  print "Skipping at user's request\n";
220 
221  return ( 0 );
222  }
223  $this->beginTransaction( $dbw, __METHOD__ );
224  $result = $dbw->select( $table, $timestampfield, $selectConds, __METHOD__,
225  [ 'ORDER BY' => $timestampfield . ' DESC', 'LIMIT' => $this->mBatchSize ] );
226  if ( !$result ) {
227  print "There were rows for updating but now they are gone. Skipping.\n";
228  $this->rollbackTransaction( $dbw, __METHOD__ );
229 
230  return ( 0 );
231  }
232  $result->seek( $result->numRows() - 1 );
233  $row = $result->fetchObject();
234  $timestamp = $row->$timestampfield;
235  $updateCondsWithTime = array_merge( $selectConds, [ "$timestampfield >= $timestamp" ] );
236  $success = $dbw->update( $table, $updateFields, $updateCondsWithTime, __METHOD__ );
237  if ( $success ) {
238  $rowsDone = $dbw->affectedRows();
239  $this->commitTransaction( $dbw, __METHOD__ );
240  } else {
241  print "Problem with the update, rolling back and exiting\n";
242  $this->rollbackTransaction( $dbw, __METHOD__ );
243  exit( 1 );
244  }
245 
246  // $contribs = User::edits( $olduser->getId() );
247  $contribs = $dbw->selectField( $table, 'count(*)', $selectConds, __METHOD__ );
248  print "Updated $rowsDone edits; $contribs edits remaining to be re-attributed\n";
249  }
250 
251  return ( 0 );
252  }
253 }
254 
255 $maintClass = 'RenameUserCleanup';
256 require_once RUN_MAINTENANCE_IF_MAIN;
$maintClass
$maintClass
Definition: renameUserCleanup.php:255
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:1954
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:556
DB_SLAVE
const DB_SLAVE
Definition: Defines.php:34
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
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:3060
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:514
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:179
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:64
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
RenameUserCleanup\doUpdates
doUpdates( $olduser, $newuser, $uid)
Definition: renameUserCleanup.php:154
RenameUserCleanup\checkUserExistence
checkUserExistence( $olduser, $newuser)
Definition: renameUserCleanup.php:66