Migrate all callers of Hooks::run() to use the new HookContainer/HookRunner system. General principles: * Use DI if it is already used. We're not changing the way state is managed in this patch. * HookContainer is always injected, not HookRunner. HookContainer is a service, it's a more generic interface, it is the only thing that provides isRegistered() which is needed in some cases, and a HookRunner can be efficiently constructed from it (confirmed by benchmark). Because HookContainer is needed for object construction, it is also needed by all factories. * "Ask your friendly local base class". Big hierarchies like SpecialPage and ApiBase have getHookContainer() and getHookRunner() methods in the base class, and classes that extend that base class are not expected to know or care where the base class gets its HookContainer from. * ProtectedHookAccessorTrait provides protected getHookContainer() and getHookRunner() methods, getting them from the global service container. The point of this is to ease migration to DI by ensuring that call sites ask their local friendly base class rather than getting a HookRunner from the service container directly. * Private $this->hookRunner. In some smaller classes where accessor methods did not seem warranted, there is a private HookRunner property which is accessed directly. Very rarely (two cases), there is a protected property, for consistency with code that conventionally assumes protected=private, but in cases where the class might actually be overridden, a protected accessor is preferred over a protected property. * The last resort: Hooks::runner(). Mostly for static, file-scope and global code. In a few cases it was used for objects with broken construction schemes, out of horror or laziness. Constructors with new required arguments: * AuthManager * BadFileLookup * BlockManager * ClassicInterwikiLookup * ContentHandlerFactory * ContentSecurityPolicy * DefaultOptionsManager * DerivedPageDataUpdater * FullSearchResultWidget * HtmlCacheUpdater * LanguageFactory * LanguageNameUtils * LinkRenderer * LinkRendererFactory * LocalisationCache * MagicWordFactory * MessageCache * NamespaceInfo * PageEditStash * PageHandlerFactory * PageUpdater * ParserFactory * PermissionManager * RevisionStore * RevisionStoreFactory * SearchEngineConfig * SearchEngineFactory * SearchFormWidget * SearchNearMatcher * SessionBackend * SpecialPageFactory * UserNameUtils * UserOptionsManager * WatchedItemQueryService * WatchedItemStore Constructors with new optional arguments: * DefaultPreferencesFactory * Language * LinkHolderArray * MovePage * Parser * ParserCache * PasswordReset * Router setHookContainer() now required after construction: * AuthenticationProvider * ResourceLoaderModule * SearchEngine Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
219 lines
6.2 KiB
PHP
219 lines
6.2 KiB
PHP
<?php
|
|
/**
|
|
* Cleanup tables that have valid usernames with no user ID
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
* @ingroup Maintenance
|
|
*/
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use Wikimedia\Rdbms\IDatabase;
|
|
|
|
require_once __DIR__ . '/Maintenance.php';
|
|
|
|
/**
|
|
* Maintenance script that cleans up tables that have valid usernames with no
|
|
* user ID.
|
|
*
|
|
* @ingroup Maintenance
|
|
* @since 1.31
|
|
*/
|
|
class CleanupUsersWithNoId extends LoggedUpdateMaintenance {
|
|
private $prefix, $table, $assign;
|
|
private $triedCreations = [];
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->addDescription( 'Cleans up tables that have valid usernames with no user ID' );
|
|
$this->addOption( 'prefix', 'Interwiki prefix to apply to the usernames', true, true, 'p' );
|
|
$this->addOption( 'table', 'Only clean up this table', false, true );
|
|
$this->addOption( 'assign', 'Assign edits to existing local users if they exist', false, false );
|
|
$this->setBatchSize( 100 );
|
|
}
|
|
|
|
protected function getUpdateKey() {
|
|
return __CLASS__;
|
|
}
|
|
|
|
protected function doDBUpdates() {
|
|
$this->prefix = $this->getOption( 'prefix' );
|
|
$this->table = $this->getOption( 'table', null );
|
|
$this->assign = $this->getOption( 'assign' );
|
|
|
|
$this->cleanup(
|
|
'revision', 'rev_id', 'rev_user', 'rev_user_text',
|
|
[ 'rev_user' => 0 ], [ 'rev_timestamp', 'rev_id' ]
|
|
);
|
|
$this->cleanup(
|
|
'archive', 'ar_id', 'ar_user', 'ar_user_text',
|
|
[], [ 'ar_id' ]
|
|
);
|
|
$this->cleanup(
|
|
'logging', 'log_id', 'log_user', 'log_user_text',
|
|
[ 'log_user' => 0 ], [ 'log_timestamp', 'log_id' ]
|
|
);
|
|
$this->cleanup(
|
|
'image', 'img_name', 'img_user', 'img_user_text',
|
|
[ 'img_user' => 0 ], [ 'img_timestamp', 'img_name' ]
|
|
);
|
|
$this->cleanup(
|
|
'oldimage', [ 'oi_name', 'oi_timestamp' ], 'oi_user', 'oi_user_text',
|
|
[], [ 'oi_name', 'oi_timestamp' ]
|
|
);
|
|
$this->cleanup(
|
|
'filearchive', 'fa_id', 'fa_user', 'fa_user_text',
|
|
[], [ 'fa_id' ]
|
|
);
|
|
$this->cleanup(
|
|
'ipblocks', 'ipb_id', 'ipb_by', 'ipb_by_text',
|
|
[], [ 'ipb_id' ]
|
|
);
|
|
$this->cleanup(
|
|
'recentchanges', 'rc_id', 'rc_user', 'rc_user_text',
|
|
[], [ 'rc_id' ]
|
|
);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Calculate a "next" condition and progress display string
|
|
* @param IDatabase $dbw
|
|
* @param string[] $indexFields Fields in the index being ordered by
|
|
* @param object $row Database row
|
|
* @return string[] [ string $next, string $display ]
|
|
*/
|
|
private function makeNextCond( $dbw, $indexFields, $row ) {
|
|
$next = '';
|
|
$display = [];
|
|
for ( $i = count( $indexFields ) - 1; $i >= 0; $i-- ) {
|
|
$field = $indexFields[$i];
|
|
$display[] = $field . '=' . $row->$field;
|
|
$value = $dbw->addQuotes( $row->$field );
|
|
if ( $next === '' ) {
|
|
$next = "$field > $value";
|
|
} else {
|
|
$next = "$field > $value OR $field = $value AND ($next)";
|
|
}
|
|
}
|
|
$display = implode( ' ', array_reverse( $display ) );
|
|
return [ $next, $display ];
|
|
}
|
|
|
|
/**
|
|
* Cleanup a table
|
|
*
|
|
* @param string $table Table to migrate
|
|
* @param string|string[] $primaryKey Primary key of the table.
|
|
* @param string $idField User ID field name
|
|
* @param string $nameField User name field name
|
|
* @param array $conds Query conditions
|
|
* @param string[] $orderby Fields to order by
|
|
*/
|
|
protected function cleanup(
|
|
$table, $primaryKey, $idField, $nameField, array $conds, array $orderby
|
|
) {
|
|
if ( $this->table !== null && $this->table !== $table ) {
|
|
return;
|
|
}
|
|
|
|
$dbw = $this->getDB( DB_MASTER );
|
|
if ( !$dbw->fieldExists( $table, $idField ) ||
|
|
!$dbw->fieldExists( $table, $nameField )
|
|
) {
|
|
$this->output( "Skipping $table, fields $idField and/or $nameField do not exist\n" );
|
|
return;
|
|
}
|
|
|
|
$primaryKey = (array)$primaryKey;
|
|
$pkFilter = array_flip( $primaryKey );
|
|
$this->output( "Beginning cleanup of $table\n" );
|
|
|
|
$next = '1=1';
|
|
$countAssigned = 0;
|
|
$countPrefixed = 0;
|
|
$lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
|
|
while ( true ) {
|
|
// Fetch the rows needing update
|
|
$res = $dbw->select(
|
|
$table,
|
|
array_merge( $primaryKey, [ $idField, $nameField ], $orderby ),
|
|
array_merge( $conds, [ $next ] ),
|
|
__METHOD__,
|
|
[
|
|
'ORDER BY' => $orderby,
|
|
'LIMIT' => $this->mBatchSize,
|
|
]
|
|
);
|
|
if ( !$res->numRows() ) {
|
|
break;
|
|
}
|
|
|
|
// Update the existing rows
|
|
foreach ( $res as $row ) {
|
|
$name = $row->$nameField;
|
|
if ( $row->$idField || !User::isUsableName( $name ) ) {
|
|
continue;
|
|
}
|
|
|
|
$id = 0;
|
|
if ( $this->assign ) {
|
|
$id = User::idFromName( $name );
|
|
if ( !$id ) {
|
|
// See if any extension wants to create it.
|
|
if ( !isset( $this->triedCreations[$name] ) ) {
|
|
$this->triedCreations[$name] = true;
|
|
if ( !$this->getHookRunner()->onImportHandleUnknownUser( $name ) ) {
|
|
$id = User::idFromName( $name, User::READ_LATEST );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ( $id ) {
|
|
$set = [ $idField => $id ];
|
|
$counter = &$countAssigned;
|
|
} else {
|
|
$set = [ $nameField => substr( $this->prefix . '>' . $name, 0, 255 ) ];
|
|
$counter = &$countPrefixed;
|
|
}
|
|
|
|
$dbw->update(
|
|
$table,
|
|
$set,
|
|
array_intersect_key( (array)$row, $pkFilter ) + [
|
|
$idField => 0,
|
|
$nameField => $name,
|
|
],
|
|
__METHOD__
|
|
);
|
|
$counter += $dbw->affectedRows();
|
|
}
|
|
|
|
list( $next, $display ) = $this->makeNextCond( $dbw, $orderby, $row );
|
|
$this->output( "... $display\n" );
|
|
$lbFactory->waitForReplication();
|
|
}
|
|
|
|
$this->output(
|
|
"Completed cleanup, assigned $countAssigned and prefixed $countPrefixed row(s)\n"
|
|
);
|
|
}
|
|
}
|
|
|
|
$maintClass = CleanupUsersWithNoId::class;
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|