replace TYPE= with ENGINE=, (supported since 4.0, TYPE deprecated since 4.1)
[lhc/web/wiklou.git] / includes / SpecialRecentchanges.php
index ac4a8c5..5f5c81b 100644 (file)
@@ -18,12 +18,15 @@ require_once( 'Revision.php' );
 function wfSpecialRecentchanges( $par, $specialPage ) {
        global $wgUser, $wgOut, $wgRequest, $wgUseRCPatrol;
        global $wgRCShowWatchingUsers, $wgShowUpdatedMarker;
-       global $wgLinkCache;
+       global $wgAllowCategorizedRecentChanges ;
        $fname = 'wfSpecialRecentchanges';
 
        # Get query parameters
        $feedFormat = $wgRequest->getVal( 'feed' );
 
+       /* Checkbox values can't be true be default, because
+        * we cannot differentiate between unset and not set at all
+        */
        $defaults = array(
        /* int  */ 'days' => $wgUser->getDefaultOption('rcdays'),
        /* int  */ 'limit' => $wgUser->getDefaultOption('rclimit'),
@@ -31,9 +34,11 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
        /* bool */ 'hidebots' => true,
        /* bool */ 'hideliu' => false,
        /* bool */ 'hidepatrolled' => false,
+       /* bool */ 'hidemyself' => false,
        /* text */ 'from' => '',
        /* text */ 'namespace' => null,
        /* bool */ 'invert' => false,
+       /* bool */ 'categories_any' => false,
        );
 
        extract($defaults);
@@ -51,8 +56,7 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
 
        /* order of selection: url > preferences > default */
        $hideminor = $wgRequest->getBool( 'hideminor', $wgUser->getOption( 'hideminor') ? true : $defaults['hideminor'] );
-
-
+       
        # As a feed, use limited settings only
        if( $feedFormat ) {
                global $wgFeedLimit;
@@ -67,6 +71,7 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                $hidebots = $wgRequest->getBool( 'hidebots', $defaults['hidebots'] );
                $hideliu = $wgRequest->getBool( 'hideliu', $defaults['hideliu'] );
                $hidepatrolled = $wgRequest->getBool( 'hidepatrolled', $defaults['hidepatrolled'] );
+               $hidemyself = $wgRequest->getBool ( 'hidemyself', $defaults['hidemyself'] );
                $from = $wgRequest->getVal( 'from', $defaults['from'] );
 
                # Get query parameters from path
@@ -79,6 +84,7 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                                if ( 'minor' == $bit ) $hideminor = 0;
                                if ( 'hideliu' == $bit ) $hideliu = 1;
                                if ( 'hidepatrolled' == $bit ) $hidepatrolled = 1;
+                               if ( 'hidemyself' == $bit ) $hidemyself = 1;
 
                                if ( is_numeric( $bit ) ) {
                                        $limit = $bit;
@@ -127,8 +133,15 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
 
        $hidem  = $hideminor ? 'AND rc_minor=0' : '';
        $hidem .= $hidebots ? ' AND rc_bot=0' : '';
-       $hidem .= $hideliu ? ' AND rc_user=0' : '';
+       $hidem .= ( $hideliu && !$hidemyself ) ? ' AND rc_user=0' : '';
        $hidem .= $hidepatrolled ? ' AND rc_patrolled=0' : '';
+       if ( $hidemyself ) {
+               if ( $wgUser->getID() ) {
+                       $hidem .= ' AND rc_user <> '.$wgUser->getID();
+               } else {
+                       $hidem .= ' AND rc_user_text<>' . $dbr->addQuotes( $wgUser->getName() );
+               }
+       }
        $hidem .= is_null( $namespace ) ?  '' : ' AND rc_namespace' . ($invert ? '!=' : '=') . $namespace;
 
        // This is the big thing!
@@ -138,7 +151,7 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
        // Perform query
        $sql2 = "SELECT * FROM $recentchanges FORCE INDEX (rc_timestamp) " .
          ($uid ? "LEFT OUTER JOIN $watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace " : "") .
-         "WHERE rc_timestamp > '{$cutoff}' {$hidem} " .
+         "WHERE rc_timestamp >= '{$cutoff}' {$hidem} " .
          "ORDER BY rc_timestamp DESC";
        $sql2 = $dbr->limitResult($sql2, $limit, 0);
        $res = $dbr->query( $sql2, $fname );
@@ -168,7 +181,8 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                # Web output...
 
                // Run existence checks
-               $batch->execute( $wgLinkCache );
+               $batch->execute();
+               $any = $wgRequest->getBool( 'categories_any', $defaults['categories_any']);
 
                // Output header
                if ( !$specialPage->including() ) {
@@ -176,20 +190,22 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
 
                        // Dump everything here
                        $nondefaults = array();
-               
+
                        wfAppendToArrayIfNotDefault( 'days', $days, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'limit', $limit , $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'hideminor', $hideminor, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'hidebots', $hidebots, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'hideliu', $hideliu, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'hidepatrolled', $hidepatrolled, $defaults, $nondefaults);
+                       wfAppendToArrayIfNotDefault( 'hidemyself', $hidemyself, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'from', $from, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'namespace', $namespace, $defaults, $nondefaults);
                        wfAppendToArrayIfNotDefault( 'invert', $invert, $defaults, $nondefaults);
+                       wfAppendToArrayIfNotDefault( 'categories_any', $any, $defaults, $nondefaults);
 
                        // Add end of the texts
                        $wgOut->addHTML( '<div class="rcoptions">' . rcOptionsPanel( $defaults, $nondefaults ) . "\n" );
-                       $wgOut->addHTML( rcNamespaceForm( $namespace, $invert, $nondefaults) . '</div>'."\n");
+                       $wgOut->addHTML( rcNamespaceForm( $namespace, $invert, $nondefaults, $any ) . '</div>'."\n");
                }
 
                // And now for the content
@@ -197,6 +213,13 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                $wgOut->setSyndicated( true );
 
                $list = ChangesList::newFromUser( $wgUser );
+               
+               if ( $wgAllowCategorizedRecentChanges ) {
+                       $categories = trim ( $wgRequest->getVal ( 'categories' , "" ) ) ;
+                       $categories = str_replace ( "|" , "\n" , $categories ) ;
+                       $categories = explode ( "\n" , $categories ) ;
+                       rcFilterByCategories ( $rows , $categories , $any ) ;
+               }
 
                $s = $list->beginRecentChangesList();
                $counter = 1;
@@ -235,6 +258,53 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
        }
 }
 
+function rcFilterByCategories ( &$rows , $categories , $any ) {
+       require_once ( 'Categoryfinder.php' ) ;
+       
+       # Filter categories
+       $cats = array () ;
+       foreach ( $categories AS $cat ) {
+               $cat = trim ( $cat ) ;
+               if ( $cat == "" ) continue ;
+               $cats[] = $cat ;
+       }
+       
+       # Filter articles
+       $articles = array () ;
+       $a2r = array () ;
+       foreach ( $rows AS $k => $r ) {
+               $nt = Title::newFromText ( $r->rc_title , $r->rc_namespace ) ;
+               $id = $nt->getArticleID() ;
+               if ( $id == 0 ) continue ; # Page might have been deleted...
+               if ( !in_array ( $id , $articles ) ) {
+                       $articles[] = $id ;
+               }
+               if ( !isset ( $a2r[$id] ) ) {
+                       $a2r[$id] = array() ;
+               }
+               $a2r[$id][] = $k ;
+       }
+       
+       # Shortcut?
+       if ( count ( $articles ) == 0 OR count ( $cats ) == 0 )
+               return ;
+       
+       # Look up
+       $c = new Categoryfinder ;
+       $c->seed ( $articles , $cats , $any ? "OR" : "AND" ) ;
+       $match = $c->run () ;
+       
+       # Filter
+       $newrows = array () ;
+       foreach ( $match AS $id ) {
+               foreach ( $a2r[$id] AS $rev ) {
+                       $k = $rev ;
+                       $newrows[$k] = $rows[$k] ;
+               }
+       }
+       $rows = $newrows ;
+}
+
 function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod ) {
        global $messageMemc, $wgDBname, $wgFeedCacheTimeout;
        global $wgFeedClasses, $wgTitle, $wgSitename, $wgContLanguageCode;
@@ -296,7 +366,6 @@ function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod ) {
 }
 
 function rcDoOutputFeed( $rows, &$feed ) {
-       global $wgSitename, $wgFeedClasses, $wgContLanguageCode;
        $fname = 'rcDoOutputFeed';
        wfProfileIn( $fname );
 
@@ -363,7 +432,7 @@ function rcDaysLink( $lim, $d, $page='Recentchanges', $more='' ) {
  * Used by Recentchangeslinked
  */
 function rcDayLimitLinks( $days, $limit, $page='Recentchanges', $more='', $doall = false, $minorLink = '',
-       $botLink = '', $liuLink = '', $patrLink = '' ) {
+       $botLink = '', $liuLink = '', $patrLink = '', $myselfLink = '' ) {
        if ($more != '') $more .= '&';
        $cl = rcCountLink( 50, $days, $page, $more ) . ' | ' .
          rcCountLink( 100, $days, $page, $more  ) . ' | ' .
@@ -376,7 +445,7 @@ function rcDayLimitLinks( $days, $limit, $page='Recentchanges', $more='', $doall
          rcDaysLink( $limit, 14, $page, $more  ) . ' | ' .
          rcDaysLink( $limit, 30, $page, $more  ) .
          ( $doall ? ( ' | ' . rcDaysLink( $limit, 0, $page, $more ) ) : '' );
-       $shm = wfMsg( 'showhideminor', $minorLink, $botLink, $liuLink, $patrLink );
+       $shm = wfMsg( 'showhideminor', $minorLink, $botLink, $liuLink, $patrLink, $myselfLink );
        $note = wfMsg( 'rclinks', $cl, $dl, $shm );
        return $note;
 }
@@ -386,7 +455,7 @@ function rcDayLimitLinks( $days, $limit, $page='Recentchanges', $more='', $doall
  * Makes change an option link which carries all the other options
  */
 function makeOptionsLink( $title, $override, $options ) {
-       global $wgUser, $wgLang, $wgContLang;
+       global $wgUser, $wgContLang;
        $sk = $wgUser->getSkin();
        return $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ),
                $title, wfArrayToCGI( $override, $options ) );
@@ -435,9 +504,10 @@ function rcOptionsPanel( $defaults, $nondefaults ) {
                array( 'hideliu' => 1-$options['hideliu'] ), $nondefaults);
        $patrLink  = makeOptionsLink( $showhide[1-$options['hidepatrolled']],
                array( 'hidepatrolled' => 1-$options['hidepatrolled'] ), $nondefaults);
-
-       $hl = wfMsg( 'showhideminor', $minorLink, $botLink, $liuLink, $patrLink );
-
+       $myselfLink = makeOptionsLink( $showhide[1-$options['hidemyself']],
+               array( 'hidemyself' => 1-$options['hidemyself'] ), $nondefaults);
+       $hl = wfMsg( 'showhideminor', $minorLink, $botLink, $liuLink, $patrLink, $myselfLink );
+       
        // show from this onward link
        $now = $wgLang->timeanddate( wfTimestampNow(), true );
        $tl =  makeOptionsLink( $now, array( 'from' => wfTimestampNow()), $nondefaults );
@@ -457,29 +527,44 @@ function rcOptionsPanel( $defaults, $nondefaults ) {
  *              if there is none
  * @param bool $invert Whether to invert the namespace selection
  * @param array $nondefaults An array of non default options to be remembered
+ * @param bool $categories_any Default value for the checkbox
  *
  * @return string
  */
-function rcNamespaceForm ( $namespace, $invert, $nondefaults ) {
-       global $wgContLang, $wgScript;
+function rcNamespaceForm( $namespace, $invert, $nondefaults, $categories_any ) {
+       global $wgScript, $wgAllowCategorizedRecentChanges, $wgRequest;
        $t = Title::makeTitle( NS_SPECIAL, 'Recentchanges' );
 
        $namespaceselect = HTMLnamespaceselector($namespace, '');
        $submitbutton = '<input type="submit" value="' . wfMsgHtml( 'allpagessubmit' ) . "\" />\n";
        $invertbox = "<input type='checkbox' name='invert' value='1' id='nsinvert'" . ( $invert ? ' checked="checked"' : '' ) . ' />';
-
+       
+       if ( $wgAllowCategorizedRecentChanges ) {
+               $categories = trim ( $wgRequest->getVal ( 'categories' , "" ) ) ;
+               $cb_arr = array( 'type' => 'checkbox', 'name' => 'categories_any', 'value' => "1" ) ;
+               if ( $categories_any ) $cb_arr['checked'] = "checked" ;
+               $catbox = "<br/>" ;
+               $catbox .= wfMsg('rc_categories') . " ";
+               $catbox .= wfElement('input', array( 'type' => 'text', 'name' => 'categories', 'value' => $categories));
+               $catbox .= " &nbsp;" ;
+               $catbox .= wfElement('input', $cb_arr );
+               $catbox .= wfMsg('rc_categories_any');
+       } else {
+               $catbox = "" ;
+       }
+       
        $out = "<div class='namespacesettings'><form method='get' action='{$wgScript}'>\n";
 
        foreach ( $nondefaults as $key => $value ) {
                if ($key != 'namespace' && $key != 'invert')
                        $out .= wfElement('input', array( 'type' => 'hidden', 'name' => $key, 'value' => $value));
        }
-       
+
        $out .= '<input type="hidden" name="title" value="'.$t->getPrefixedText().'" />';
        $out .= "
 <div id='nsselect' class='recentchanges'>
        <label for='namespace'>" . wfMsgHtml('namespace') . "</label>
-       {$namespaceselect}{$submitbutton}{$invertbox} <label for='nsinvert'>" . wfMsgHtml('invert') . "</label>\n</div>";
+       {$namespaceselect}{$submitbutton}{$invertbox} <label for='nsinvert'>" . wfMsgHtml('invert') . "</label>{$catbox}\n</div>";
        $out .= '</form></div>';
        return $out;
 }
@@ -521,6 +606,7 @@ function rcFormatDiff( $row ) {
                        } else {
                                // Diff output fine, clean up any illegal UTF-8
                                $diffText = UtfNormal::cleanUp( $diffText );
+                               $diffText = rcApplyDiffStyle( $diffText );
                        }
                        wfProfileOut( "$fname-dodiff" );
                } else {
@@ -540,4 +626,32 @@ function rcFormatDiff( $row ) {
        return $completeText;
 }
 
+/**
+ * Hacky application of diff styles for the feeds.
+ * Might be 'cleaner' to use DOM or XSLT or something,
+ * but *gack* it's a pain in the ass.
+ *
+ * @param string $text
+ * @return string
+ * @access private
+ */
+function rcApplyDiffStyle( $text ) {
+       $styles = array(
+               'diff'             => 'background-color: white;',
+               'diff-otitle'      => 'background-color: white;',
+               'diff-ntitle'      => 'background-color: white;',
+               'diff-addedline'   => 'background: #cfc; font-size: smaller;',
+               'diff-deletedline' => 'background: #ffa; font-size: smaller;',
+               'diff-context'     => 'background: #eee; font-size: smaller;',
+               'diffchange'       => 'color: red; font-weight: bold;',
+       );
+       
+       foreach( $styles as $class => $style ) {
+               $text = preg_replace( "/(<[^>]+)class=(['\"])$class\\2([^>]*>)/",
+                       "\\1style=\"$style\"\\3", $text );
+       }
+       
+       return $text;
+}
+
 ?>