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() );
267 $out = Xml
::openElement(
269 array( 'method' => 'get', 'action' => wfScript(), 'id' => 'mw-listusers-form' )
271 Xml
::fieldset( $this->msg( 'listusers' )->text() ) .
272 Html
::hidden( 'title', $self );
275 $out .= Xml
::label( $this->msg( 'listusersfrom' )->text(), 'offset' ) . ' ' .
278 $this->requestedUser
,
283 'autofocus' => $this->requestedUser
=== ''
287 # Group drop-down list
288 $out .= Xml
::label( $this->msg( 'group' )->text(), 'group' ) . ' ' .
289 Xml
::openElement( 'select', array( 'name' => 'group', 'id' => 'group' ) ) .
290 Xml
::option( $this->msg( 'group-all' )->text(), '' );
291 foreach ( $this->getAllGroups() as $group => $groupText ) {
292 $out .= Xml
::option( $groupText, $group, $group == $this->requestedGroup
);
294 $out .= Xml
::closeElement( 'select' ) . '<br />';
295 $out .= Xml
::checkLabel(
296 $this->msg( 'listusers-editsonly' )->text(),
302 $out .= Xml
::checkLabel(
303 $this->msg( 'listusers-creationsort' )->text(),
309 $out .= Xml
::checkLabel(
310 $this->msg( 'listusers-desc' )->text(),
313 $this->mDefaultDirection
317 Hooks
::run( 'SpecialListusersHeaderForm', array( $this, &$out ) );
319 # Submit button and form bottom
320 $out .= Html
::hidden( 'limit', $this->mLimit
);
321 $out .= Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() );
322 Hooks
::run( 'SpecialListusersHeader', array( $this, &$out ) );
323 $out .= Xml
::closeElement( 'fieldset' ) .
324 Xml
::closeElement( 'form' );
330 * Get a list of all explicit groups
333 function getAllGroups() {
335 foreach ( User
::getAllGroups() as $group ) {
336 $result[$group] = User
::getGroupName( $group );
344 * Preserve group and username offset parameters when paging
347 function getDefaultQuery() {
348 $query = parent
::getDefaultQuery();
349 if ( $this->requestedGroup
!= '' ) {
350 $query['group'] = $this->requestedGroup
;
352 if ( $this->requestedUser
!= '' ) {
353 $query['username'] = $this->requestedUser
;
355 Hooks
::run( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
361 * Get a list of groups the specified user belongs to
363 * @param int $uid User id
364 * @param array|null $cache
367 protected static function getGroups( $uid, $cache = null ) {
368 if ( $cache === null ) {
369 $user = User
::newFromId( $uid );
370 $effectiveGroups = $user->getEffectiveGroups();
372 $effectiveGroups = isset( $cache[$uid] ) ?
$cache[$uid] : array();
374 $groups = array_diff( $effectiveGroups, User
::getImplicitGroups() );
380 * Format a link to a group description page
382 * @param string $group Group name
383 * @param string $username Username
386 protected static function buildGroupLink( $group, $username ) {
387 return User
::makeGroupLinkHtml(
389 User
::getGroupMember( $group, $username )
395 * @ingroup SpecialPage
397 class SpecialListUsers
extends IncludableSpecialPage
{
401 public function __construct() {
402 parent
::__construct( 'Listusers' );
406 * Show the special page
408 * @param string $par (optional) A group to list users from
410 public function execute( $par ) {
412 $this->outputHeader();
414 $up = new UsersPager( $this->getContext(), $par, $this->including() );
416 # getBody() first to check, if empty
417 $usersbody = $up->getBody();
420 if ( !$this->including() ) {
421 $s = $up->getPageHeader();
425 $s .= $up->getNavigationBar();
426 $s .= Html
::rawElement( 'ul', array(), $usersbody );
427 $s .= $up->getNavigationBar();
429 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
432 $this->getOutput()->addHTML( $s );
436 * Return an array of subpages that this special page will accept.
438 * @return string[] subpages
440 public function getSubpagesForPrefixSearch() {
441 return User
::getAllGroups();
444 protected function getGroupName() {
450 * Redirect page: Special:ListAdmins --> Special:ListUsers/sysop.
452 * @ingroup SpecialPage
454 class SpecialListAdmins
extends SpecialRedirectToSpecial
{
455 function __construct() {
456 parent
::__construct( 'Listadmins', 'Listusers', 'sysop' );
461 * Redirect page: Special:ListBots --> Special:ListUsers/bot.
463 * @ingroup SpecialPage
465 class SpecialListBots
extends SpecialRedirectToSpecial
{
466 function __construct() {
467 parent
::__construct( 'Listbots', 'Listusers', 'bot' );