MediaWiki REL1_30
populateIpChanges.php
Go to the documentation of this file.
1<?php
27require_once __DIR__ . '/Maintenance.php';
28
30
39 public function __construct() {
40 parent::__construct();
41
42 $this->addDescription( <<<TEXT
43This script will find all rows in the revision table where the user is an IP,
44and copy relevant fields to the ip_changes table. This backfilled data will
45then be available when querying for IP ranges at Special:Contributions.
46TEXT
47 );
48 $this->addOption( 'rev-id', 'The rev_id to start copying from. Default: 0', false, true );
49 $this->addOption(
50 'max-rev-id',
51 'The rev_id to stop at. Default: result of MAX(rev_id)',
52 false,
53 true
54 );
55 $this->addOption(
56 'throttle',
57 'Wait this many milliseconds after copying each batch of revisions. Default: 0',
58 false,
59 true
60 );
61 $this->addOption( 'force', 'Run regardless of whether the database says it\'s been run already' );
62 }
63
64 public function doDBUpdates() {
65 $dbw = $this->getDB( DB_MASTER );
66
67 if ( !$dbw->tableExists( 'ip_changes' ) ) {
68 $this->error( 'ip_changes table does not exist', true );
69 }
70
71 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
72 $dbr = $this->getDB( DB_REPLICA, [ 'vslow' ] );
73 $throttle = intval( $this->getOption( 'throttle', 0 ) );
74 $maxRevId = intval( $this->getOption( 'max-rev-id', 0 ) );
75 $start = $this->getOption( 'rev-id', 0 );
76 $end = $maxRevId > 0
77 ? $maxRevId
78 : $dbw->selectField( 'revision', 'MAX(rev_id)', false, __METHOD__ );
79
80 if ( empty( $end ) ) {
81 $this->output( "No revisions found, aborting.\n" );
82 return true;
83 }
84
85 $blockStart = $start;
86 $attempted = 0;
87 $inserted = 0;
88
89 $this->output( "Copying IP revisions to ip_changes, from rev_id $start to rev_id $end\n" );
90
91 while ( $blockStart <= $end ) {
92 $blockEnd = min( $blockStart + $this->mBatchSize, $end );
93 $rows = $dbr->select(
94 'revision',
95 [ 'rev_id', 'rev_timestamp', 'rev_user_text' ],
96 [ "rev_id BETWEEN $blockStart AND $blockEnd", 'rev_user' => 0 ],
97 __METHOD__
98 );
99
100 $numRows = $rows->numRows();
101
102 if ( !$rows || $numRows === 0 ) {
103 $blockStart = $blockEnd + 1;
104 continue;
105 }
106
107 $this->output( "...checking $numRows revisions for IP edits that need copying, " .
108 "between rev_ids $blockStart and $blockEnd\n" );
109
110 $insertRows = [];
111 foreach ( $rows as $row ) {
112 // Make sure this is really an IP, e.g. not maintenance user or imported revision.
113 if ( IP::isValid( $row->rev_user_text ) ) {
114 $insertRows[] = [
115 'ipc_rev_id' => $row->rev_id,
116 'ipc_rev_timestamp' => $row->rev_timestamp,
117 'ipc_hex' => IP::toHex( $row->rev_user_text ),
118 ];
119
120 $attempted++;
121 }
122 }
123
124 if ( $insertRows ) {
125 $dbw->insert( 'ip_changes', $insertRows, __METHOD__, 'IGNORE' );
126
127 $inserted += $dbw->affectedRows();
128 }
129
130 $lbFactory->waitForReplication();
131 usleep( $throttle * 1000 );
132
133 $blockStart = $blockEnd + 1;
134 }
135
136 $this->output( "Attempted to insert $attempted IP revisions, $inserted actually done.\n" );
137
138 return true;
139 }
140
141 protected function getUpdateKey() {
142 return 'populate ip_changes';
143 }
144}
145
146$maintClass = "PopulateIpChanges";
147require_once RUN_MAINTENANCE_IF_MAIN;
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a copy
Definition COPYING.txt:87
A collection of public static functions to play with IP address and IP ranges.
Definition IP.php:67
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.
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.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Maintenance script that will find all rows in the revision table where rev_user = 0 (user is an IP),...
__construct()
Default constructor.
doDBUpdates()
Do the actual work.
getUpdateKey()
Get the update key name to go in the update log table.
if(! $regexes) $dbr
Definition cleanup.php:94
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 then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
Definition deferred.txt:16
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
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
Definition hooks.txt:2746
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
Definition hooks.txt:2581
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since then
Definition skin.txt:11