* PageHistory::diffButtons
[lhc/web/wiklou.git] / includes / SpecialNewpages.php
index cc1a221..24fa0fb 100644 (file)
@@ -1,25 +1,29 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
 /**
- *
- */
-require_once( 'QueryPage.php' );
-
-/**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * implements Special:Newpages
+ * @addtogroup SpecialPage
  */
 class NewPagesPage extends QueryPage {
-       var $namespace;
 
-       function NewPagesPage( $namespace = NS_MAIN ) {
+       var $namespace;
+       var $username;
+       var $hideliu;
+       var $hidepatrolled;
+       var $hidebots;
+       var $defaults;
+               
+       function NewPagesPage( $namespace=NS_MAIN, $username='', $hideliu=false, $hidepatrolled=false, $hidebots=false, $defaults=array()) {
                $this->namespace = $namespace;
+               $this->username = $username;
+               $this->hideliu = $hideliu;
+               $this->hidepatrolled = $hidepatrolled;
+               $this->hidebots = $hidebots;
+               $this->defaults = $defaults;
        }
 
        function getName() {
@@ -31,11 +35,38 @@ class NewPagesPage extends QueryPage {
                return false;
        }
 
+       function makeUserWhere( &$dbo ) {
+               global $wgGroupPermissions;
+               $where = '';
+               if ($this->hidepatrolled) 
+                       $where .= ' AND rc_patrolled = 0';
+               if ($this->hidebots)
+                       $where .= ' AND rc_bot = 0';
+               if ($wgGroupPermissions['*']['createpage'] == true && $this->hideliu) {
+                       $where .= ' AND rc_user = 0';   
+               } else {
+                       $title = Title::makeTitleSafe( NS_USER, $this->username );
+                       if( $title ) {
+                               $where .= ' AND rc_user_text = ' . $dbo->addQuotes( $title->getText() );
+                       }
+               }
+               return $where;
+       }
+
+       private function makeNamespaceWhere() {
+               return $this->namespace !== 'all'
+                       ? ' AND rc_namespace = ' . intval( $this->namespace )
+                       : '';
+       }
+
        function getSQL() {
-               global $wgUser, $wgUseRCPatrol;
-               $usepatrol = ( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ) ? 1 : 0;
-               $dbr =& wfGetDB( DB_SLAVE );
-               extract( $dbr->tableNames( 'recentchanges', 'page', 'text' ) );
+               global $wgUser, $wgUseNPPatrol, $wgUseRCPatrol;
+               $usepatrol = ( $wgUseNPPatrol || $wgUseRCPatrol ) ? 1 : 0;
+               $dbr = wfGetDB( DB_SLAVE );
+               list( $recentchanges, $page ) = $dbr->tableNamesN( 'recentchanges', 'page' );
+
+               $nsfilter = $this->makeNamespaceWhere();
+               $uwhere = $this->makeUserWhere( $dbr );
 
                # FIXME: text will break with compression
                return
@@ -43,9 +74,9 @@ class NewPagesPage extends QueryPage {
                                rc_namespace AS namespace,
                                rc_title AS title,
                                rc_cur_id AS cur_id,
-                               rc_user AS user,
+                               rc_user AS \"user\",
                                rc_user_text AS user_text,
-                               rc_comment as comment,
+                               rc_comment as \"comment\",
                                rc_timestamp AS timestamp,
                                rc_timestamp AS value,
                                '{$usepatrol}' as usepatrol,
@@ -55,7 +86,9 @@ class NewPagesPage extends QueryPage {
                                page_latest as rev_id
                        FROM $recentchanges,$page
                        WHERE rc_cur_id=page_id AND rc_new=1
-                       AND rc_namespace=" . $this->namespace . " AND page_is_redirect=0";
+                       {$nsfilter}
+                       AND page_is_redirect = 0
+                       {$uwhere}";
        }
        
        function preprocessResults( &$dbo, &$res ) {
@@ -71,32 +104,39 @@ class NewPagesPage extends QueryPage {
                        $dbo->dataSeek( $res, 0 );
        }
 
+       /**
+        * Format a row, providing the timestamp, links to the page/history, size, user links, and a comment
+        *
+        * @param $skin Skin to use
+        * @param $result Result row
+        * @return string
+        */
        function formatResult( $skin, $result ) {
-               global $wgLang, $wgContLang, $wgUser, $wgUseRCPatrol;
-               $u = $result->user;
-               $ut = $result->user_text;
-               $dirmark = $wgLang->getDirMark(); // To keep text in correct order
-
-               $length = wfMsgExt( 'nbytes', array('parsemag', 'escape'),
-                       $wgLang->formatNum( $result->length ) );
-               $d = $wgLang->timeanddate( $result->timestamp, true );
-
-               # Since there is no diff link, we need to give users a way to
-               # mark the article as patrolled if it isn't already
-               $ns = $wgContLang->getNsText( $result->namespace );
-               if( $wgUseRCPatrol && !is_null( $result->usepatrol ) && $result->usepatrol && $result->patrolled == 0 && $wgUser->isAllowed( 'patrol' ) ) {
-                       $link = $skin->makeKnownLink( $ns . ':' . $result->title, '', "rcid={$result->rcid}" );
-               } else {
-                       $link = $skin->makeKnownLink( $ns . ':' . $result->title, '' );
-               }
+               global $wgLang, $wgContLang;
+               $dm = $wgContLang->getDirMark();
 
-               $userLink = $skin->userLink( $u, $ut );
-               $userTools = $skin->userToolLinks( $u, $ut );
+               $title = Title::makeTitleSafe( $result->namespace, $result->title );
+               $time = $wgLang->timeAndDate( $result->timestamp, true );
+               $plink = $skin->makeKnownLinkObj( $title, '', $this->patrollable( $result ) ? 'rcid=' . $result->rcid : '' );
+               $hist = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'hist' ), 'action=history' );
+               $length = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ), $wgLang->formatNum( htmlspecialchars( $result->length ) ) );
+               $ulink = $skin->userLink( $result->user, $result->user_text ) . ' ' . $skin->userToolLinks( $result->user, $result->user_text );
+               $comment = $skin->commentBlock( $result->comment );
 
-               $s = "{$d} {$dirmark}{$link} {$dirmark}({$length}) . . " .
-                       "{$dirmark}{$userLink}{$dirmark}{$userTools}";
-               $s .= $dirmark . $skin->commentBlock( $result->comment );
-               return $s;
+               return "{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}";
+       }
+
+       /**
+        * Should a specific result row provide "patrollable" links?
+        *
+        * @param $result Result row
+        * @return bool
+        */
+       function patrollable( $result ) {
+               global $wgUser, $wgUseRCPatrol, $wgUseNPPatrol;
+               return ( $wgUseRCPatrol || $wgUseNPPatrol )
+                       && $wgUser->isAllowed( 'patrol' )
+                       && !$result->patrolled;
        }
 
        function feedItemDesc( $row ) {
@@ -112,34 +152,70 @@ class NewPagesPage extends QueryPage {
        }
        
        /**
-        * Show a namespace selection form for filtering
+        * Show a form for filtering namespace and username
         *
         * @return string
         */     
        function getPageHeader() {
-               $thisTitle = Title::makeTitle( NS_SPECIAL, $this->getName() );
-               $form  = wfOpenElement( 'form', array(
-                       'method' => 'post',
-                       'action' => $thisTitle->getLocalUrl() ) );
-               $form .= wfElement( 'label', array( 'for' => 'namespace' ),
-                       wfMsg( 'namespace' ) ) . ' ';
-               $form .= HtmlNamespaceSelector( $this->namespace );
-               # Preserve the offset and limit
-               $form .= wfElement( 'input', array(
-                       'type' => 'hidden',
-                       'name' => 'offset',
-                       'value' => $this->offset ) );
-               $form .= wfElement( 'input', array(
-                       'type' => 'hidden',
-                       'name' => 'limit',
-                       'value' => $this->limit ) );
-               $form .= wfElement( 'input', array(
-                       'type' => 'submit',
-                       'name' => 'submit',
-                       'id' => 'submit',
-                       'value' => wfMsg( 'allpagessubmit' ) ) );
-               $form .= wfCloseElement( 'form' );
-               return( $form );
+               global $wgScript, $wgContLang, $wgGroupPermissions, $wgUser, $wgUseRCPatrol, $wgUseNPPatrol;
+               $align = $wgContLang->isRTL() ? 'left' : 'right';
+               $self = SpecialPage::getTitleFor( $this->getName() );
+
+               // show/hide links
+               $showhide = array( wfMsg( 'show' ), wfMsg( 'hide' ));
+
+               $nondefaults = array();
+               wfAppendToArrayIfNotDefault( 'hidepatrolled', $this->hidepatrolled, $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'hideliu', $this->hideliu, $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'hidebots', $this->hidebots, $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'namespace', $this->namespace, $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'limit', $this->limit , $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'offset', $this->offset , $this->defaults, $nondefaults);
+               wfAppendToArrayIfNotDefault( 'username', $this->username , $this->defaults, $nondefaults);
+               
+               $liuLink =  $wgUser->getSkin()->makeKnownLink( $wgContLang->specialPage( 'Newpages' ),
+                       htmlspecialchars( $showhide[1-$this->hideliu] ), wfArrayToCGI( array( 'hideliu' => 1-$this->hideliu ),  $nondefaults ) );
+               $patrLink =  $wgUser->getSkin()->makeKnownLink( $wgContLang->specialPage( 'Newpages' ),
+                       htmlspecialchars( $showhide[1-$this->hidepatrolled] ), wfArrayToCGI( array( 'hidepatrolled' => 1-$this->hidepatrolled ),  $nondefaults ) );
+               $botsLink =  $wgUser->getSkin()->makeKnownLink( $wgContLang->specialPage( 'Newpages' ),
+                       htmlspecialchars( $showhide[1-$this->hidebots] ), wfArrayToCGI( array( 'hidebots' => 1-$this->hidebots ),  $nondefaults ) );
+               $links = array();
+               if( $wgGroupPermissions['*']['createpage'] == true )
+                       $links[] = wfMsgHtml( 'rcshowhideliu', $liuLink );
+               if( $wgUseNPPatrol || $wgUseRCPatrol )
+                       $links[] = wfMsgHtml( 'rcshowhidepatr', $patrLink );
+               $links[] = wfMsgHtml( 'rcshowhidebots', $botsLink );
+               $hl = implode( ' | ', $links );
+
+               $form = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) .
+                       Xml::hidden( 'title', $self->getPrefixedDBkey() ) .
+                       Xml::openElement( 'table' ) .
+                       "<tr>
+                               <td align=\"$align\">" .
+                                       Xml::label( wfMsg( 'namespace' ), 'namespace' ) .
+                               "</td>
+                               <td>" .
+                                       Xml::namespaceSelector( intval( $this->namespace ), 'all' ) .
+                               "</td>
+                       </tr>
+<tr>
+                               <td align=\"$align\">" .
+                                       Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) .
+                               "</td>
+                               <td>" .
+                                       Xml::input( 'username', 30, $this->username, array( 'id' => 'mw-np-username' ) ) .
+                               "</td>
+                       </tr><tr><td></td><td>" . $hl . "</td></tr>
+                       <tr> <td></td>
+                               <td>" .
+                                       Xml::submitButton( wfMsg( 'allpagessubmit' ) ) .
+                               "</td>
+                       </tr>" .
+                       Xml::closeElement( 'table' ) .
+                       Xml::hidden( 'offset', $this->offset ) .
+                       Xml::hidden( 'limit', $this->limit ) .
+                       Xml::closeElement( 'form' );
+               return $form;
        }
        
        /**
@@ -148,7 +224,7 @@ class NewPagesPage extends QueryPage {
         * @return array
         */
        function linkParameters() {
-               return( array( 'namespace' => $this->namespace ) );
+               return( array( 'namespace' => $this->namespace, 'username' => $this->username, 'hideliu' => $this->hideliu, 'hidepatrolled' => $this->hidepatrolled ) );
        }
        
 }
