Forgot to add this file.
[lhc/web/wiklou.git] / includes / SpecialRecentchanges.php
index bb3855a..9cf8adb 100644 (file)
@@ -1,28 +1,47 @@
-<?
+<?php
+
+include_once( "Feed.php" );
 
 function wfSpecialRecentchanges( $par )
 {
-       global $wgUser, $wgOut, $wgLang, $wgTitle;
-       global $days, $hideminor, $from, $hidebots; # From query string
-       $days      = $_REQUEST["days"];
-       $hideminor = $_REQUEST["hideminor"];
-       $from      = $_REQUEST["from"];
-       $hidebots  = $_REQUEST["hidebots"];
-
+       global $wgUser, $wgOut, $wgLang, $wgTitle, $wgMemc, $wgDBname;
+       global $wgRequest, $wgSitename, $wgLanguageCode;
        $fname = "wfSpecialRecentchanges";
+       
+       # Get query parameters
+       $feedFormat = $wgRequest->getVal( "feed" );
+       $feeding = ( $feedFormat == "rss" );
 
+       $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;
+       
+       # 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;
        }
        
        $sql = "SELECT MAX(rc_timestamp) AS lastmod FROM recentchanges";
        $res = wfQuery( $sql, DB_READ, $fname );
        $s = wfFetchObject( $res );
-       $wgOut->checkLastModified( $s->lastmod );
+       # 10 seconds server-side caching max
+       $wgOut->setSquidMaxage( 10 );
+       if( $wgOut->checkLastModified( $s->lastmod ) ){
+               # Client cache fresh and headers sent, nothing more to do.
+               return;
+       }
 
        $rctext = wfMsg( "recentchangestext" );
        
@@ -34,15 +53,12 @@ function wfSpecialRecentchanges( $par )
        }
        
        $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 = wfUnix2Timestamp( time() - ( $days * 86400 ) );
+       $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;
        } else {
@@ -50,82 +66,96 @@ function wfSpecialRecentchanges( $par )
        }
 
        $sk = $wgUser->getSkin();
-
-       if ( ! isset( $hideminor ) ) {
-               $hideminor = $wgUser->getOption( "hideminor" );
-       }
+       $showhide = array( wfMsg( "show" ), wfMsg( "hide" ));
+       
        if ( $hideminor ) {
                $hidem = "AND rc_minor=0";
-               $mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-                 WfMsg( "show" ), "days={$days}&limit={$limit}&hideminor=0" );
        } else {
                $hidem = "";
-               $mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-                 WfMsg( "hide" ), "days={$days}&limit={$limit}&hideminor=1" );
        }
        
-       if ( !isset( $hidebots ) ) {
-               $hidebots = 1;
-       }
        if( $hidebots ) {
                $hidem .= " AND rc_bot=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 );
+       $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 ) );
 
        $uid = $wgUser->getID();
-       $sql2 = "SELECT rc_cur_id,rc_namespace,rc_title,rc_user,rc_new," .
-         "rc_comment,rc_user_text,rc_timestamp,rc_minor,rc_this_oldid,rc_last_oldid,rc_bot" . ($uid ? ",wl_user" : "") . " FROM recentchanges " .
+       $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 );
+       $rows = array();
+       while( $row = wfFetchObject( $res ) ){ 
+               $rows[] = $row; 
+       }
 
        if(isset($from)) {
-               $note = wfMsg( "rcnotefrom", $limit,
+               $note = wfMsg( "rcnotefrom", $wgLang->formatNum( $limit ),
                        $wgLang->timeanddate( $from, true ) );
        } else {
-               $note = wfMsg( "rcnote", $limit, $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 );
+       $note = rcDayLimitLinks( $days, $limit, "Recentchanges", $hideparams, false, $minorLink, $botLink, $liuLink );
 
-       $note .= "<br>\n" . wfMsg( "rclistfrom",
+       $note .= "<br/>\n" . wfMsg( "rclistfrom",
          $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
-         $wgLang->timeanddate( $now, true ), "from=$now" ) );
+         $wgLang->timeanddate( $now, true ), "{$hideparams}&from=$now" ) );
 
        $wgOut->addHTML( "{$note}\n" );
 
