Quick hacky script to initialize site_stats row where missing.
[lhc/web/wiklou.git] / maintenance / rebuildrecentchanges.inc
index 8d10f56..b7c54b7 100644 (file)
@@ -1,8 +1,13 @@
 <?php
+/**
+ * Rebuild recent changes table.
+ *
+ * @todo document
+ * @package MediaWiki
+ * @subpackage Maintenance
+ */
 
-# Rebuild recent changes table.
-#
-
+/** */
 function rebuildRecentChangesTablePass1()
 {
        $fname = 'rebuildRecentChangesTablePass1';
@@ -12,7 +17,7 @@ function rebuildRecentChangesTablePass1()
        $dbw->delete( 'recentchanges', '*' );
 
        print( "Loading from CUR table...\n" );
-
+       
        $dbw->insertSelect( 'recentchanges', 'cur', 
                array(
                        'rc_timestamp' => 'cur_timestamp',
@@ -28,29 +33,32 @@ function rebuildRecentChangesTablePass1()
                        'rc_cur_id' => 'cur_id',
                        'rc_this_oldid' => 0,
                        'rc_last_oldid' => 0,
-                       'rc_type' => 'IF(cur_is_new,' . RC_NEW . ',' . RC_EDIT . ')'
-               ), '*', $fname, array( 'ORDER BY' => 'inverse_timestamp', 'LIMIT' => 5000 )
+                       'rc_type' => $dbw->conditional( 'cur_is_new != 0', RC_NEW, RC_EDIT ),
+               ), '*', $fname, array( 'ORDER BY' => 'cur_timestamp DESC', 'LIMIT' => 5000 )
        );
        
        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,cur_timestamp," .
+      "rc_cur_id,rc_this_oldid,rc_last_oldid,rc_type) SELECT old_timestamp,cur_timestamp," .
          "old_user,old_user_text,old_namespace,old_title,old_comment," .
-         "old_minor_edit,0,0,cur_id,old_id,0 FROM $old,$cur " .
-         "WHERE old_namespace=cur_namespace AND old_title=cur_title ORDER BY $old.inverse_timestamp " .
+         "old_minor_edit,0,0,cur_id,old_id,0,0 FROM $old,$cur " .
+         "WHERE old_namespace=cur_namespace AND old_title=cur_title ORDER BY old_timestamp DESC " .
          "LIMIT 5000";
        $dbw->query( $sql );
 
        $sql = "SELECT rc_timestamp FROM $recentchanges " .
-         "ORDER BY rc_timestamp DESC LIMIT 5000,1";
+         "ORDER BY rc_timestamp DESC";
+       $sql = $dbw->limitResult($sql, 1, 5000 );
        $res = $dbw->query( $sql );
        $obj = $dbw->fetchObject( $res );
-       $ts = $obj->rc_timestamp;
-
-       $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$ts}'";
-       $dbw->query( $sql );
+       if( $obj ) {
+               $ts = $obj->rc_timestamp;
+       
+               $sql = "DELETE FROM $recentchanges WHERE rc_timestamp < '{$ts}'";
+               $dbw->query( $sql );
+       }
 }
 
 function rebuildRecentChangesTablePass2()
@@ -75,14 +83,14 @@ function rebuildRecentChangesTablePass2()
                $new = 0;
                if( $obj->rc_cur_id != $lastCurId ) {
                        # Switch! Look up the previous last edit, if any
-                       $lastCurId = IntVal( $obj->rc_cur_id );
-                       $emit = wfInvertTimestamp( $obj->rc_timestamp );
+                       $lastCurId = intval( $obj->rc_cur_id );
+                       $emit = $obj->rc_timestamp;
                        $sql2 = "SELECT old_id FROM $old,$cur " .
                                "WHERE old_namespace=cur_namespace AND old_title=cur_title AND cur_id={$lastCurId} ".
-                               "AND $old.inverse_timestamp>'{$emit}' ORDER BY $old.inverse_timestamp LIMIT 1";
+                               "AND old_timestamp<'{$emit}' ORDER BY old_timestamp DESC LIMIT 1";
                        $res2 = $dbw->query( $sql2 );
                        if( $row = $dbw->fetchObject( $res2 ) ) {
-                               $lastOldId = IntVal( $row->old_id );
+                               $lastOldId = intval( $row->old_id );
                        } else {
                                # No previous edit
                                $lastOldId = 0;
@@ -96,7 +104,7 @@ function rebuildRecentChangesTablePass2()
                        $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 );
+                       $lastOldId = intval( $obj->rc_this_oldid );
                }
        }
        $dbw->freeResult( $res );