26require_once __DIR__ .
'/../Maintenance.php';
39 parent::__construct();
40 $this->
addDescription(
'Migrates actors from pre-1.31 columns to the \'actor\' table' );
41 $this->
addOption(
'tables',
'List of tables to process, comma-separated',
false,
true );
50 return $this->
tables ===
null || in_array( $table, $this->
tables,
true );
58 "...cannot update while \$wgActorTableSchemaMigrationStage lacks SCHEMA_COMPAT_WRITE_NEW\n"
68 if ( $this->
doTable(
'user' ) ) {
69 $this->
output(
"Creating actor entries for all registered users\n" );
72 $max = $dbw->selectField(
'user',
'MAX(user_id)',
'', __METHOD__ );
74 while ( $end < $max ) {
76 $end = min( $start + $this->mBatchSize, $max );
77 $this->
output(
"... $start - $end\n" );
81 [
'actor_user' =>
'user_id',
'actor_name' =>
'user_name' ],
82 [
"user_id >= $start",
"user_id <= $end" ],
85 [
'ORDER BY' => [
'user_id' ] ]
87 $count += $dbw->affectedRows();
90 $this->
output(
"Completed actor creation, added $count new actor(s)\n" );
92 $this->
output(
"Checking that actors exist for all registered users\n" );
94 $anyMissing =
$dbr->selectField(
97 [
'actor_id' =>
null ],
100 [
'actor' => [
'LEFT JOIN',
'actor_user = user_id' ] ]
103 $this->
error(
'Some users lack actors; run without --tables or include `user` in --tables.' );
106 $this->
output(
"Ok, continuing.\n" );
111 'revision',
'rev_id', [
'revactor_timestamp' =>
'rev_timestamp',
'revactor_page' =>
'rev_page' ],
112 'rev_user',
'rev_user_text',
'revactor_rev',
'revactor_actor'
114 $errors += $this->
migrate(
'archive',
'ar_id',
'ar_user',
'ar_user_text',
'ar_actor' );
115 $errors += $this->
migrate(
'ipblocks',
'ipb_id',
'ipb_by',
'ipb_by_text',
'ipb_by_actor' );
116 $errors += $this->
migrate(
'image',
'img_name',
'img_user',
'img_user_text',
'img_actor' );
118 'oldimage', [
'oi_name',
'oi_timestamp' ],
'oi_user',
'oi_user_text',
'oi_actor'
120 $errors += $this->
migrate(
'filearchive',
'fa_id',
'fa_user',
'fa_user_text',
'fa_actor' );
121 $errors += $this->
migrate(
'recentchanges',
'rc_id',
'rc_user',
'rc_user_text',
'rc_actor' );
122 $errors += $this->
migrate(
'logging',
'log_id',
'log_user',
'log_user_text',
'log_actor' );
126 return $errors === 0;
139 for ( $i = count( $primaryKey ) - 1; $i >= 0; $i-- ) {
140 $field = $primaryKey[$i];
141 $display[] = $field .
'=' . $row->$field;
142 $value = $dbw->addQuotes( $row->$field );
143 if ( $next ===
'' ) {
144 $next =
"$field > $value";
146 $next =
"$field > $value OR $field = $value AND ($next)";
149 $display = implode(
' ', array_reverse( $display ) );
150 return [ $next, $display ];
161 $idSubquery = $dbw->buildSelectSubquery(
164 [
"$userField = actor_user" ],
167 $nameSubquery = $dbw->buildSelectSubquery(
170 [
"$nameField = actor_name" ],
173 return "CASE WHEN $userField = 0 OR $userField IS NULL THEN $nameSubquery ELSE $idSubquery END";
194 foreach (
$rows as $index => $row ) {
195 $keep[$index] =
true;
196 if ( $row->actor_id ===
null ) {
200 $name = $row->$nameField;
202 if ( !isset( $complainedAboutUsers[
$name] ) ) {
203 $complainedAboutUsers[
$name] =
true;
205 "User name \"$name\" is usable, cannot create an anonymous actor for it."
206 .
" Run maintenance/cleanupUsersWithNoId.php to fix this situation.\n"
209 unset( $keep[$index] );
212 $needActors[
$name] = 0;
221 array_map(
function ( $v ) {
225 }, array_keys( $needActors ) ),
232 [
'actor_id',
'actor_name' ],
233 [
'actor_name' => array_keys( $needActors ) ],
236 foreach (
$res as $row ) {
237 $needActors[$row->actor_name] = $row->actor_id;
240 if ( $row->actor_id ===
null ) {
241 $row->actor_id = $needActors[$row->$nameField];
262 protected function migrate( $table, $primaryKey, $userField, $nameField, $actorField ) {
263 if ( !$this->
doTable( $table ) ) {
264 $this->
output(
"Skipping $table, not included in --tables\n" );
268 $complainedAboutUsers = [];
270 $primaryKey = (
array)$primaryKey;
271 $pkFilter = array_flip( $primaryKey );
273 "Beginning migration of $table.$userField and $table.$nameField to $table.$actorField\n"
287 array_merge( $primaryKey, [ $userField, $nameField,
'actor_id' => $actorIdSubquery ] ),
294 'ORDER BY' => $primaryKey,
295 'LIMIT' => $this->mBatchSize,
298 if ( !
$res->numRows() ) {
304 $lastRow = end(
$rows );
306 $dbw, $nameField,
$rows, $complainedAboutUsers, $countErrors
311 if ( !$row->actor_id ) {
314 "Could not make actor for row with $display "
315 .
"$userField={$row->$userField} $nameField={$row->$nameField}\n"
323 $actorField => $row->actor_id,
325 array_intersect_key( (
array)$row, $pkFilter ) + [
330 $countUpdated += $dbw->affectedRows();
333 list( $next, $display ) = $this->
makeNextCond( $dbw, $primaryKey, $lastRow );
334 $this->
output(
"... $display\n" );
339 "Completed migration, updated $countUpdated row(s) with $countActors new actor(s), "
340 .
"$countErrors error(s)\n"
362 $table, $primaryKey, $extra, $userField, $nameField, $newPrimaryKey, $actorField
364 if ( !$this->
doTable( $table ) ) {
365 $this->
output(
"Skipping $table, not included in --tables\n" );
369 $complainedAboutUsers = [];
371 $newTable = $table .
'_actor_temp';
373 "Beginning migration of $table.$userField and $table.$nameField to $newTable.$actorField\n"
386 [ $table, $newTable ],
387 [ $primaryKey, $userField, $nameField,
'actor_id' => $actorIdSubquery ] + $extra,
388 [ $newPrimaryKey =>
null ] + $next,
391 'ORDER BY' => $primaryKey,
392 'LIMIT' => $this->mBatchSize,
395 $newTable => [
'LEFT JOIN',
"{$primaryKey}={$newPrimaryKey}" ],
398 if ( !
$res->numRows() ) {
404 $lastRow = end(
$rows );
406 $dbw, $nameField,
$rows, $complainedAboutUsers, $countErrors
414 if ( !$row->actor_id ) {
417 "Could not make actor for row with $display "
418 .
"$userField={$row->$userField} $nameField={$row->$nameField}\n"
424 $newPrimaryKey => $row->$primaryKey,
425 $actorField => $row->actor_id,
427 foreach ( $extra
as $to => $from ) {
428 $ins[$to] = $row->$to;
431 $updates[] = $row->$primaryKey;
434 $dbw->insert( $newTable, $inserts, __METHOD__ );
435 $countUpdated += $dbw->affectedRows();
440 list( $n, $display ) = $this->
makeNextCond( $dbw, [ $primaryKey ], $lastRow );
442 $this->
output(
"... $display\n" );
446 "Completed migration, updated $countUpdated row(s) with $countActors new actor(s), "
447 .
"$countErrors error(s)\n"
457 if ( !$this->
doTable(
'log_search' ) ) {
458 $this->
output(
"Skipping log_search, not included in --tables\n" );
462 $complainedAboutUsers = [];
464 $primaryKey = [
'ls_value',
'ls_log_id' ];
465 $this->
output(
"Beginning migration of log_search\n" );
473 $anyBad = $dbw->selectField(
476 [
'ls_field' =>
'target_author_actor',
'ls_value' =>
'' ],
481 $this->
output(
"... Deleting bogus rows due to T215525\n" );
484 [
'ls_field' =>
'target_author_actor',
'ls_value' =>
'' ],
487 $ct = $dbw->affectedRows();
488 $this->
output(
"... Deleted $ct bogus row(s) from T215525\n" );
496 [
'log_search',
'actor' ],
497 [
'ls_value',
'ls_log_id',
'actor_id' ],
499 'ls_field' =>
'target_author_id',
504 'ORDER BY' => $primaryKey,
505 'LIMIT' => $this->mBatchSize,
507 [
'actor' => [
'LEFT JOIN',
'actor_user = ' . $dbw->buildIntegerCast(
'ls_value' ) ] ]
509 if ( !
$res->numRows() ) {
515 foreach (
$res as $row ) {
517 if ( !$row->actor_id ) {
519 $this->
error(
"No actor for target_author_id row with $display\n" );
524 'ls_field' =>
'target_author_actor',
525 'ls_value' => $row->actor_id,
526 'ls_log_id' => $row->ls_log_id,
529 $dbw->insert(
'log_search', $ins, __METHOD__, [
'IGNORE' ] );
530 $countInserted += $dbw->affectedRows();
532 list( $next, $display ) = $this->
makeNextCond( $dbw, $primaryKey, $lastRow );
533 $this->
output(
"... target_author_id, $display\n" );
541 [
'log_search',
'actor' ],
542 [
'ls_value',
'ls_log_id',
'actor_id' ],
544 'ls_field' =>
'target_author_ip',
549 'ORDER BY' => $primaryKey,
550 'LIMIT' => $this->mBatchSize,
552 [
'actor' => [
'LEFT JOIN',
'ls_value = actor_name' ] ]
554 if ( !
$res->numRows() ) {
560 $lastRow = end(
$rows );
562 $dbw,
'ls_value',
$rows, $complainedAboutUsers, $countErrors
568 if ( !$row->actor_id ) {
570 $this->
error(
"Could not make actor for target_author_ip row with $display\n" );
575 'ls_field' =>
'target_author_actor',
576 'ls_value' => $row->actor_id,
577 'ls_log_id' => $row->ls_log_id,
580 $dbw->insert(
'log_search', $ins, __METHOD__, [
'IGNORE' ] );
581 $countInserted += $dbw->affectedRows();
583 list( $next, $display ) = $this->
makeNextCond( $dbw, $primaryKey, $lastRow );
584 $this->
output(
"... target_author_ip, $display\n" );
589 "Completed migration, inserted $countInserted row(s) with $countActors new actor(s), "
590 .
"$countErrors error(s)\n"
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
error( $err, $die=0)
Throw an error to the user.
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.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
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)
Set the batch size.
Maintenance script that migrates actors from pre-1.31 columns to the 'actor' table.
addActorsForRows(IDatabase $dbw, $nameField, array &$rows, array &$complainedAboutUsers, &$countErrors)
Add actors for anons in a set of rows.
doDBUpdates()
Do the actual work.
migrate( $table, $primaryKey, $userField, $nameField, $actorField)
Migrate actors in a table.
makeActorIdSubquery( $dbw, $userField, $nameField)
Make the subqueries for actor_id
migrateLogSearch()
Migrate actors in the log_search table.
__construct()
Default constructor.
makeNextCond( $dbw, $primaryKey, $row)
Calculate a "next" condition and a display string.
migrateToTemp( $table, $primaryKey, $extra, $userField, $nameField, $newPrimaryKey, $actorField)
Migrate actors in a table to a temporary table.
getUpdateKey()
Get the update key name to go in the update log table.
static isUsableName( $name)
Usernames which fail to pass this function will be blocked from user login and new account registrati...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
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
const SCHEMA_COMPAT_WRITE_NEW
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 also a ContextSource after deleting those rows but within the same transaction $rows
Allows to change the fields on the form that will be generated $name
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
In both all secondary updates will be triggered handle like object that caches derived data representing a and can trigger updates of cached copies of that e g in the links tables