Fix maintenance script that populates the ip_changes table
[lhc/web/wiklou.git] / maintenance / populateIpChanges.php
1 <?php
2 /**
3 * Find all revisions by logged out users and copy the rev_id,
4 * rev_timestamp, and a hex representation of rev_user_text to the
5 * new ip_changes table. This table is used to efficiently query for
6 * contributions within an IP range.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Maintenance
25 */
26
27 require_once __DIR__ . '/Maintenance.php';
28
29 use MediaWiki\MediaWikiServices;
30
31 /**
32 * Maintenance script that will find all rows in the revision table where
33 * rev_user = 0 (user is an IP), and copy relevant fields to ip_changes so
34 * that historical data will be available when querying for IP ranges.
35 *
36 * @ingroup Maintenance
37 */
38 class PopulateIpChanges extends LoggedUpdateMaintenance {
39 public function __construct() {
40 parent::__construct();
41
42 $this->addDescription( <<<TEXT
43 This script will find all rows in the revision table where the user is an IP,
44 and copy relevant fields to the ip_changes table. This backfilled data will
45 then be available when querying for IP ranges at Special:Contributions.
46 TEXT
47 );
48 $this->addOption( 'rev-id', 'The rev_id to start copying from. Default: 0', false, true );
49 $this->addOption(
50 'throttle',
51 'Wait this many milliseconds after copying each batch of revisions. Default: 0',
52 false,
53 true
54 );
55 $this->addOption( 'force', 'Run regardless of whether the database says it\'s been run already' );
56 }
57
58 public function doDBUpdates() {
59 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
60 $dbw = $this->getDB( DB_MASTER );
61 $throttle = intval( $this->getOption( 'throttle', 0 ) );
62 $start = $this->getOption( 'rev-id', 0 );
63 $end = $dbw->selectField( 'revision', 'MAX(rev_id)', false, __METHOD__ );
64 $blockStart = $start;
65 $revCount = 0;
66
67 $this->output( "Copying IP revisions to ip_changes, from rev_id $start to rev_id $end\n" );
68
69 while ( $blockStart <= $end ) {
70 $cond = "rev_id >= $blockStart AND rev_user = 0 ORDER BY rev_id ASC LIMIT " . $this->mBatchSize;
71 $rows = $dbw->select(
72 'revision',
73 [ 'rev_id', 'rev_timestamp', 'rev_user_text' ],
74 $cond,
75 __METHOD__
76 );
77
78 if ( !$rows || $rows->numRows() === 0 ) {
79 break;
80 }
81
82 $this->output( "...checking $this->mBatchSize revisions for IP edits that need copying, " .
83 "starting with rev_id $blockStart\n" );
84
85 foreach ( $rows as $row ) {
86 // Double-check to make sure this is an IP, e.g. not maintenance user or imported revision.
87 if ( IP::isValid( $row->rev_user_text ) ) {
88 $dbw->insert(
89 'ip_changes',
90 [
91 'ipc_rev_id' => $row->rev_id,
92 'ipc_rev_timestamp' => $row->rev_timestamp,
93 'ipc_hex' => IP::toHex( $row->rev_user_text ),
94 ],
95 __METHOD__,
96 'IGNORE'
97 );
98
99 $revCount++;
100 }
101
102 $blockStart = (int)$row->rev_id;
103 }
104
105 $blockStart++;
106
107 $lbFactory->waitForReplication();
108 usleep( $throttle * 1000 );
109 }
110
111 $this->output( "$revCount IP revisions copied.\n" );
112
113 return true;
114 }
115
116 protected function getUpdateKey() {
117 return 'populate ip_changes';
118 }
119 }
120
121 $maintClass = "PopulateIpChanges";
122 require_once RUN_MAINTENANCE_IF_MAIN;