3 * Script to clean up broken page links when somebody turns on $wgCapitalLinks.
5 * Usage: php cleanupCaps.php [--dry-run]
7 * --dry-run don't actually try moving them
9 * Copyright (C) 2005 Brion Vibber <brion@pobox.com>
10 * http://www.mediawiki.org/
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * http://www.gnu.org/copyleft/gpl.html
27 * @author Brion Vibber <brion at pobox.com>
29 * @subpackage maintenance
32 $options = array( 'dry-run' );
34 require_once( 'commandLine.inc' );
35 require_once( 'FiveUpgrade.inc' );
37 class CapsCleanup
extends FiveUpgrade
{
38 function CapsCleanup( $dryrun = false, $namespace=0 ) {
39 parent
::FiveUpgrade();
41 $this->maxLag
= 10; # if slaves are lagged more than 10 secs, wait
42 $this->dryrun
= $dryrun;
43 $this->namespace = intval( $namespace );
47 global $wgCapitalLinks;
48 if( $wgCapitalLinks ) {
49 echo "\$wgCapitalLinks is on -- no need for caps links cleanup.\n";
53 $this->runTable( 'page', 'WHERE page_namespace=' . $this->namespace,
54 array( &$this, 'processPage' ) );
57 function init( $count, $table ) {
60 $this->count
= $count;
61 $this->startTime
= wfTime();
62 $this->table
= $table;
65 function progress( $updated ) {
66 $this->updated +
= $updated;
68 if( $this->processed %
100 != 0 ) {
71 $portion = $this->processed
/ $this->count
;
72 $updateRate = $this->updated
/ $this->processed
;
75 $delta = $now - $this->startTime
;
76 $estimatedTotalTime = $delta / $portion;
77 $eta = $this->startTime +
$estimatedTotalTime;
79 printf( "%s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n",
80 wfTimestamp( TS_DB
, intval( $now ) ),
83 wfTimestamp( TS_DB
, intval( $eta ) ),
86 $this->processed
/ $delta,
87 $updateRate * 100.0 );
91 function runTable( $table, $where, $callback ) {
92 $fname = 'CapsCleanup::buildTable';
94 $count = $this->dbw
->selectField( $table, 'count(*)', '', $fname );
95 $this->init( $count, 'page' );
96 $this->log( "Processing $table..." );
98 $tableName = $this->dbr
->tableName( $table );
99 $sql = "SELECT * FROM $tableName $where";
100 $result = $this->dbr
->query( $sql, $fname );
102 while( $row = $this->dbr
->fetchObject( $result ) ) {
103 $updated = call_user_func( $callback, $row );
105 $this->log( "Finished $table... $this->updated of $this->processed rows updated" );
106 $this->dbr
->freeResult( $result );
109 function processPage( $row ) {
112 $current = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
113 $display = $current->getPrefixedText();
114 $upper = $row->page_title
;
115 $lower = $wgContLang->lcfirst( $row->page_title
);
116 if( $upper == $lower ) {
117 $this->log( "\"$display\" already lowercase." );
118 return $this->progress( 0 );
121 $target = Title
::makeTitle( $row->page_namespace
, $lower );
122 $targetDisplay = $target->getPrefixedText();
123 if( $target->exists() ) {
124 $this->log( "\"$display\" skipped; \"$targetDisplay\" already exists" );
125 return $this->progress( 0 );
128 if( $this->dryrun
) {
129 $this->log( "\"$display\" -> \"$targetDisplay\": DRY RUN, NOT MOVED" );
132 $ok = $current->moveTo( $target, false, 'Converting page titles to lowercase' );
133 $this->log( "\"$display\" -> \"$targetDisplay\": $ok" );
136 $this->progress( 1 );
138 if( $row->page_namespace
== $this->namespace ) {
139 $talk = $target->getTalkPage();
141 $row->page_namespace
= $talk->getNamespace();
142 if( $talk->exists() ) {
143 return $this->processPage( $row );
147 $this->progress( 0 );
153 $wgUser->setName( 'Conversion script' );
154 $ns = isset( $options['namespace'] ) ?
$options['namespace'] : 0;
155 $caps = new CapsCleanup( isset( $options['dry-run'] ), $ns );