25 require_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.';
57 if ( !$db->tableExists(
'log_search' ) ) {
58 $this->
error(
"log_search does not exist" );
62 $start = $db->selectField(
'logging',
'MIN(log_id)',
false, __FUNCTION__ );
64 $this->
output(
"Nothing to do.\n" );
68 $end = $db->selectField(
'logging',
'MAX(log_id)',
false, __FUNCTION__ );
71 $end += $this->mBatchSize - 1;
73 $blockEnd = $start + $this->mBatchSize - 1;
75 $delTypes = [
'delete',
'suppress' ];
76 while ( $blockEnd <= $end ) {
77 $this->
output(
"...doing log_id from $blockStart to $blockEnd\n" );
78 $cond =
"log_id BETWEEN $blockStart AND $blockEnd";
79 $res = $db->select(
'logging',
'*', $cond, __FUNCTION__ );
90 if ( $field == null ) {
93 if ( $field == null ) {
94 $this->
output(
"Invalid param type for {$row->log_id}\n" );
98 $db->update(
'logging',
99 [
'log_params' => implode(
',',
$params ) ],
100 [
'log_id' => $row->log_id ] );
103 $items = explode(
',',
$params[1] );
104 $log =
new LogPage( $row->log_type );
106 $log->addRelations( $field, $items, $row->log_id );
108 $prefix = substr( $field, 0, strpos( $field,
'_' ) );
109 if ( !isset( self::$tableMap[$prefix] ) ) {
112 $table = self::$tableMap[$prefix];
113 $userField = $prefix .
'_user';
114 $userTextField = $prefix .
'_user_text';
116 $userIds = $userIPs = [];
117 $sres = $db->select( $table,
118 [ $userField, $userTextField ],
121 foreach ( $sres
as $srow ) {
122 if ( $srow->$userField > 0 ) {
123 $userIds[] = intval( $srow->$userField );
124 } elseif ( $srow->$userTextField !=
'' ) {
125 $userIPs[] = $srow->$userTextField;
129 $log->addRelations(
'target_author_id', $userIds, $row->log_id );
130 $log->addRelations(
'target_author_ip', $userIPs, $row->log_id );
138 $items = explode(
',',
$params[0] );
139 $log =
new LogPage( $row->log_type );
141 $log->addRelations(
'log_id', $items, $row->log_id );
143 $userIds = $userIPs = [];
144 $sres = $db->select(
'logging',
145 [
'log_user',
'log_user_text' ],
146 [
'log_id' => $items ]
148 foreach ( $sres
as $srow ) {
149 if ( $srow->log_user > 0 ) {
150 $userIds[] = intval( $srow->log_user );
152 $userIPs[] = $srow->log_user_text;
155 $log->addRelations(
'target_author_id', $userIds, $row->log_id );
156 $log->addRelations(
'target_author_ip', $userIPs, $row->log_id );
163 $this->
output(
"Done populating log_search table.\n" );
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Maintenance script that makes the required database updates for populating the log_search table retro...
getDB($db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
require_once RUN_MAINTENANCE_IF_MAIN
static typeAction($row, $type, $action, $right= '')
static isIPAddress($ip)
Determine if a string is as valid IP address or network (CIDR prefix).
static extractParams($blob)
Extract a parameter array from a blob.
Class to simplify the use of log pages.
static getRelationType($typeName)
Get DB field name for URL param...
addDescription($text)
Set the description text.
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
output($out, $channel=null)
Throw some output to the user.
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
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
int $mBatchSize
Batch size.
error($err, $die=0)
Throw an error to the user.
setBatchSize($s=0)
Set the batch size.