Some UI cleanup
[mediawiki.git] / maintenance / rebuildrecentchanges.inc
blobc9a5e43c936776e74af9810fa74cc23418bc0b8e
1 <?php
2 /**
3  * Rebuild recent changes table.
4  *
5  * @todo document
6  * @addtogroup Maintenance
7  */
9 /** Public entry; more passes might come in! :) */
10 function rebuildRecentChangesTable() {
11         rebuildRecentChangesTablePass1();
12         rebuildRecentChangesTablePass2();
13         rebuildRecentChangesTablePass3();
16 /** */
17 function rebuildRecentChangesTablePass1()
19         $fname = 'rebuildRecentChangesTablePass1';
20         $dbw = wfGetDB( DB_MASTER );
22         $dbw->delete( 'recentchanges', '*' );
24         print( "Loading from page and revision tables...\n" );
26         global $wgRCMaxAge;
28         print( '$wgRCMaxAge=' . $wgRCMaxAge );
29         $days = $wgRCMaxAge / 24 / 3600;
30         if ( intval($days) == $days ) {
31                         print( " (" . $days . " days)\n" );
32         } else {
33                         print( " (approx. " .  intval($days) . " days)\n" );
34         }
36         $cutoff = time() - $wgRCMaxAge;
37         $dbw->insertSelect( 'recentchanges', array( 'page', 'revision' ),
38                 array(
39                         'rc_timestamp'  => 'rev_timestamp',
40                         'rc_cur_time'   => 'rev_timestamp',
41                         'rc_user'       => 'rev_user',
42                         'rc_user_text'  => 'rev_user_text',
43                         'rc_namespace'  => 'page_namespace',
44                         'rc_title'      => 'page_title',
45                         'rc_comment'    => 'rev_comment',
46                         'rc_minor'      => 'rev_minor_edit',
47                         'rc_bot'        => 0,
48                         'rc_new'        => 'page_is_new',
49                         'rc_cur_id'     => 'page_id',
50                         'rc_this_oldid' => 'rev_id',
51                         'rc_last_oldid' => 0, // is this ok?
52                         'rc_type'       => $dbw->conditional( 'page_is_new != 0', RC_NEW, RC_EDIT ),
53                         'rc_deleted'    => 'rev_deleted'
54                 ), array(
55                         'rev_timestamp > ' . $dbw->addQuotes( $dbw->timestamp( $cutoff ) ),
56                         'rev_page=page_id'
57                 ), $fname,
58                 array(), // INSERT options
59                 array( 'ORDER BY' => 'rev_timestamp DESC', 'LIMIT' => 5000 ) // SELECT options
60         );
63 function rebuildRecentChangesTablePass2()
65         $dbw = wfGetDB( DB_MASTER );
66         list ($recentchanges, $revision) = $dbw->tableNamesN( 'recentchanges', 'revision' );
68         print( "Updating links and size differences...\n" );
70         # Fill in the rc_last_oldid field, which points to the previous edit
71         $sql = "SELECT rc_cur_id,rc_this_oldid,rc_timestamp FROM $recentchanges " .
72           "ORDER BY rc_cur_id,rc_timestamp";
73         $res = $dbw->query( $sql, DB_MASTER );
75         $lastCurId = 0;
76         $lastOldId = 0;
77         while ( $obj = $dbw->fetchObject( $res ) ) {
78                 $new = 0;
79                 if( $obj->rc_cur_id != $lastCurId ) {
80                         # Switch! Look up the previous last edit, if any
81                         $lastCurId = intval( $obj->rc_cur_id );
82                         $emit = $obj->rc_timestamp;
83                         $sql2 = "SELECT rev_id, rev_len FROM $revision " .
84                                 "WHERE rev_page={$lastCurId} ".
85                                 "AND rev_timestamp<'{$emit}' ORDER BY rev_timestamp DESC LIMIT 1";
86                         $res2 = $dbw->query( $sql2 );
87                         if( $row = $dbw->fetchObject( $res2 ) ) {
88                                 $lastOldId = intval( $row->rev_id );
89                                 $lastSize = $row->rev_len; # Grab the last text size
90                         } else {
91                                 # No previous edit
92                                 $lastOldId = 0;
93                                 $lastSize = 'NULL';
94                                 $new = 1;
95                         }
96                         $dbw->freeResult( $res2 );
97                 }
98                 if( $lastCurId == 0 ) {
99                         print "Uhhh, something wrong? No curid\n";
100                 } else {
101                         # Grab the entry's text size
102                         $size = $dbw->selectField( 'revision', 'rev_len', array('rev_id' => $obj->rc_this_oldid ) );
103                         $size = $size ? $size : 'NULL';
104                         
105                         $sql3 = "UPDATE $recentchanges SET rc_last_oldid=$lastOldId,rc_new=$new,rc_type=$new," .
106                                 "rc_old_len=$lastSize,rc_new_len=$size " .
107                                 "WHERE rc_cur_id={$lastCurId} AND rc_this_oldid={$obj->rc_this_oldid}";
108                         $dbw->query( $sql3 );
109                         
110                         $lastOldId = intval( $obj->rc_this_oldid );
111                 }
112         }
113         $dbw->freeResult( $res );
116 function rebuildRecentChangesTablePass3()
118         global $wgGroupPermissions, $wgUseRCPatrol;
119                         
120         $dbw = wfGetDB( DB_MASTER );
121         
122         list($recentchanges,$usergroups,$user) = $dbw->tableNamesN( 'recentchanges', 'user_groups', 'user' );
124         $botgroups = $autopatrolgroups = array();
125         foreach( $wgGroupPermissions as $group => $rights ) {
126                 if( isset( $rights['bot'] ) && $rights['bot'] == true ) {
127                         $botgroups[] = $dbw->addQuotes( $group );
128                 }
129                 if( $wgUseRCPatrol && isset( $rights['autopatrol'] ) && $rights['autopatrol'] == true ) {
130                         $autopatrolgroups[] = $dbw->addQuotes( $group );
131                 }
132         }
133         # Flag our recent bot edits
134         if( !empty($botgroups) ) {
135                 $botwhere = implode(',',$botgroups);
136                 $botusers = array();
138                 print( "Flagging bot account edits...\n" );
140                 # Find all users that are bots
141                 $sql = "SELECT DISTINCT user_name FROM $usergroups, $user " .
142                         "WHERE ug_group IN($botwhere) AND user_id = ug_user";
143                 $res = $dbw->query( $sql, DB_MASTER );
145                 while( $obj = $dbw->fetchObject( $res ) ) {
146                         $botusers[] = $dbw->addQuotes( $obj->user_name );
147                 }
148                 # Fill in the rc_bot field
149                 if( !empty($botusers) ) {
150                         $botwhere = implode(',',$botusers);
151                         $sql2 = "UPDATE $recentchanges SET rc_bot=1 " .
152                                 "WHERE rc_user_text IN($botwhere)";
153                         $dbw->query( $sql2 );
154                 }
155         }
156         # Flag our recent autopatrolled edits
157         if( !empty($autopatrolgroups) ) {
158                 $patrolwhere = implode(',',$autopatrolgroups);
159                 $patrolusers = array();
161                 print( "Flagging auto-patrolled edits...\n" );
163                 # Find all users in RC with autopatrol rights
164                 $sql = "SELECT DISTINCT user_name FROM $usergroups, $user " .
165                         "WHERE ug_group IN($patrolwhere) AND user_id = ug_user";
166                 $res = $dbw->query( $sql, DB_MASTER );
168                 while( $obj = $dbw->fetchObject( $res ) ) {
169                         $patrolusers[] = $dbw->addQuotes( $obj->user_name );
170                 }
171                 
172                 # Fill in the rc_patrolled field
173                 if( !empty($patrolusers) ) {
174                         $patrolwhere = implode(',',$patrolusers);
175                         $sql2 = "UPDATE $recentchanges SET rc_patrolled=1 " .
176                                 "WHERE rc_user_text IN($patrolwhere)";
177                         $dbw->query( $sql2 );
178                 }
179         }
180         
181         $dbw->freeResult( $res );