]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - includes/SpecialListusers.php
MediaWiki 1.11.0
[autoinstalls/mediawiki.git] / includes / SpecialListusers.php
index 892bbd6acea02932d9b7573a22a7937aa3fc895a..460d4259cd8321dff78a662a20706c05bbeebffb 100644 (file)
 <?php
+
 # Copyright (C) 2004 Brion Vibber, lcrocker, Tim Starling,
 # Domas Mituzas, Ashar Voultoiz, Jens Frank, Zhengzhu.
 #
+# © 2006 Rob Church <robchur@gmail.com>
+#
 # http://www.mediawiki.org/
-# 
+#
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or 
+# the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License along
 # with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # http://www.gnu.org/copyleft/gpl.html
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
- */
-
-/**
- *
+ * @addtogroup SpecialPage
  */
-require_once('QueryPage.php');
 
 /**
  * This class is used to get a list of user. The ones with specials
  * rights (sysop, bureaucrat, developer) will have them displayed
  * next to their names.
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
-class ListUsersPage extends QueryPage {
-       var $requestedGroup = '';
-       var $requestedUser = '';
-       var $previousResult = null;
-       var $concatGroups = '';
-       
-       function getName() {
-               return 'Listusers';
-       }
-       function isSyndicated() { return false; }
 
-       /**
-        * Show a drop down list to select a group as well as a user name
-        * search box.
-        * @todo localize
-        */
-       function getPageHeader( ) {
-               global $wgScript;
-               
-               // Various variables used for the form
-               $action = htmlspecialchars( $wgScript );
-               $title = Title::makeTitle( NS_SPECIAL, 'Listusers' );
-               $special = htmlspecialchars( $title->getPrefixedDBkey() );
-
-               // form header
-               $out = '<form method="get" action="'.$action.'">' .
-                               '<input type="hidden" name="title" value="'.$special.'" />' .
-                               wfMsgHtml( 'groups-editgroup-name' ) . '<select name="group">';
-
-               // get all group names and IDs
-               $groups = User::getAllGroups();
-               
-               // we want a default empty group
-               $out.= '<option value=""></option>';
-               
-               // build the dropdown list menu using datas from the database
-               foreach ( $groups as $group ) {
-                       $selected = ($group == $this->requestedGroup);
-                       $out .= wfElement( 'option',
-                               array_merge(
-                                       array( 'value' => $group ),
-                                       $selected ? array( 'selected' => 'selected' ) : array() ),
-                               User::getGroupName( $group ) );
+class UsersPager extends AlphabeticPager {
+
+       function __construct($group=null) {
+               global $wgRequest;
+               $this->requestedGroup = $group != "" ? $group : $wgRequest->getVal( 'group' );
+               $un = $wgRequest->getText( 'username' );
+               $this->requestedUser = '';
+               if ( $un != '' ) {
+                       $username = Title::makeTitleSafe( NS_USER, $un );
+                       if( ! is_null( $username ) ) {
+                               $this->requestedUser = $username->getText();
+                       }
                }
-               $out .= '</select> ';
+               parent::__construct();
+       }
 
-               $out .= wfMsgHtml( 'specialloguserlabel' ) . '<input type="text" name="username" /> ';
 
-               // OK button, end of form.
-               $out .= '<input type="submit" /></form>';
-               // congratulations the form is now build
-               return $out;    
-       }
-       
-       function getSQL() {
-               $dbr =& wfGetDB( DB_SLAVE );
-               $user = $dbr->tableName( 'user' );
-               $user_groups = $dbr->tableName( 'user_groups' );
-               
-               // We need to get an 'atomic' list of users, so that we
-               // don't break the list half-way through a user's group set
-               // and so that lists by group will show all group memberships.
-               //
-               // On MySQL 4.1 we could use GROUP_CONCAT to grab group
-               // assignments together with users pretty easily. On other
-               // versions, it's not so easy to do it consistently.
-               // For now we'll just grab the number of memberships, so
-               // we can then do targetted checks on those who are in
-               // non-default groups as we go down the list.
-               
-               $userspace = NS_USER;
-               $sql = "SELECT 'Listusers' as type, $userspace AS namespace, user_name AS title, " .
-                       "user_name as value, user_id, COUNT(ug_group) as numgroups " .
-                       "FROM $user ".
-                       "LEFT JOIN $user_groups ON user_id=ug_user " .
-                       $this->userQueryWhere( $dbr ) .
-                       " GROUP BY user_name";
-               
-               return $sql;
-       }
-       
-       function userQueryWhere( &$dbr ) {
-               $conds = $this->userQueryConditions();
-               return empty( $conds )
-                       ? ""
-                       : "WHERE " . $dbr->makeList( $conds, LIST_AND );
+       function getIndexField() {
+               return 'user_name';
        }
-       
-       function userQueryConditions() {
-               $conds = array();
-               if( $this->requestedGroup != '' ) {
+
+       function getQueryInfo() {
+               $conds=array();
+               // don't show hidden names
+               $conds[]='ipb_deleted IS NULL OR ipb_deleted = 0';
+               if ($this->requestedGroup != "") {
                        $conds['ug_group'] = $this->requestedGroup;
                }
-               if( $this->requestedUser != '' ) {
-                       $conds['user_name'] = $this->requestedUser;
+               if ($this->requestedUser != "") {
+                       $conds[] = 'user_name >= ' . wfGetDB()->addQuotes( $this->requestedUser );
                }
-               return $conds;
+
+               list ($user,$user_groups,$ipblocks) = wfGetDB()->tableNamesN('user','user_groups','ipblocks');
+
+               return array(
+                       'tables' => " $user LEFT JOIN $user_groups ON user_id=ug_user LEFT JOIN $ipblocks ON user_id=ipb_user AND ipb_auto=0 ",
+                       'fields' => array('user_name',
+                               'MAX(user_id) AS user_id',
+                               'COUNT(ug_group) AS numgroups', 
+                               'MAX(ug_group) AS singlegroup'),
+                       'options' => array('GROUP BY' => 'user_name'), 
+                       'conds' => $conds
+               );
+
        }
-       
-       function linkParameters() {
-               $conds = array();
-               if( $this->requestedGroup != '' ) {
-                       $conds['group'] = $this->requestedGroup;
+
+       function formatRow( $row ) {
+               $userPage = Title::makeTitle( NS_USER, $row->user_name );
+               $name = $this->getSkin()->makeLinkObj( $userPage, htmlspecialchars( $userPage->getText() ) );
+
+               if( $row->numgroups > 1 || ( $this->requestedGroup && $row->numgroups == 1 ) ) {
+                       $list = array();
+                       foreach( self::getGroups( $row->user_id ) as $group )
+                               $list[] = self::buildGroupLink( $group );
+                       $groups = implode( ', ', $list );
+               } elseif( $row->numgroups == 1 ) {
+                       $groups = self::buildGroupLink( $row->singlegroup );
+               } else {
+                       $groups = '';
                }
-               if( $this->requestedUser != '' ) {
-                       $conds['username'] = $this->requestedUser;
+
+               return '<li>' . wfSpecialList( $name, $groups ) . '</li>';
+       }
+
+       function getBody() {
+               if (!$this->mQueryDone) {
+                       $this->doQuery();
                }
-               return $conds;
+               $batch = new LinkBatch;
+
+               $this->mResult->rewind();
+
+               while ( $row = $this->mResult->fetchObject() ) {
+                       $batch->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
+               }
+               $batch->execute();
+               $this->mResult->rewind();
+               return parent::getBody();
        }
-       
-       function sortDescending() {
-               return false;
+
+       function getPageHeader( ) {
+               global $wgScript, $wgRequest;
+               $self = $this->getTitle();
+
+               # Form tag
+               $out  = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) .
+                       '<fieldset>' .
+                       Xml::element( 'legend', array(), wfMsg( 'listusers' ) );
+               $out .= Xml::hidden( 'title', $self->getPrefixedDbKey() );
+
+               # Username field
+               $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .
+                       Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' ';
+
+               # Group drop-down list
+               $out .= Xml::label( wfMsg( 'group' ), 'group' ) . ' ' .
+                       Xml::openElement('select',  array( 'name' => 'group', 'id' => 'group' ) ) .
+                       Xml::option( wfMsg( 'group-all' ), '' );
+               foreach( User::getAllGroups() as $group )
+                       $out .= Xml::option( User::getGroupName( $group ), $group, $group == $this->requestedGroup );
+               $out .= Xml::closeElement( 'select' ) . ' ';
+
+               # Submit button and form bottom
+               if( $this->mLimit )
+                       $out .= Xml::hidden( 'limit', $this->mLimit );
+               $out .= Xml::submitButton( wfMsg( 'allpagessubmit' ) ) .
+                       '</fieldset>' .
+                       Xml::closeElement( 'form' );
+
+               return $out;
        }
 
-       function formatResult( $skin, $result ) {
-               global $wgContLang;
-               
-               $userPage = Title::makeTitle( $result->namespace, $result->title );
-               $name = $skin->makeLinkObj( $userPage, htmlspecialchars( $userPage->getText() ) );
-               
-               if( !isset( $result->numgroups ) || $result->numgroups > 0 ) {
-                       $dbr =& wfGetDB( DB_SLAVE );
-                       $result = $dbr->select( 'user_groups',
-                               array( 'ug_group' ),
-                               array( 'ug_user' => $result->user_id ),
-                               'ListUsersPage::formatResult' );
-                       $groups = array();
-                       while( $row = $dbr->fetchObject( $result ) ) {
-                               $groups[] = User::getGroupName( $row->ug_group );
-                       }
-                       $dbr->freeResult( $result );
-                       
-                       if( count( $groups ) > 0 ) {
-                               $name .= ' (' .
-                                       $skin->makeLink( wfMsgForContent( 'administrators' ),
-                                               htmlspecialchars( implode( ', ', $groups ) ) ) .
-                                       ')';
-                       }
+       /**
+        * Preserve group and username offset parameters when paging
+        * @return array
+        */
+       function getDefaultQuery() {
+               $query = parent::getDefaultQuery();
+               if( $this->requestedGroup != '' )
+                       $query['group'] = $this->requestedGroup;
+               if( $this->requestedUser != '' )
+                       $query['username'] = $this->requestedUser;
+               return $query;
+       }
+
+       /**
+        * Get a list of groups the specified user belongs to
+        *
+        * @param int $uid
+        * @return array
+        */
+       private static function getGroups( $uid ) {
+               $dbr = wfGetDB( DB_SLAVE );
+               $groups = array();
+               $res = $dbr->select( 'user_groups', 'ug_group', array( 'ug_user' => $uid ), __METHOD__ );
+               if( $res && $dbr->numRows( $res ) > 0 ) {
+                       while( $row = $dbr->fetchObject( $res ) )
+                               $groups[] = $row->ug_group;
+                       $dbr->freeResult( $res );
                }
+               return $groups;
+       }
 
-               return $name;
-       }       
+       /**
+        * Format a link to a group description page
+        *
+        * @param string $group
+        * @return string
+        */
+       private static function buildGroupLink( $group ) {
+               static $cache = array();
+               if( !isset( $cache[$group] ) )
+                       $cache[$group] = User::makeGroupLinkHtml( $group, User::getGroupMember( $group ) );
+               return $cache[$group];
+       }
 }
 
 /**
@@ -186,21 +196,22 @@ class ListUsersPage extends QueryPage {
  * $par string (optional) A group to list users from
  */
 function wfSpecialListusers( $par = null ) {
-       global $wgRequest;
-
-       list( $limit, $offset ) = wfCheckLimits();
+       global $wgRequest, $wgOut;
 
+       $up = new UsersPager($par);
 
-       $slu = new ListUsersPage();
-       
-       /**
-        * Get some parameters
-        */
-       $groupTarget = isset($par) ? $par : $wgRequest->getVal( 'group' );
-       $slu->requestedGroup = $groupTarget;
-       $slu->requestedUser = $wgRequest->getVal('username');
+       # getBody() first to check, if empty
+       $usersbody = $up->getBody();
+       $s = $up->getPageHeader();
+       if( $usersbody ) {
+               $s .=   $up->getNavigationBar();
+               $s .=   '<ul>' . $usersbody . '</ul>';
+               $s .=   $up->getNavigationBar() ;
+       } else {
+               $s .=   '<p>' . wfMsgHTML('listusers-noresult') . '</p>';
+       };
 
-       return $slu->doQuery( $offset, $limit );
+       $wgOut->addHTML( $s );
 }
 
-?>
+