-       $count1 = wfNumRows( $res );
-       $obj1 = wfFetchObject( $res );
-
-       $s = $sk->beginRecentChangesList();
-       while ( $limit ) {
-               if ( ( 0 == $count1 ) ) { break; }
-
-                       $ts = $obj1->rc_timestamp;
-                       $u = $obj1->rc_user;
-                       $ut = $obj1->rc_user_text;
-                       $ns = $obj1->rc_namespace;
-                       $ttl = $obj1->rc_title;
-                       $com = $obj1->rc_comment;
-                       $me = ( $obj1->rc_minor > 0 );
-                       $new = ( $obj1->rc_new > 0 );
-                       $watched = ($obj1->wl_user > 0);
-                       $oldid = $obj1->rc_this_oldid ;
-                       $diffid = $obj1->rc_last_oldid ;
-
-                       $obj1 = wfFetchObject( $res );
-                       --$count1;
-               if ( ! ( $hideminor && $me ) ) {
-                       $s .= $sk->recentChangesLine( $ts, $u, $ut, $ns, $ttl,
-                         $com, $me, $new, $watched, $oldid , $diffid );
-                       --$limit;
+       if( $feeding ) {
+               $feed = new RSSFeed(
+                       $wgSitename . " - " . wfMsg( "recentchanges" ) . " [" . $wgLanguageCode . "]",
+                       htmlspecialchars( wfMsg( "recentchangestext" ) ),
+                       $wgTitle->getFullUrl() );
+               $feed->outHeader();
+               foreach( $rows as $obj ) {
+                       $title = Title::makeTitle( $obj->rc_namespace, $obj->rc_title );
+                       $item = new FeedItem(
+                               $title->getPrefixedText(),
+                               htmlspecialchars( $obj->rc_comment ),
+                               $title->getFullURL(),
+                               $obj->rc_timestamp,
+                               $obj->rc_user_text );
+                       $feed->outItem( $item );
                }
+               $feed->outFooter();
+       } else {
+               $wgOut->setSyndicated( true );
+               $s = $sk->beginRecentChangesList();
+               foreach( $rows as $obj ){
+                       if( $limit == 0) {
+                               break; 
+                       }
+                       
+                       if ( ! ( $hideminor && $obj->rc_minor ) ) {
+                               $rc = RecentChange::newFromRow( $obj );
+                               $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="" )
@@ -133,7 +163,7 @@ function rcCountLink( $lim, $d, $page="Recentchanges", $more="" )
        global $wgUser, $wgLang;
        $sk = $wgUser->getSkin();
        $s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
-         ($lim ? "{$lim}" : wfMsg( "all" ) ), "{$more}" .
+         ($lim ? $wgLang->formatNum( "{$lim}" ) : wfMsg( "all" ) ), "{$more}" .
          ($d ? "days={$d}&" : "") . "limit={$lim}" );
        return $s;
 }
@@ -143,12 +173,13 @@ function rcDaysLink( $lim, $d, $page="Recentchanges", $more="" )
        global $wgUser, $wgLang;
        $sk = $wgUser->getSkin();
        $s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
-         ($d ? "{$d}" : wfMsg( "all" ) ), "{$more}days={$d}" .
+         ($d ? $wgLang->formatNum( "{$d}" ) : wfMsg( "all" ) ), "{$more}days={$d}" .
          ($lim ? "&limit={$lim}" : "") );
        return $s;
 }
 
-function rcDayLimitLinks( $days, $limit, $page="Recentchanges", $more="", $doall = false )
+function rcDayLimitLinks( $days, $limit, $page="Recentchanges", $more="", $doall = false, $minorLink = "", 
+       $botLink = "", $liuLink = "" )
 {
        if ($more != "") $more .= "&";
        $cl = rcCountLink( 50, $days, $page, $more ) . " | " .
@@ -162,10 +193,12 @@ function rcDayLimitLinks( $days, $limit, $page="Recentchanges", $more="", $doall
          rcDaysLink( $limit, 14, $page, $more  ) . " | " .
          rcDaysLink( $limit, 30, $page, $more  ) .
          ( $doall ? ( " | " . rcDaysLink( $limit, 0, $page, $more ) ) : "" );
-       $note = wfMsg( "rclinks", $cl, $dl, $mlink );
+       $shm = wfMsg( "showhideminor", $minorLink, $botLink, $liuLink );
+       $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 .= "&";