* Concept for diff-based compression using the new xdiff beta. Acheives massively...
[lhc/web/wiklou.git] / includes / RecentChange.php
index b1c70d8..d88bc4a 100644 (file)
@@ -174,43 +174,9 @@ class RecentChange
                # Set the ID
                $this->mAttribs['rc_id'] = $dbw->insertId();
 
-               # Update old rows, if necessary
-               if ( $this->mAttribs['rc_type'] == RC_EDIT ) {
-                       $lastTime = $this->mExtra['lastTimestamp'];
-                       #$now = $this->mAttribs['rc_timestamp'];
-                       #$curId = $this->mAttribs['rc_cur_id'];
-
-                       # Don't bother looking for entries that have probably
-                       # been purged, it just locks up the indexes needlessly.
-                       global $wgRCMaxAge;
-                       $age = time() - wfTimestamp( TS_UNIX, $lastTime );
-                       if( $age < $wgRCMaxAge ) {
-                               # live hack, will commit once tested - kate
-                               # Update rc_this_oldid for the entries which were current
-                               #
-                               #$oldid = $this->mAttribs['rc_last_oldid'];
-                               #$ns = $this->mAttribs['rc_namespace'];
-                               #$title = $this->mAttribs['rc_title'];
-                               #
-                               #$dbw->update( 'recentchanges',
-                               #       array( /* SET */
-                               #               'rc_this_oldid' => $oldid
-                               #       ), array( /* WHERE */
-                               #               'rc_namespace' => $ns,
-                               #               'rc_title' => $title,
-                               #               'rc_timestamp' => $dbw->timestamp( $lastTime )
-                               #       ), $fname
-                               #);
-                       }
-
-                       # Update rc_cur_time
-                       #$dbw->update( 'recentchanges', array( 'rc_cur_time' => $now ),
-                       #       array( 'rc_cur_id' => $curId ), $fname );
-               }
-
                # Notify external application via UDP
                if ( $wgRC2UDPAddress && ( !$this->mAttribs['rc_bot'] || !$wgRC2UDPOmitBots ) ) {
-                       wfRecentChange2UDP( $this->getIRCLine() );
+                       self::sendToUDP( $this->getIRCLine() );
                }
 
                # E-mail notifications
@@ -239,6 +205,23 @@ class RecentChange
                wfRunHooks( 'RecentChange_save', array( &$this ) );
        }
 
+       /**
+        * Send some text to UDP
+        * @param string $line
+        */
+       static function sendToUDP( $line ) {
+               global $wgRC2UDPAddress, $wgRC2UDPPort, $wgRC2UDPPrefix;
+               # Notify external application via UDP
+               if( $wgRC2UDPAddress ) {
+                       $conn = socket_create( AF_INET, SOCK_DGRAM, SOL_UDP );
+                       if( $conn ) {
+                               $line = $wgRC2UDPPrefix . $line;
+                               socket_sendto( $conn, $line, strlen($line), 0, $wgRC2UDPAddress, $wgRC2UDPPort );
+                               socket_close( $conn );
+                       }
+               }
+       }
+
        /**
         * Mark a given change as patrolled
         *
@@ -508,7 +491,7 @@ class RecentChange
                        'rc_comment'    => $logComment,
                        'rc_this_oldid' => 0,
                        'rc_last_oldid' => 0,
-                       'rc_bot'        => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot' , true ) : 0,
+                       'rc_bot'        => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot', true ) : 0,
                        'rc_moved_to_ns'        => 0,
                        'rc_moved_to_title'     => '',
                        'rc_ip' => $ip,