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__
85 foreach (
$res as $row ) {
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] ];
121 $fields[
'userid'] = $prefix .
'_user';
122 $fields[
'username'] = $prefix .
'_user_text';
125 if ( $prefix ===
'rev' ) {
126 $tables[] =
'revision_actor_temp';
127 $joins[
'revision_actor_temp'] = [
129 'rev_id = revactor_rev',
131 $fields[
'actorid'] =
'revactor_actor';
133 $fields[
'actorid'] = $prefix .
'_actor';
136 $sres = $db->select(
$tables, $fields, [ $field => $items ], __METHOD__, [], $joins );
144 $items = explode(
',',
$params[0] );
145 $log =
new LogPage( $row->log_type );
147 $log->addRelations(
'log_id', $items, $row->log_id );
151 $fields[
'userid'] =
'log_user';
152 $fields[
'username'] =
'log_user_text';
155 $fields[
'actorid'] =
'log_actor';
158 $sres = $db->select(
'logging', $fields, [
'log_id' => $items ], __METHOD__ );
164 $userIds = $userIPs = $userActors = [];
165 foreach ( $sres as $srow ) {
167 if ( $srow->userid > 0 ) {
168 $userIds[] = intval( $srow->userid );
169 } elseif ( $srow->username !=
'' ) {
170 $userIPs[] = $srow->username;
174 if ( $srow->actorid ) {
175 $userActors[] = intval( $srow->actorid );
176 } elseif ( $srow->userid > 0 ) {
185 $log->addRelations(
'target_author_id', $userIds, $row->log_id );
186 $log->addRelations(
'target_author_ip', $userIPs, $row->log_id );
189 $log->addRelations(
'target_author_actor', $userActors, $row->log_id );
192 $blockStart += $batchSize;
193 $blockEnd += $batchSize;
196 $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...
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.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
this hook is for auditing only RecentChangesLinked and Watchlist 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
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 error
const MIGRATION_WRITE_BOTH
require_once RUN_MAINTENANCE_IF_MAIN