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 * @var array A array with user ids as key and a array of groups as value
40 protected $userGroupCache;
43 * @param IContextSource $context
44 * @param array $par (Default null)
45 * @param bool $including Whether this page is being transcluded in
48 function __construct( IContextSource
$context = null, $par = null, $including = null ) {
50 $this->setContext( $context );
53 $request = $this->getRequest();
54 $par = ( $par !== null ) ?
$par : '';
55 $parms = explode( '/', $par );
56 $symsForAll = array( '*', 'user' );
58 if ( $parms[0] != '' &&
59 ( in_array( $par, User
::getAllGroups() ) ||
in_array( $par, $symsForAll ) )
61 $this->requestedGroup
= $par;
62 $un = $request->getText( 'username' );
63 } elseif ( count( $parms ) == 2 ) {
64 $this->requestedGroup
= $parms[0];
67 $this->requestedGroup
= $request->getVal( 'group' );
68 $un = ( $par != '' ) ?
$par : $request->getText( 'username' );
71 if ( in_array( $this->requestedGroup
, $symsForAll ) ) {
72 $this->requestedGroup
= '';
74 $this->editsOnly
= $request->getBool( 'editsOnly' );
75 $this->creationSort
= $request->getBool( 'creationSort' );
76 $this->including
= $including;
77 $this->mDefaultDirection
= $request->getBool( 'desc' )
78 ? IndexPager
::DIR_DESCENDING
79 : IndexPager
::DIR_ASCENDING
;
81 $this->requestedUser
= '';
84 $username = Title
::makeTitleSafe( NS_USER
, $un );
86 if ( !is_null( $username ) ) {
87 $this->requestedUser
= $username->getText();
91 parent
::__construct();
97 function getIndexField() {
98 return $this->creationSort ?
'user_id' : 'user_name';
104 function getQueryInfo() {
105 $dbr = wfGetDB( DB_SLAVE
);
108 // Don't show hidden names
109 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
110 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
115 if ( $this->requestedGroup
!= '' ) {
116 $conds['ug_group'] = $this->requestedGroup
;
119 if ( $this->requestedUser
!= '' ) {
120 # Sorted either by account creation or name
121 if ( $this->creationSort
) {
122 $conds[] = 'user_id >= ' . intval( User
::idFromName( $this->requestedUser
) );
124 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser
);
128 if ( $this->editsOnly
) {
129 $conds[] = 'user_editcount > 0';
132 $options['GROUP BY'] = $this->creationSort ?
'user_id' : 'user_name';
135 'tables' => array( 'user', 'user_groups', 'ipblocks' ),
137 'user_name' => $this->creationSort ?
'MAX(user_name)' : 'user_name',
138 'user_id' => $this->creationSort ?
'user_id' : 'MAX(user_id)',
139 'edits' => 'MAX(user_editcount)',
140 'creation' => 'MIN(user_registration)',
141 'ipb_deleted' => 'MAX(ipb_deleted)' // block/hide status
143 'options' => $options,
144 'join_conds' => array(
145 'user_groups' => array( 'LEFT JOIN', 'user_id=ug_user' ),
156 Hooks
::run( 'SpecialListusersQueryInfo', array( $this, &$query ) );
162 * @param stdClass $row
165 function formatRow( $row ) {
166 if ( $row->user_id
== 0 ) { # Bug 16487
170 $userName = $row->user_name
;
172 $ulinks = Linker
::userLink( $row->user_id
, $userName );
173 $ulinks .= Linker
::userToolLinksRedContribs(
179 $lang = $this->getLanguage();
182 $groups_list = self
::getGroups( intval( $row->user_id
), $this->userGroupCache
);
184 if ( !$this->including
&& count( $groups_list ) > 0 ) {
186 foreach ( $groups_list as $group ) {
187 $list[] = self
::buildGroupLink( $group, $userName );
189 $groups = $lang->commaList( $list );
192 $item = $lang->specialList( $ulinks, $groups );
194 if ( $row->ipb_deleted
) {
195 $item = "<span class=\"deleted\">$item</span>";
199 if ( !$this->including
&& $this->getConfig()->get( 'Edititis' ) ) {
200 $count = $this->msg( 'usereditcount' )->numParams( $row->edits
)->escaped();
201 $edits = $this->msg( 'word-separator' )->escaped() . $this->msg( 'brackets', $count )->escaped();
205 # Some rows may be null
206 if ( !$this->including
&& $row->creation
) {
207 $user = $this->getUser();
208 $d = $lang->userDate( $row->creation
, $user );
209 $t = $lang->userTime( $row->creation
, $user );
210 $created = $this->msg( 'usercreated', $d, $t, $row->user_name
)->escaped();
211 $created = ' ' . $this->msg( 'parentheses' )->rawParams( $created )->escaped();
213 $blocked = !is_null( $row->ipb_deleted
) ?
214 ' ' . $this->msg( 'listusers-blocked', $userName )->escaped() :
217 Hooks
::run( 'SpecialListusersFormatRow', array( &$item, $row ) );
219 return Html
::rawElement( 'li', array(), "{$item}{$edits}{$created}{$blocked}" );
222 function doBatchLookups() {
223 $batch = new LinkBatch();
225 # Give some pointers to make user links
226 foreach ( $this->mResult
as $row ) {
227 $batch->add( NS_USER
, $row->user_name
);
228 $batch->add( NS_USER_TALK
, $row->user_name
);
229 $userIds[] = $row->user_id
;
232 // Lookup groups for all the users
233 $dbr = wfGetDB( DB_SLAVE
);
234 $groupRes = $dbr->select(
236 array( 'ug_user', 'ug_group' ),
237 array( 'ug_user' => $userIds ),
242 foreach ( $groupRes as $row ) {
243 $cache[intval( $row->ug_user
)][] = $row->ug_group
;
244 $groups[$row->ug_group
] = true;
246 $this->userGroupCache
= $cache;
248 // Add page of groups to link batch
249 foreach ( $groups as $group => $unused ) {
250 $groupPage = User
::getGroupPage( $group );
252 $batch->addObj( $groupPage );
257 $this->mResult
->rewind();
263 function getPageHeader() {
264 list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() );
266 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
269 $out = Xml
::openElement(
271 array( 'method' => 'get', 'action' => wfScript(), 'id' => 'mw-listusers-form' )
273 Xml
::fieldset( $this->msg( 'listusers' )->text() ) .
274 Html
::hidden( 'title', $self );
276 # Username field (with autocompletion support)
277 $out .= Xml
::label( $this->msg( 'listusersfrom' )->text(), 'offset' ) . ' ' .
280 $this->requestedUser
,
283 'class' => 'mw-autocomplete-user',
286 'autofocus' => $this->requestedUser
=== ''
290 # Group drop-down list
291 $sel = new XmlSelect( 'group', 'group', $this->requestedGroup
);
292 $sel->addOption( $this->msg( 'group-all' )->text(), '' );
293 foreach ( $this->getAllGroups() as $group => $groupText ) {
294 $sel->addOption( $groupText, $group );
297 $out .= Xml
::label( $this->msg( 'group' )->text(), 'group' ) . ' ';
298 $out .= $sel->getHTML() . '<br />';
299 $out .= Xml
::checkLabel(
300 $this->msg( 'listusers-editsonly' )->text(),
306 $out .= Xml
::checkLabel(
307 $this->msg( 'listusers-creationsort' )->text(),
313 $out .= Xml
::checkLabel(
314 $this->msg( 'listusers-desc' )->text(),
317 $this->mDefaultDirection
321 Hooks
::run( 'SpecialListusersHeaderForm', array( $this, &$out ) );
323 # Submit button and form bottom
324 $out .= Html
::hidden( 'limit', $this->mLimit
);
325 $out .= Xml
::submitButton( $this->msg( 'listusers-submit' )->text() );
326 Hooks
::run( 'SpecialListusersHeader', array( $this, &$out ) );
327 $out .= Xml
::closeElement( 'fieldset' ) .
328 Xml
::closeElement( 'form' );
334 * Get a list of all explicit groups
337 function getAllGroups() {
339 foreach ( User
::getAllGroups() as $group ) {
340 $result[$group] = User
::getGroupName( $group );
348 * Preserve group and username offset parameters when paging
351 function getDefaultQuery() {
352 $query = parent
::getDefaultQuery();
353 if ( $this->requestedGroup
!= '' ) {
354 $query['group'] = $this->requestedGroup
;
356 if ( $this->requestedUser
!= '' ) {
357 $query['username'] = $this->requestedUser
;
359 Hooks
::run( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
365 * Get a list of groups the specified user belongs to
367 * @param int $uid User id
368 * @param array|null $cache
371 protected static function getGroups( $uid, $cache = null ) {
372 if ( $cache === null ) {
373 $user = User
::newFromId( $uid );
374 $effectiveGroups = $user->getEffectiveGroups();
376 $effectiveGroups = isset( $cache[$uid] ) ?
$cache[$uid] : array();
378 $groups = array_diff( $effectiveGroups, User
::getImplicitGroups() );
384 * Format a link to a group description page
386 * @param string $group Group name
387 * @param string $username Username
390 protected static function buildGroupLink( $group, $username ) {
391 return User
::makeGroupLinkHtml(
393 User
::getGroupMember( $group, $username )
399 * @ingroup SpecialPage
401 class SpecialListUsers
extends IncludableSpecialPage
{
405 public function __construct() {
406 parent
::__construct( 'Listusers' );
410 * Show the special page
412 * @param string $par (optional) A group to list users from
414 public function execute( $par ) {
416 $this->outputHeader();
418 $up = new UsersPager( $this->getContext(), $par, $this->including() );
420 # getBody() first to check, if empty
421 $usersbody = $up->getBody();
424 if ( !$this->including() ) {
425 $s = $up->getPageHeader();
429 $s .= $up->getNavigationBar();
430 $s .= Html
::rawElement( 'ul', array(), $usersbody );
431 $s .= $up->getNavigationBar();
433 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
436 $this->getOutput()->addHTML( $s );
440 * Return an array of subpages that this special page will accept.
442 * @return string[] subpages
444 public function getSubpagesForPrefixSearch() {
445 return User
::getAllGroups();
448 protected function getGroupName() {
454 * Redirect page: Special:ListAdmins --> Special:ListUsers/sysop.
456 * @ingroup SpecialPage
458 class SpecialListAdmins
extends SpecialRedirectToSpecial
{
459 function __construct() {
460 parent
::__construct( 'Listadmins', 'Listusers', 'sysop' );
465 * Redirect page: Special:ListBots --> Special:ListUsers/bot.
467 * @ingroup SpecialPage
469 class SpecialListBots
extends SpecialRedirectToSpecial
{
470 function __construct() {
471 parent
::__construct( 'Listbots', 'Listusers', 'bot' );