@@ -159,17 +235,36 @@ class NewPagesPage extends QueryPage {
 function wfSpecialNewpages($par, $specialPage) {
        global $wgRequest, $wgContLang;
 
+
        list( $limit, $offset ) = wfCheckLimits();
-       $namespace = NS_MAIN;
+
+       $defaults = array(
+               /* bool */ 'hideliu' => false,  
+               /* bool */ 'hidepatrolled' => false,
+               /* bool */ 'hidebots' => false,
+               /* text */ 'namespace' => NS_MAIN,
+               /* text */ 'username' => '',
+               /* int  */ 'offset' => $offset,
+               /* int  */ 'limit' => $limit,
+);
+
+       extract($defaults);
 
        if ( $par ) {
                $bits = preg_split( '/\s*,\s*/', trim( $par ) );
                foreach ( $bits as $bit ) {
                        if ( 'shownav' == $bit )
                                $shownavigation = true;
+                       if ( 'hideliu' == $bit )
+                               $hideliu = true;
+                       if ( 'hidepatrolled' == $bit )
+                               $hidepatrolled = true;
+                       if ( 'hidebots' == $bit )
+                               $hidebots = true;
                        if ( is_numeric( $bit ) )
                                $limit = $bit;
 
+                       $m = array();
                        if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) )
                                $limit = intval($m[1]);
                        if ( preg_match( '/^offset=(\d+)$/', $bit, $m ) )
@@ -182,17 +277,23 @@ function wfSpecialNewpages($par, $specialPage) {
                        }
                }
        } else {
-               if( $ns = $wgRequest->getInt( 'namespace', 0 ) )
+               if( $ns = $wgRequest->getInt( 'namespace', NS_MAIN ) )
                        $namespace = $ns;
+               if( $un = $wgRequest->getText( 'username' ) )
+                       $username = $un;
+               if( $hliu = $wgRequest->getBool( 'hideliu' ) )
+                       $hideliu = $hliu;
+               if( $hpatrolled = $wgRequest->getBool( 'hidepatrolled' ) )
+                       $hidepatrolled = $hpatrolled;
+               if( $hbots =  $wgRequest->getBool( 'hidebots' ) )
+                       $hidebots = $hbots;
        }
        
        if ( ! isset( $shownavigation ) )
                $shownavigation = ! $specialPage->including();
 
-       $npp = new NewPagesPage( $namespace );
+       $npp = new NewPagesPage( $namespace, $username, $hideliu, $hidepatrolled, $hidebots, $defaults );
 
        if ( ! $npp->doFeed( $wgRequest->getVal( 'feed' ), $limit ) )
                $npp->doQuery( $offset, $limit, $shownavigation );
 }
-
-?>