MediaWiki 1.41.2
cleanupUsersWithNoId.php
Go to the documentation of this file.
1<?php
25
26require_once __DIR__ . '/Maintenance.php';
27
36 private $prefix, $table, $assign;
37 private $triedCreations = [];
38
39 public function __construct() {
40 parent::__construct();
41 $this->addDescription( 'Cleans up tables that have valid usernames with no user ID' );
42 $this->addOption( 'prefix', 'Interwiki prefix to apply to the usernames', true, true, 'p' );
43 $this->addOption( 'table', 'Only clean up this table', false, true );
44 $this->addOption( 'assign', 'Assign edits to existing local users if they exist', false, false );
45 $this->setBatchSize( 100 );
46 }
47
48 protected function getUpdateKey() {
49 return __CLASS__;
50 }
51
52 protected function doDBUpdates() {
53 $this->prefix = $this->getOption( 'prefix' );
54 $this->table = $this->getOption( 'table', null );
55 $this->assign = $this->getOption( 'assign' );
56
57 $this->cleanup(
58 'revision', 'rev_id', 'rev_user', 'rev_user_text',
59 [ 'rev_user' => 0 ], [ 'rev_timestamp', 'rev_id' ]
60 );
61 $this->cleanup(
62 'archive', 'ar_id', 'ar_user', 'ar_user_text',
63 [], [ 'ar_id' ]
64 );
65 $this->cleanup(
66 'logging', 'log_id', 'log_user', 'log_user_text',
67 [ 'log_user' => 0 ], [ 'log_timestamp', 'log_id' ]
68 );
69 $this->cleanup(
70 'image', 'img_name', 'img_user', 'img_user_text',
71 [ 'img_user' => 0 ], [ 'img_timestamp', 'img_name' ]
72 );
73 $this->cleanup(
74 'oldimage', [ 'oi_name', 'oi_timestamp' ], 'oi_user', 'oi_user_text',
75 [], [ 'oi_name', 'oi_timestamp' ]
76 );
77 $this->cleanup(
78 'filearchive', 'fa_id', 'fa_user', 'fa_user_text',
79 [], [ 'fa_id' ]
80 );
81 $this->cleanup(
82 'ipblocks', 'ipb_id', 'ipb_by', 'ipb_by_text',
83 [], [ 'ipb_id' ]
84 );
85 $this->cleanup(
86 'recentchanges', 'rc_id', 'rc_user', 'rc_user_text',
87 [], [ 'rc_id' ]
88 );
89
90 return true;
91 }
92
100 private function makeNextCond( $dbw, $indexFields, $row ) {
101 $display = [];
102 $conds = [];
103 foreach ( $indexFields as $field ) {
104 $display[] = $field . '=' . $row->$field;
105 $conds[ $field ] = $row->$field;
106 }
107 $display = implode( ' ', $display );
108 $conds = $dbw->buildComparison( '>', $conds );
109 return [ $conds, $display ];
110 }
111
122 protected function cleanup(
123 $table, $primaryKey, $idField, $nameField, array $conds, array $orderby
124 ) {
125 if ( $this->table !== null && $this->table !== $table ) {
126 return;
127 }
128
129 $dbw = $this->getDB( DB_PRIMARY );
130 if ( !$dbw->fieldExists( $table, $idField, __METHOD__ ) ||
131 !$dbw->fieldExists( $table, $nameField, __METHOD__ )
132 ) {
133 $this->output( "Skipping $table, fields $idField and/or $nameField do not exist\n" );
134 return;
135 }
136
137 $primaryKey = (array)$primaryKey;
138 $pkFilter = array_fill_keys( $primaryKey, true );
139 $this->output( "Beginning cleanup of $table\n" );
140
141 $next = '1=1';
142 $countAssigned = 0;
143 $countPrefixed = 0;
144 $userNameUtils = $this->getServiceContainer()->getUserNameUtils();
145 $userIdentityLookup = $this->getServiceContainer()->getUserIdentityLookup();
146 while ( true ) {
147 // Fetch the rows needing update
148 $res = $dbw->newSelectQueryBuilder()
149 ->select( array_merge( $primaryKey, [ $idField, $nameField ], $orderby ) )
150 ->from( $table )
151 ->where( array_merge( $conds, [ $next ] ) )
152 ->orderBy( $orderby )
153 ->limit( $this->mBatchSize )
154 ->caller( __METHOD__ )
155 ->fetchResultSet();
156 if ( !$res->numRows() ) {
157 break;
158 }
159
160 // Update the existing rows
161 foreach ( $res as $row ) {
162 $name = $row->$nameField;
163 if ( $row->$idField || !$userNameUtils->isUsable( $name ) ) {
164 continue;
165 }
166
167 $id = 0;
168 if ( $this->assign ) {
169 $userIdentity = $userIdentityLookup->getUserIdentityByName( $name );
170 if ( !$userIdentity || !$userIdentity->isRegistered() ) {
171 // See if any extension wants to create it.
172 if ( !isset( $this->triedCreations[$name] ) ) {
173 $this->triedCreations[$name] = true;
174 if ( !$this->getHookRunner()->onImportHandleUnknownUser( $name ) ) {
175 $userIdentity = $userIdentityLookup
176 ->getUserIdentityByName( $name, IDBAccessObject::READ_LATEST );
177 $id = $userIdentity ? $userIdentity->getId() : 0;
178 }
179 }
180 }
181 }
182 if ( $id ) {
183 $set = [ $idField => $id ];
184 $counter = &$countAssigned;
185 } else {
186 $set = [ $nameField => substr( $this->prefix . '>' . $name, 0, 255 ) ];
187 $counter = &$countPrefixed;
188 }
189
190 $dbw->update(
191 $table,
192 $set,
193 array_intersect_key( (array)$row, $pkFilter ) + [
194 $idField => 0,
195 $nameField => $name,
196 ],
197 __METHOD__
198 );
199 $counter += $dbw->affectedRows();
200 }
201
202 // @phan-suppress-next-line PhanTypeMismatchArgumentNullable,PhanPossiblyUndeclaredVariable row is set
203 [ $next, $display ] = $this->makeNextCond( $dbw, $orderby, $row );
204 $this->output( "... $display\n" );
205 $this->waitForReplication();
206 }
207
208 $this->output(
209 "Completed cleanup, assigned $countAssigned and prefixed $countPrefixed row(s)\n"
210 );
211 }
212}
213
214$maintClass = CleanupUsersWithNoId::class;
215require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
Maintenance script that cleans up tables that have valid usernames with no user ID.
getUpdateKey()
Get the update key name to go in the update log table.
cleanup( $table, $primaryKey, $idField, $nameField, array $conds, array $orderby)
Cleanup a table.
__construct()
Default constructor.
doDBUpdates()
Do the actual work.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
output( $out, $channel=null)
Throw some output to the user.
getHookRunner()
Get a HookRunner for running core hooks.
waitForReplication()
Wait for replica DBs to catch up.
getServiceContainer()
Returns the main service container.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
setBatchSize( $s=0)
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:36
const DB_PRIMARY
Definition defines.php:28