Adjust spacing, and fix the disclaimer link again so it's separated from the printabl...
[lhc/web/wiklou.git] / includes / SpecialRecentchanges.php
index c356d1e..2f36047 100644 (file)
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-function wfSpecialRecentchanges( $par )
-{
-       global $wgUser, $wgOut, $wgLang, $wgTitle, $wgMemc, $wgDBname;
-       global $days, $hideminor, $from, $hidebots, $hideliu; # From query string
-       $fname = "wfSpecialRecentchanges";
+/**
+ *
+ */
+require_once( 'Feed.php' );
 
+/**
+ * Constructor
+ */
+function wfSpecialRecentchanges( $par ) {
+       global $wgUser, $wgOut, $wgLang, $wgContLang, $wgTitle, $wgMemc, $wgDBname;
+       global $wgRequest, $wgSitename, $wgLanguageCode, $wgContLanguageCode;
+       global $wgFeedClasses;
+       $fname = 'wfSpecialRecentchanges';
+
+       # Get query parameters
+       $feedFormat = $wgRequest->getVal( 'feed' );
+
+       $defaultDays = $wgUser->getOption( 'rcdays' );
+       if ( !$defaultDays ) { $defaultDays = 3; }
+
+       $days = $wgRequest->getInt( 'days', $defaultDays );
+       $hideminor = $wgRequest->getBool( 'hideminor', $wgUser->getOption( 'hideminor' ) ) ? 1 : 0;
+       $from = $wgRequest->getText( 'from' );
+       $hidebots = $wgRequest->getBool( 'hidebots', true ) ? 1 : 0;
+       $hideliu = $wgRequest->getBool( 'hideliu', false ) ? 1 : 0;
+       $hidepatrolled = $wgRequest->getBool( 'hidepatrolled', false ) ? 1 : 0;
+
+       list( $limit, $offset ) = wfCheckLimits( 100, 'rclimit' );
+
+       # Get query parameters from path
        if( $par ) {
                $bits = preg_split( '/\s*,\s*/', trim( $par ) );
-               if( in_array( "hidebots", $bits ) ) $hidebots = 1;
-               if( in_array( "bots", $bits ) ) $hidebots = 0;
-               if( in_array( "hideminor", $bits ) ) $hideminor = 1;
-               if( in_array( "minor", $bits ) ) $hideminor = 0;
-               if( in_array( "hideliu", $bits) ) $hideliu = 1;
+               if( in_array( 'hidebots', $bits ) ) $hidebots = 1;
+               if( in_array( 'bots', $bits ) ) $hidebots = 0;
+               if( in_array( 'hideminor', $bits ) ) $hideminor = 1;
+               if( in_array( 'minor', $bits ) ) $hideminor = 0;
+               if( in_array( 'hideliu', $bits) ) $hideliu = 1;
+               if( in_array( 'hidepatrolled', $bits) ) $hidepatrolled = 1;
        }
-       
-       $sql = "SELECT MAX(rc_timestamp) AS lastmod FROM recentchanges";
-       $res = wfQuery( $sql, DB_READ, $fname );
-       $s = wfFetchObject( $res );
+
+
+       # Database connection and caching
+       $dbr =& wfGetDB( DB_SLAVE );
+       extract( $dbr->tableNames( 'recentchanges', 'watchlist' ) );
+
+       $lastmod = $dbr->selectField( 'recentchanges', 'MAX(rc_timestamp)', false, $fname );
        # 10 seconds server-side caching max
        $wgOut->setSquidMaxage( 10 );
-       if( $wgOut->checkLastModified( $s->lastmod ) ){
+       if( $wgOut->checkLastModified( $lastmod ) ){
                # Client cache fresh and headers sent, nothing more to do.
                return;
        }
 
+       # Output header
        $rctext = wfMsg( "recentchangestext" );
-       
-       # The next few lines can probably be commented out now that wfMsg can get text from the DB
-       $sql = "SELECT cur_text FROM cur WHERE cur_namespace=4 AND cur_title='Recentchanges'";
-       $res = wfQuery( $sql, DB_READ, $fname );
-       if( ( $s = wfFetchObject( $res ) ) and ( $s->cur_text != "" ) ) {
-               $rctext = $s->cur_text;
-       }
-       
        $wgOut->addWikiText( $rctext );
 
-       if ( ! $days ) {
-               $days = $wgUser->getOption( "rcdays" );
-               if ( ! $days ) { $days = 3; }
-       }
-       $days = (int)$days;
-       list( $limit, $offset ) = wfCheckLimits( 100, "rclimit" );
+       
        $now = wfTimestampNow();
        $cutoff_unixtime = time() - ( $days * 86400 );
        $cutoff_unixtime = $cutoff_unixtime - ($cutoff_unixtime % 86400);
-       $cutoff = wfUnix2Timestamp( $cutoff_unixtime );
-       if(preg_match('/^[0-9]{14}$/', $from) and $from > $cutoff) {
-               $cutoff = $from;
+       $cutoff = $dbr->timestamp( $cutoff_unixtime );
+       if(preg_match('/^[0-9]{14}$/', $from) and $from > wfTimestamp(TS_MW,$cutoff)) {
+               $cutoff = $dbr->timestamp($from);
        } else {
                unset($from);
        }
 
        $sk = $wgUser->getSkin();
-       $showhide = array( wfMsg( "show" ), wfMsg( "hide" ));
-       
-       if ( ! isset( $hideminor ) ) {
-               $hideminor = $wgUser->getOption( "hideminor" );
-       }
-       $hideminor = ($hideminor ? 1 : 0);
-       if ( $hideminor ) {
-               $hidem = "AND rc_minor=0";
-       } else {
-               $hidem = "";
-       }
-       
-       if ( !isset( $hidebots ) ) {
-               $hidebots = 1;
-       }
-       if( $hidebots ) {
-               $hidem .= " AND rc_bot=0";
-       }
-       $hidebots = ($hidebots ? 1 : 0);
-       
-       if ( !isset( $hideliu ) ) {
-               $hideliu = 0;
-       }
-       if ( $hideliu ) {
-               $hidem .= " AND rc_user=0";
-       }
-       $hideliu = ($hideliu ? 1 : 0);
-       #$hideparams = "hideminor={$hideminor}&hideliu={$hideliu}&hidebots={$hidebots}";
-       $urlparams = array( "hideminor" => $hideminor, "hideliu" => $hideliu, "hidebots" => $hidebots );
+
+       $showhide = array( wfMsg( 'show' ), wfMsg( 'hide' ));
+
+       $hidem  = ( $hideminor )    ? 'AND rc_minor=0' : '';
+       $hidem .= ( $hidebots )     ? ' AND rc_bot=0' : '';
+       $hidem .= ( $hideliu )      ? ' AND rc_user=0' : '';
+       $hidem .= ( $hidepatrolled )? ' AND rc_patrolled=0' : '';
+
+       $urlparams = array( 'hideminor' => $hideminor,  'hideliu'       => $hideliu,
+                           'hidebots'  => $hidebots,   'hidepatrolled' => $hidepatrolled);
        $hideparams = wfArrayToCGI( $urlparams );
-       
-       $minorLink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-         $showhide[1-$hideminor], wfArrayToCGI( array( "hideminor" => 1-$hideminor ), $urlparams ) );
-       $botLink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-         $showhide[1-$hidebots], wfArrayToCGI( array( "hidebots" => 1-$hidebots ), $urlparams ) );
-       $liuLink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-         $showhide[1-$hideliu], wfArrayToCGI( array( "hideliu" => 1-$hideliu ), $urlparams ) );
+
+       $minorLink = $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
+         $showhide[1-$hideminor], wfArrayToCGI( array( 'hideminor' => 1-$hideminor ), $urlparams ) );
+       $botLink = $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
+         $showhide[1-$hidebots], wfArrayToCGI( array( 'hidebots' => 1-$hidebots ), $urlparams ) );
+       $liuLink = $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
+         $showhide[1-$hideliu], wfArrayToCGI( array( 'hideliu' => 1-$hideliu ), $urlparams ) );
+       $patrLink = $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
+         $showhide[1-$hidepatrolled], wfArrayToCGI( array( 'hidepatrolled' => 1-$hidepatrolled ), $urlparams ) );
 
        $uid = $wgUser->getID();
