3 * Implements Special:Listusers
5 * Copyright © 2004 Brion Vibber, lcrocker, Tim Starling,
6 * Domas Mituzas, Antoine Musso, Jens Frank, Zhengzhu,
7 * 2006 Rob Church <robchur@gmail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
25 * @ingroup SpecialPage
29 * This class is used to get a list of user. The ones with specials
30 * rights (sysop, bureaucrat, developer) will have them displayed
31 * next to their names.
33 * @ingroup SpecialPage
35 class UsersPager
extends AlphabeticPager
{
38 * @param IContextSource $context
39 * @param array $par (Default null)
40 * @param bool $including Whether this page is being transcluded in
43 function __construct( IContextSource
$context = null, $par = null, $including = null ) {
45 $this->setContext( $context );
48 $request = $this->getRequest();
49 $par = ( $par !== null ) ?
$par : '';
50 $parms = explode( '/', $par );
51 $symsForAll = array( '*', 'user' );
53 if ( $parms[0] != '' &&
54 ( in_array( $par, User
::getAllGroups() ) ||
in_array( $par, $symsForAll ) )
56 $this->requestedGroup
= $par;
57 $un = $request->getText( 'username' );
58 } elseif ( count( $parms ) == 2 ) {
59 $this->requestedGroup
= $parms[0];
62 $this->requestedGroup
= $request->getVal( 'group' );
63 $un = ( $par != '' ) ?
$par : $request->getText( 'username' );
66 if ( in_array( $this->requestedGroup
, $symsForAll ) ) {
67 $this->requestedGroup
= '';
69 $this->editsOnly
= $request->getBool( 'editsOnly' );
70 $this->creationSort
= $request->getBool( 'creationSort' );
71 $this->including
= $including;
72 $this->mDefaultDirection
= $request->getBool( 'desc' )
73 ? IndexPager
::DIR_DESCENDING
74 : IndexPager
::DIR_ASCENDING
;
76 $this->requestedUser
= '';
79 $username = Title
::makeTitleSafe( NS_USER
, $un );
81 if ( !is_null( $username ) ) {
82 $this->requestedUser
= $username->getText();
86 parent
::__construct();
92 function getIndexField() {
93 return $this->creationSort ?
'user_id' : 'user_name';
99 function getQueryInfo() {
100 $dbr = wfGetDB( DB_SLAVE
);
103 // Don't show hidden names
104 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
105 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
110 if ( $this->requestedGroup
!= '' ) {
111 $conds['ug_group'] = $this->requestedGroup
;
114 if ( $this->requestedUser
!= '' ) {
115 # Sorted either by account creation or name
116 if ( $this->creationSort
) {
117 $conds[] = 'user_id >= ' . intval( User
::idFromName( $this->requestedUser
) );
119 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser
);
123 if ( $this->editsOnly
) {
124 $conds[] = 'user_editcount > 0';
127 $options['GROUP BY'] = $this->creationSort ?
'user_id' : 'user_name';
130 'tables' => array( 'user', 'user_groups', 'ipblocks' ),
132 'user_name' => $this->creationSort ?
'MAX(user_name)' : 'user_name',
133 'user_id' => $this->creationSort ?
'user_id' : 'MAX(user_id)',
134 'edits' => 'MAX(user_editcount)',
135 'numgroups' => 'COUNT(ug_group)',
136 'singlegroup' => 'MAX(ug_group)', // the usergroup if there is only one
137 'creation' => 'MIN(user_registration)',
138 'ipb_deleted' => 'MAX(ipb_deleted)' // block/hide status
140 'options' => $options,
141 'join_conds' => array(
142 'user_groups' => array( 'LEFT JOIN', 'user_id=ug_user' ),
153 wfRunHooks( 'SpecialListusersQueryInfo', array( $this, &$query ) );
159 * @param stdClass $row
162 function formatRow( $row ) {
163 if ( $row->user_id
== 0 ) { #Bug 16487
167 $userName = $row->user_name
;
169 $ulinks = Linker
::userLink( $row->user_id
, $userName );
170 $ulinks .= Linker
::userToolLinksRedContribs(
176 $lang = $this->getLanguage();
179 $groups_list = self
::getGroups( $row->user_id
);
181 if ( !$this->including
&& count( $groups_list ) > 0 ) {
183 foreach ( $groups_list as $group ) {
184 $list[] = self
::buildGroupLink( $group, $userName );
186 $groups = $lang->commaList( $list );
189 $item = $lang->specialList( $ulinks, $groups );
191 if ( $row->ipb_deleted
) {
192 $item = "<span class=\"deleted\">$item</span>";
196 if ( !$this->including
&& $this->getConfig()->get( 'Edititis' ) ) {
197 // @todo fixme i18n issue: Hardcoded square brackets.
199 $this->msg( 'usereditcount' )->numParams( $row->edits
)->escaped() .
204 # Some rows may be null
205 if ( !$this->including
&& $row->creation
) {
206 $user = $this->getUser();
207 $d = $lang->userDate( $row->creation
, $user );
208 $t = $lang->userTime( $row->creation
, $user );
209 $created = $this->msg( 'usercreated', $d, $t, $row->user_name
)->escaped();
210 $created = ' ' . $this->msg( 'parentheses' )->rawParams( $created )->escaped();
212 $blocked = !is_null( $row->ipb_deleted
) ?
213 ' ' . $this->msg( 'listusers-blocked', $userName )->escaped() :
216 wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) );
218 return Html
::rawElement( 'li', array(), "{$item}{$edits}{$created}{$blocked}" );
221 function doBatchLookups() {
222 $batch = new LinkBatch();
223 # Give some pointers to make user links
224 foreach ( $this->mResult
as $row ) {
225 $batch->add( NS_USER
, $row->user_name
);
226 $batch->add( NS_USER_TALK
, $row->user_name
);
229 $this->mResult
->rewind();
235 function getPageHeader() {
236 list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() );
239 $out = Xml
::openElement(
241 array( 'method' => 'get', 'action' => wfScript(), 'id' => 'mw-listusers-form' )
243 Xml
::fieldset( $this->msg( 'listusers' )->text() ) .
244 Html
::hidden( 'title', $self );
247 $out .= Xml
::label( $this->msg( 'listusersfrom' )->text(), 'offset' ) . ' ' .
250 $this->requestedUser
,
255 'autofocus' => $this->requestedUser
=== ''
259 # Group drop-down list
260 $out .= Xml
::label( $this->msg( 'group' )->text(), 'group' ) . ' ' .
261 Xml
::openElement( 'select', array( 'name' => 'group', 'id' => 'group' ) ) .
262 Xml
::option( $this->msg( 'group-all' )->text(), '' );
263 foreach ( $this->getAllGroups() as $group => $groupText ) {
264 $out .= Xml
::option( $groupText, $group, $group == $this->requestedGroup
);
266 $out .= Xml
::closeElement( 'select' ) . '<br />';
267 $out .= Xml
::checkLabel(
268 $this->msg( 'listusers-editsonly' )->text(),
274 $out .= Xml
::checkLabel(
275 $this->msg( 'listusers-creationsort' )->text(),
281 $out .= Xml
::checkLabel(
282 $this->msg( 'listusers-desc' )->text(),
285 $this->mDefaultDirection
289 wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
291 # Submit button and form bottom
292 $out .= Html
::hidden( 'limit', $this->mLimit
);
293 $out .= Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() );
294 wfRunHooks( 'SpecialListusersHeader', array( $this, &$out ) );
295 $out .= Xml
::closeElement( 'fieldset' ) .
296 Xml
::closeElement( 'form' );
302 * Get a list of all explicit groups
305 function getAllGroups() {
307 foreach ( User
::getAllGroups() as $group ) {
308 $result[$group] = User
::getGroupName( $group );
316 * Preserve group and username offset parameters when paging
319 function getDefaultQuery() {
320 $query = parent
::getDefaultQuery();
321 if ( $this->requestedGroup
!= '' ) {
322 $query['group'] = $this->requestedGroup
;
324 if ( $this->requestedUser
!= '' ) {
325 $query['username'] = $this->requestedUser
;
327 wfRunHooks( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
333 * Get a list of groups the specified user belongs to
335 * @param int $uid User id
338 protected static function getGroups( $uid ) {
339 $user = User
::newFromId( $uid );
340 $groups = array_diff( $user->getEffectiveGroups(), User
::getImplicitGroups() );
346 * Format a link to a group description page
348 * @param string $group Group name
349 * @param string $username Username
352 protected static function buildGroupLink( $group, $username ) {
353 return User
::makeGroupLinkHtml(
355 htmlspecialchars( User
::getGroupMember( $group, $username ) )
361 * @ingroup SpecialPage
363 class SpecialListUsers
extends IncludableSpecialPage
{
367 public function __construct() {
368 parent
::__construct( 'Listusers' );
372 * Show the special page
374 * @param string $par (optional) A group to list users from
376 public function execute( $par ) {
378 $this->outputHeader();
380 $up = new UsersPager( $this->getContext(), $par, $this->including() );
382 # getBody() first to check, if empty
383 $usersbody = $up->getBody();
386 if ( !$this->including() ) {
387 $s = $up->getPageHeader();
391 $s .= $up->getNavigationBar();
392 $s .= Html
::rawElement( 'ul', array(), $usersbody );
393 $s .= $up->getNavigationBar();
395 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
398 $this->getOutput()->addHTML( $s );
402 * Return an array of subpages beginning with $search that this special page will accept.
404 * @param string $search Prefix to search for
405 * @param int $limit Maximum number of results to return
406 * @return string[] Matching subpages
408 public function prefixSearchSubpages( $search, $limit = 10 ) {
409 $subpages = User
::getAllGroups();
410 return self
::prefixSearchArray( $search, $limit, $subpages );
413 protected function getGroupName() {
419 * Redirect page: Special:ListAdmins --> Special:ListUsers/sysop.
421 * @ingroup SpecialPage
423 class SpecialListAdmins
extends SpecialRedirectToSpecial
{
424 function __construct() {
425 parent
::__construct( 'Listadmins', 'Listusers', 'sysop' );
430 * Redirect page: Special:ListBots --> Special:ListUsers/bot.
432 * @ingroup SpecialPage
434 class SpecialListBots
extends SpecialRedirectToSpecial
{
435 function __construct() {
436 parent
::__construct( 'Listbots', 'Listusers', 'bot' );