25require_once __DIR__ .
'/Maintenance.php';
36 'fa' =>
'filearchive',
42 parent::__construct();
43 $this->
addDescription(
'Migrate log params to new table and index for searching' );
48 return 'populate log_search';
52 return 'log_search table already populated.';
60 if ( !$db->tableExists(
'log_search' ) ) {
61 $this->
error(
"log_search does not exist" );
65 $start = $db->selectField(
'logging',
'MIN(log_id)',
'', __FUNCTION__ );
67 $this->
output(
"Nothing to do.\n" );
71 $end = $db->selectField(
'logging',
'MAX(log_id)',
'', __FUNCTION__ );
74 $end += $batchSize - 1;
76 $blockEnd = $start + $batchSize - 1;
78 $delTypes = [
'delete',
'suppress' ];
79 while ( $blockEnd <= $end ) {
80 $this->
output(
"...doing log_id from $blockStart to $blockEnd\n" );
81 $cond =
"log_id BETWEEN " . (int)$blockStart .
" AND " . (
int)$blockEnd;
83 'logging', [
'log_id',
'log_type',
'log_action',
'log_params' ], $cond, __FUNCTION__
95 if ( $field ==
null ) {
98 if ( $field ==
null ) {
99 $this->
output(
"Invalid param type for {$row->log_id}\n" );
103 $db->update(
'logging',
104 [
'log_params' => implode(
',',
$params ) ],
105 [
'log_id' => $row->log_id ] );
108 $items = explode(
',',
$params[1] );
109 $log =
new LogPage( $row->log_type );
111 $log->addRelations( $field, $items, $row->log_id );
113 $prefix = substr( $field, 0, strpos( $field,
'_' ) );
114 if ( !isset( self::$tableMap[$prefix] ) ) {
117 $tables = [ self::$tableMap[$prefix] ];
122 $fields[
'userid'] = $prefix .
'_user';
123 $fields[
'username'] = $prefix .
'_user_text';
127 if ( $prefix ===
'rev' ) {
128 $tables[] =
'revision_actor_temp';
129 $joins[
'revision_actor_temp'] = [
131 'rev_id = revactor_rev',
133 $fields[
'actorid'] =
'revactor_actor';
135 $fields[
'actorid'] = $prefix .
'_actor';
138 $sres = $db->select(
$tables, $fields, [ $field => $items ], __METHOD__, [], $joins );
146 $items = explode(
',',
$params[0] );
147 $log =
new LogPage( $row->log_type );
149 $log->addRelations(
'log_id', $items, $row->log_id );
154 $fields[
'userid'] =
'log_user';
155 $fields[
'username'] =
'log_user_text';
159 $fields[
'actorid'] =
'log_actor';
162 $sres = $db->select(
'logging', $fields, [
'log_id' => $items ], __METHOD__ );
168 $userIds = $userIPs = $userActors = [];
169 foreach ( $sres
as $srow ) {
171 if ( $srow->userid > 0 ) {
172 $userIds[] = intval( $srow->userid );
173 } elseif ( $srow->username !=
'' ) {
174 $userIPs[] = $srow->username;
178 if ( $srow->actorid ) {
179 $userActors[] = intval( $srow->actorid );
180 } elseif ( $srow->userid > 0 ) {
189 $log->addRelations(
'target_author_id', $userIds, $row->log_id );
190 $log->addRelations(
'target_author_ip', $userIPs, $row->log_id );
193 $log->addRelations(
'target_author_actor', $userActors, $row->log_id );
196 $blockStart += $batchSize;
197 $blockEnd += $batchSize;
200 $this->
output(
"Done populating log_search table.\n" );
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.
static typeAction( $row, $type, $action, $right='')
Class to simplify the use of log pages.
static extractParams( $blob)
Extract a parameter array from a blob.
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.
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.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
setBatchSize( $s=0)
Set the batch size.
Maintenance script that makes the required database updates for populating the log_search table retro...
doDBUpdates()
Do the actual work.
updateSkippedMessage()
Message to show that the update was done already and was just skipped.
getUpdateKey()
Get the update key name to go in the update log table.
__construct()
Default constructor.
static getRelationType( $typeName)
Get DB field name for URL param... Future code for other things may also track other types of revisio...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static newFromId( $id)
Static factory method for creation from a given user ID.
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_OLD
const SCHEMA_COMPAT_WRITE_NEW
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
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
require_once RUN_MAINTENANCE_IF_MAIN