-       $sql2 = "SELECT recentchanges.*" . ($uid ? ",wl_user" : "") . " FROM recentchanges " .
-         ($uid ? "LEFT OUTER JOIN watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace & 65534 " : "") .
+       $sql2 = "SELECT $recentchanges.*" . ($uid ? ",wl_user" : "") . " FROM $recentchanges " .
+         ($uid ? "LEFT OUTER JOIN $watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace & 65534 " : "") .
          "WHERE rc_timestamp > '{$cutoff}' {$hidem} " .
          "ORDER BY rc_timestamp DESC LIMIT {$limit}";
 
-       $res = wfQuery( $sql2, DB_READ, $fname );
+       $res = $dbr->query( $sql2, DB_SLAVE, $fname );
        $rows = array();
-       while( $row = wfFetchObject( $res ) ){ 
-               $rows[] = $row; 
+       while( $row = $dbr->fetchObject( $res ) ){
+               $rows[] = $row;
        }
+       $dbr->freeResult( $res );
 
        if(isset($from)) {
-               $note = wfMsg( "rcnotefrom", $wgLang->formatNum( $limit ),
+               $note = wfMsg( 'rcnotefrom', $wgLang->formatNum( $limit ),
                        $wgLang->timeanddate( $from, true ) );
        } else {
-               $note = wfMsg( "rcnote", $wgLang->formatNum( $limit ), $wgLang->formatNum( $days ) );
+               $note = wfMsg( 'rcnote', $wgLang->formatNum( $limit ), $wgLang->formatNum( $days ) );
        }
-       $wgOut->addHTML( "\n<hr>\n{$note}\n<br>" );
+       $wgOut->addHTML( "\n<hr />\n{$note}\n<br />" );
 
-       $note = rcDayLimitLinks( $days, $limit, "Recentchanges", $hideparams, false, $minorLink, $botLink, $liuLink );
+       $note = rcDayLimitLinks( $days, $limit, 'Recentchanges', $hideparams, false, $minorLink, $botLink, $liuLink, $patrLink );
 
-       $note .= "<br>\n" . wfMsg( "rclistfrom",
-         $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-         $wgLang->timeanddate( $now, true ), "{$hideparams}&from=$now" ) );
+       $note .= "<br />\n" . wfMsg( 'rclistfrom',
+         $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
+         $wgLang->timeanddate( $now, true ), $hideparams.'&from='.$now ) );
 
