Use getInt not getVal
[lhc/web/wiklou.git] / maintenance / rebuildrecentchanges.inc
index 92d2ab5..e077da5 100644 (file)
-<?
-
-# Rebuild recent changes table.
-#
-
+<?php
+/**
+ * Rebuild recent changes table.
+ *
+ * @todo document
+ * @package MediaWiki
+ * @subpackage Maintenance
+ */
+
+/** */
 function rebuildRecentChangesTablePass1()
 {
-       $sql = "DROP TABLE IF EXISTS recentchanges";
-       wfQuery( $sql, DB_WRITE );
-
-       $sql = "CREATE TABLE recentchanges (
-  rc_timestamp varchar(14) binary NOT NULL default '',
-  rc_cur_time varchar(14) binary NOT NULL default '',
-  rc_user int(10) unsigned NOT NULL default '0',
-  rc_user_text varchar(255) binary NOT NULL default '',
-  rc_namespace tinyint(3) unsigned NOT NULL default '0',
-  rc_title varchar(255) binary NOT NULL default '',
-  rc_comment varchar(255) binary NOT NULL default '',
-  rc_minor tinyint(3) unsigned NOT NULL default '0',
-  rc_bot tinyint(3) unsigned NOT NULL default '0',
-  rc_new tinyint(3) unsigned NOT NULL default '0',
-  rc_cur_id int(10) unsigned NOT NULL default '0',
-  rc_this_oldid int(10) unsigned NOT NULL default '0',
-  rc_last_oldid int(10) unsigned NOT NULL default '0',
-  INDEX rc_cur_id (rc_cur_id),
-  INDEX rc_cur_time (rc_cur_time),
-  INDEX rc_timestamp (rc_timestamp),
-  INDEX rc_namespace (rc_namespace),
-  INDEX rc_title (rc_title)
-) TYPE=MyISAM PACK_KEYS=1;";
-       wfQuery( $sql, DB_WRITE );
-
-       print( "Loading from CUR table...\n" );
-
-       $sql = "INSERT INTO recentchanges (rc_timestamp,rc_cur_time,rc_user," .
-         "rc_user_text,rc_namespace,rc_title,rc_comment,rc_minor,rc_bot,rc_new," .
-         "rc_cur_id,rc_this_oldid,rc_last_oldid) SELECT cur_timestamp," .
-         "cur_timestamp,cur_user,cur_user_text,cur_namespace,cur_title," .
-         "cur_comment,cur_minor_edit,0,cur_is_new,cur_id,0,0 FROM cur " .
-         "ORDER BY cur_timestamp DESC LIMIT 5000";
-       wfQuery( $sql, DB_WRITE );
-
-       print( "Loading from OLD table...\n" );
-
-       $sql = "INSERT INTO recentchanges (rc_timestamp,rc_cur_time,rc_user," .
-      "rc_user_text,rc_namespace,rc_title,rc_comment,rc_minor,rc_bot,rc_new," .
-      "rc_cur_id,rc_this_oldid,rc_last_oldid) SELECT old_timestamp,''," .
-         "old_user,old_user_text,old_namespace,old_title,old_comment," .
-         "old_minor_edit,0,0,0,old_id,0 FROM old ORDER BY old_timestamp " .
-         "DESC LIMIT 5000";
-       wfQuery( $sql, DB_WRITE );
-
-       $sql = "SELECT rc_timestamp FROM recentchanges " .
-         "ORDER BY rc_timestamp DESC LIMIT 5000,1";
-       $res = wfQuery( $sql, DB_WRITE );
-       $obj = wfFetchObject( $res );
-       $ts = $obj->rc_timestamp;
-
-       $sql = "DELETE FROM recentchanges WHERE rc_timestamp < '{$ts}'";
-       wfQuery( $sql, DB_WRITE );
+       $fname = 'rebuildRecentChangesTablePass1';
+       $dbw =& wfGetDB( DB_MASTER );
+       extract( $dbw->tableNames( 'recentchanges', 'cur', 'old' ) );
+
+       $dbw->delete( 'recentchanges', '*' );
+
+       print( "Loading from page and revision tables...\n" );
+
+       global $wgRCMaxAge;
+       $cutoff = time() - $wgRCMaxAge;
+       $dbw->insertSelect( 'recentchanges', array( 'page', 'revision' ),
+               array(
+                       'rc_timestamp'  => 'rev_timestamp',
+                       'rc_cur_time'   => 'rev_timestamp',
+                       'rc_user'       => 'rev_user',
+                       'rc_user_text'  => 'rev_user_text',
+                       'rc_namespace'  => 'page_namespace',
+                       'rc_title'      => 'page_title',
+                       'rc_comment'    => 'rev_comment',
+                       'rc_minor'      => 'rev_minor_edit',
+                       'rc_bot'        => 0,
+                       'rc_new'        => 'page_is_new',
+                       'rc_cur_id'     => 'page_id',
+                       'rc_this_oldid' => 'rev_id',
+                       'rc_last_oldid' => 0, // is this ok?
+                       'rc_type'       => $dbw->conditional( 'page_is_new != 0', RC_NEW, RC_EDIT ),
+               ), array(
+                       'rev_timestamp > ' . $dbw->addQuotes( $dbw->timestamp( $cutoff ) ),
+                       'rev_page=page_id'
+               ), $fname,
+               array(), // INSERT options
+               array( 'ORDER BY' => 'rev_timestamp', 'LIMIT' => 5000 ) // SELECT options
+       );
 }
 
 function rebuildRecentChangesTablePass2()
 {
+       $dbw =& wfGetDB( DB_MASTER );
+       extract( $dbw->tableNames( 'recentchanges', 'revision' ) );
+
        $ns = $id = $count = 0;
        $title = $ct =  "";
 
        print( "Updating links...\n" );
 
-       $sql = "SELECT rc_namespace,rc_title,rc_timestamp FROM recentchanges " .
-         "ORDER BY rc_namespace,rc_title,rc_timestamp DESC";
-       $res = wfQuery( $sql, DB_WRITE );
-
-       while ( $obj = wfFetchObject( $res ) ) {
-               if ( ! ( $ns == $obj->rc_namespace &&
-                          0 == strcmp( $title, wfStrencode( $obj->rc_title ) ) ) ) {
-
-                       $ns = $obj->rc_namespace;
-                       $title = wfStrencode( $obj->rc_title );
-
-                       $sql = "SELECT cur_id,cur_timestamp FROM cur WHERE " .
-                         "cur_namespace={$ns} AND cur_title='{$title}'";
-                       $res2 = wfQuery( $sql, DB_WRITE );
-                       $obj2 = wfFetchObject( $res2 );
-
-                       $id = $obj2->cur_id;
-                       $ct = $obj2->cur_timestamp;
+       # Fill in the rc_last_oldid field, which points to the previous edit
+       #
+       $sql = "SELECT rc_cur_id,rc_this_oldid,rc_timestamp FROM $recentchanges " .
+         "ORDER BY rc_cur_id,rc_timestamp";
+       $res = $dbw->query( $sql, DB_MASTER );
+
+       $lastCurId = 0;
+       $lastOldId = 0;
+       while ( $obj = $dbw->fetchObject( $res ) ) {
+               $new = 0;
+               if( $obj->rc_cur_id != $lastCurId ) {
+                       # Switch! Look up the previous last edit, if any
+                       $lastCurId = intval( $obj->rc_cur_id );
+                       $emit = $obj->rc_timestamp;
+                       $sql2 = "SELECT rev_id FROM $revision " .
+                               "WHERE rev_page={$lastCurId} ".
+                               "AND rev_timestamp<'{$emit}' ORDER BY rev_timestamp DESC LIMIT 1";
+                       $res2 = $dbw->query( $sql2 );
+                       if( $row = $dbw->fetchObject( $res2 ) ) {
+                               $lastOldId = intval( $row->rev_id );
+                       } else {
+                               # No previous edit
+                               $lastOldId = 0;
+                               $new = 1;
+                       }
+                       $dbw->freeResult( $res2 );
                }
-               $sql = "SELECT old_id FROM old WHERE old_namespace={$ns} " .
-                 "AND old_title='{$title}' AND old_timestamp < '" .
-                 "{$obj->rc_timestamp}' ORDER BY old_timestamp DESC LIMIT 1";
-               $res2 = wfQuery( $sql, DB_WRITE );
-
-               if ( 0 != wfNumRows( $res2 ) ) {
-                       $obj2 = wfFetchObject( $res2 );
-
-                       $sql = "UPDATE recentchanges SET rc_cur_id={$id},rc_cur_time=" .
-                         "'{$ct}',rc_last_oldid={$obj2->old_id} WHERE " .
-                         "rc_namespace={$ns} AND rc_title='{$title}' AND " .
-                         "rc_timestamp='{$obj->rc_timestamp}'";
-                       wfQuery( $sql, DB_WRITE );
+               if( $lastCurId == 0 ) {
+                       print "Uhhh, something wrong? No curid\n";
                } else {
-                       $sql = "UPDATE recentchanges SET rc_cur_id={$id},rc_cur_time=" .
-                         "'{$ct}' WHERE rc_namespace={$ns} AND rc_title='{$title}' " .
-                         "AND rc_timestamp='{$obj->rc_timestamp}'";
-                       wfQuery( $sql, DB_WRITE );
-               }
-
-               if ( 0 == ( ++$count % 500 ) ) {
-                       printf( "%d records processed.\n", $count );
+                       $sql3 = "UPDATE $recentchanges SET rc_last_oldid=$lastOldId,rc_new=$new,rc_type=$new " .
+                               "WHERE rc_cur_id={$lastCurId} AND rc_this_oldid={$obj->rc_this_oldid}";
+                       $dbw->query( $sql3 );
+                       $lastOldId = intval( $obj->rc_this_oldid );
                }
        }
+       $dbw->freeResult( $res );
 }
 
 ?>