-       $wgOut->addHTML( "{$note}\n" );
+       $wgOut->addHTML( $note."\n" );
 
-       $s = $sk->beginRecentChangesList();
-       foreach( $rows as $obj ){
-               if( $limit == 0) {
-                       break; 
+       if( isset($wgFeedClasses[$feedFormat]) ) {
+               $feed = new $wgFeedClasses[$feedFormat](
+                       $wgSitename . ' - ' . wfMsg( 'recentchanges' ) . ' [' . $wgContLanguageCode . ']',
+                       htmlspecialchars( wfMsg( 'recentchangestext' ) ),
+                       $wgTitle->getFullUrl() );
+               $feed->outHeader();
+               
+               # Merge adjacent edits by one user
+               $sorted = array();
+               $n = 0;
+               foreach( $rows as $obj ) {
+                       if( $n > 0 &&
+                               $obj->rc_namespace >= 0 &&
+                           $obj->rc_cur_id == $sorted[$n-1]->rc_cur_id &&
+                           $obj->rc_user_text == $sorted[$n-1]->rc_user_text ) {
+                               $sorted[$n-1]->rc_last_oldid = $obj->rc_last_oldid;
+                       } else {
+                               $sorted[$n] = $obj;
+                               $n++;
+                       }
+                       $first = false;
+               }
+               
+               foreach( $sorted as $obj ) {
+                       $title = Title::makeTitle( $obj->rc_namespace, $obj->rc_title );
+                       $talkpage = $title->getTalkPage();
+                       $item = new FeedItem(
+                               $title->getPrefixedText(),
+                               rcFormatDiff( $obj ),
+                               $title->getFullURL(),
+                               $obj->rc_timestamp,
+                               $obj->rc_user_text,
+                               $talkpage->getFullURL()
+                               );
+                       $feed->outItem( $item );
                }
+               $feed->outFooter();
+       } else {
+               $wgOut->setSyndicated( true );
+               $s = $sk->beginRecentChangesList();
+               $counter = 1;
+               foreach( $rows as $obj ){
+                       if( $limit == 0) {
+                               break;
+                       }
 
-               if ( ! ( $hideminor && $obj->rc_minor ) ) {
-                       $rc = RecentChange::newFromRow( $obj );
-                       $s .= $sk->recentChangesLine( $rc, $obj->wl_user );
-                       --$limit;
+                       if ( ! ( $hideminor     && $obj->rc_minor     ) &&
+                            ! ( $hidepatrolled && $obj->rc_patrolled ) ) {
+                               $rc = RecentChange::newFromRow( $obj );
+                               $rc->counter = $counter++;
+                               $s .= $sk->recentChangesLine( $rc, !empty( $obj->wl_user ) );
+                               --$limit;
+                       }
                }
+               $s .= $sk->endRecentChangesList();
+               $wgOut->addHTML( $s );
        }
-       $s .= $sk->endRecentChangesList();
-
-       wfFreeResult( $res );
-       $wgOut->addHTML( $s );
 }
 
-function rcCountLink( $lim, $d, $page="Recentchanges", $more="" )
-{
-       global $wgUser, $wgLang;
+/**
+ *
+ */
+function rcCountLink( $lim, $d, $page='Recentchanges', $more='' ) {
+       global $wgUser, $wgLang, $wgContLang;
        $sk = $wgUser->getSkin();
-       $s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
-         ($lim ? $wgLang->formatNum( "{$lim}" ) : wfMsg( "all" ) ), "{$more}" .
-         ($d ? "days={$d}&" : "") . "limit={$lim}" );
+       $s = $sk->makeKnownLink( $wgContLang->specialPage( $page ),
+         ($lim ? $wgLang->formatNum( "{$lim}" ) : wfMsg( 'all' ) ), "{$more}" .
+         ($d ? "days={$d}&" : '') . 'limit='.$lim );
        return $s;
 }
 
-function rcDaysLink( $lim, $d, $page="Recentchanges", $more="" )
-{
-       global $wgUser, $wgLang;
+/**
+ *
+ */
+function rcDaysLink( $lim, $d, $page='Recentchanges', $more='' ) {
+       global $wgUser, $wgLang, $wgContLang;
        $sk = $wgUser->getSkin();
-       $s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
-         ($d ? $wgLang->formatNum( "{$d}" ) : wfMsg( "all" ) ), "{$more}days={$d}" .
-         ($lim ? "&limit={$lim}" : "") );
+       $s = $sk->makeKnownLink( $wgContLang->specialPage( $page ),
+         ($d ? $wgLang->formatNum( "{$d}" ) : wfMsg( "all" ) ), $more.'days='.$d .
+         ($lim ? '&limit='.$lim : '') );
        return $s;
 }
 
-function rcDayLimitLinks( $days, $limit, $page="Recentchanges", $more="", $doall = false, $minorLink = "", 
-       $botLink = "", $liuLink = "" )
-{
-       if ($more != "") $more .= "&";
-       $cl = rcCountLink( 50, $days, $page, $more ) . " | " .
-         rcCountLink( 100, $days, $page, $more  ) . " | " .
-         rcCountLink( 250, $days, $page, $more  ) . " | " .
+/**
+ *
+ */
+function rcDayLimitLinks( $days, $limit, $page='Recentchanges', $more='', $doall = false, $minorLink = '',
+       $botLink = '', $liuLink = '', $patrLink = '' ) {
+       if ($more != '') $more .= '&';
+       $cl = rcCountLink( 50, $days, $page, $more ) . ' | ' .
+         rcCountLink( 100, $days, $page, $more  ) . ' | ' .
+         rcCountLink( 250, $days, $page, $more  ) . ' | ' .
          rcCountLink( 500, $days, $page, $more  ) .
-         ( $doall ? ( " | " . rcCountLink( 0, $days, $page, $more ) ) : "" );
-       $dl = rcDaysLink( $limit, 1, $page, $more  ) . " | " .
-         rcDaysLink( $limit, 3, $page, $more  ) . " | " .
-         rcDaysLink( $limit, 7, $page, $more  ) . " | " .
-         rcDaysLink( $limit, 14, $page, $more  ) . " | " .
+         ( $doall ? ( ' | ' . rcCountLink( 0, $days, $page, $more ) ) : '' );
+       $dl = rcDaysLink( $limit, 1, $page, $more  ) . ' | ' .
+         rcDaysLink( $limit, 3, $page, $more  ) . ' | ' .
+         rcDaysLink( $limit, 7, $page, $more  ) . ' | ' .
+         rcDaysLink( $limit, 14, $page, $more  ) . ' | ' .
          rcDaysLink( $limit, 30, $page, $more  ) .
-         ( $doall ? ( " | " . rcDaysLink( $limit, 0, $page, $more ) ) : "" );
-       $shm = wfMsg( "showhideminor", $minorLink, $botLink, $liuLink );
-       $note = wfMsg( "rclinks", $cl, $dl, $shm );
+         ( $doall ? ( ' | ' . rcDaysLink( $limit, 0, $page, $more ) ) : '' );
+       $shm = wfMsg( 'showhideminor', $minorLink, $botLink, $liuLink, $patrLink );
+       $note = wfMsg( 'rclinks', $cl, $dl, $shm );
        return $note;
 }
 
-# Obsolete? Isn't called from anywhere and $mlink isn't defined
-function rcLimitLinks( $page="Recentchanges", $more="", $doall = false )
-{
-       if ($more != "") $more .= "&";
-       $cl = rcCountLink( 50, 0, $page, $more ) . " | " .
-         rcCountLink( 100, 0, $page, $more  ) . " | " .
-         rcCountLink( 250, 0, $page, $more  ) . " | " .
+/**
+ * Obsolete? Isn't called from anywhere and $mlink isn't defined
+ */
+function rcLimitLinks( $page='Recentchanges', $more='', $doall = false ) {
+       if ($more != '') $more .= '&';
+       $cl = rcCountLink( 50, 0, $page, $more ) . ' | ' .
+         rcCountLink( 100, 0, $page, $more  ) . ' | ' .
+         rcCountLink( 250, 0, $page, $more  ) . ' | ' .
          rcCountLink( 500, 0, $page, $more  ) .
-         ( $doall ? ( " | " . rcCountLink( 0, $days, $page, $more ) ) : "" );
-       $note = wfMsg( "rclinks", $cl, "", $mlink );
+         ( $doall ? ( ' | ' . rcCountLink( 0, $days, $page, $more ) ) : '' );
+       $note = wfMsg( 'rclinks', $cl, '', $mlink );
        return $note;
 }
 
+function rcFormatDiff( $row ) {
+       require_once( 'DifferenceEngine.php' );
+       $comment = "<p>" . htmlspecialchars( $row->rc_comment ) . "</p>\n";
+       
+       if( $row->rc_namespace >= 0 ) {
+               global $wgContLang;
+               
+               #$diff =& new DifferenceEngine( $row->rc_this_oldid, $row->rc_last_oldid, $row->rc_id );
+               #$diff->showDiffPage();
+               
+               $dbr =& wfGetDB( DB_SLAVE );
+               if( $row->rc_this_oldid ) {
+                       $newrow = $dbr->selectRow( 'old',
+                               array( 'old_flags', 'old_text' ),
+                               array( 'old_id' => $row->rc_this_oldid ) );
+                       $newtext = Article::getRevisionText( $newrow );
+               } else {
+                       $newrow = $dbr->selectRow( 'cur',
+                               array( 'cur_text' ),
+                               array( 'cur_id' => $row->rc_cur_id ) );
+                       $newtext = $newrow->cur_text;
+               }
+               if( $row->rc_last_oldid ) {
+                       $oldrow = $dbr->selectRow( 'old',
+                               array( 'old_flags', 'old_text' ),
+                               array( 'old_id' => $row->rc_last_oldid ) );
+                       $oldtext = Article::getRevisionText( $oldrow );
+                       $diffText = DifferenceEngine::getDiff( $oldtext, $newtext,
+                         wfMsg( 'revisionasof', $wgContLang->timeanddate( $row->rc_timestamp ) ),
+                         wfMsg( 'currentrev' ) );
+               } else {
+                       $diffText = '<p><b>' . wfMsg( 'newpage' ) . '</b></p>' . 
+                               '<div>' . nl2br( htmlspecialchars( $newtext ) ) . '</div>';
+               }
+               
+               return $comment . $diffText;
+       }
+       
+       return $comment;        
+}
+
 ?>