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 $context IContextSource
39 * @param array $par (Default null)
40 * @param $including boolean 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' );
52 if ( $parms[0] != '' && ( in_array( $par, User
::getAllGroups() ) ||
in_array( $par, $symsForAll ) ) ) {
53 $this->requestedGroup
= $par;
54 $un = $request->getText( 'username' );
55 } elseif ( count( $parms ) == 2 ) {
56 $this->requestedGroup
= $parms[0];
59 $this->requestedGroup
= $request->getVal( 'group' );
60 $un = ( $par != '' ) ?
$par : $request->getText( 'username' );
62 if ( in_array( $this->requestedGroup
, $symsForAll ) ) {
63 $this->requestedGroup
= '';
65 $this->editsOnly
= $request->getBool( 'editsOnly' );
66 $this->creationSort
= $request->getBool( 'creationSort' );
67 $this->including
= $including;
69 $this->requestedUser
= '';
71 $username = Title
::makeTitleSafe( NS_USER
, $un );
72 if ( ! is_null( $username ) ) {
73 $this->requestedUser
= $username->getText();
76 parent
::__construct();
82 function getIndexField() {
83 return $this->creationSort ?
'user_id' : 'user_name';
89 function getQueryInfo() {
90 $dbr = wfGetDB( DB_SLAVE
);
92 // Don't show hidden names
93 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
94 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
99 if ( $this->requestedGroup
!= '' ) {
100 $conds['ug_group'] = $this->requestedGroup
;
102 //$options['USE INDEX'] = $this->creationSort ? 'PRIMARY' : 'user_name';
104 if ( $this->requestedUser
!= '' ) {
105 # Sorted either by account creation or name
106 if ( $this->creationSort
) {
107 $conds[] = 'user_id >= ' . intval( User
::idFromName( $this->requestedUser
) );
109 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser
);
112 if ( $this->editsOnly
) {
113 $conds[] = 'user_editcount > 0';
116 $options['GROUP BY'] = $this->creationSort ?
'user_id' : 'user_name';
119 'tables' => array( 'user', 'user_groups', 'ipblocks' ),
121 'user_name' => $this->creationSort ?
'MAX(user_name)' : 'user_name',
122 'user_id' => $this->creationSort ?
'user_id' : 'MAX(user_id)',
123 'edits' => 'MAX(user_editcount)',
124 'numgroups' => 'COUNT(ug_group)',
125 'singlegroup' => 'MAX(ug_group)', // the usergroup if there is only one
126 'creation' => 'MIN(user_registration)',
127 'ipb_deleted' => 'MAX(ipb_deleted)' // block/hide status
129 'options' => $options,
130 'join_conds' => array(
131 'user_groups' => array( 'LEFT JOIN', 'user_id=ug_user' ),
132 'ipblocks' => array( 'LEFT JOIN', array(
140 wfRunHooks( 'SpecialListusersQueryInfo', array( $this, &$query ) );
148 function formatRow( $row ) {
149 if ( $row->user_id
== 0 ) { #Bug 16487
153 $userName = $row->user_name
;
155 $ulinks = Linker
::userLink( $row->user_id
, $userName );
156 $ulinks .= Linker
::userToolLinksRedContribs( $row->user_id
, $userName, intval( $row->edits
) );
158 $lang = $this->getLanguage();
161 $groups_list = self
::getGroups( $row->user_id
);
162 if ( !$this->including
&& count( $groups_list ) > 0 ) {
164 foreach ( $groups_list as $group ) {
165 $list[] = self
::buildGroupLink( $group, $userName );
167 $groups = $lang->commaList( $list );
170 $item = $lang->specialList( $ulinks, $groups );
171 if ( $row->ipb_deleted
) {
172 $item = "<span class=\"deleted\">$item</span>";
177 if ( !$this->including
&& $wgEdititis ) {
178 $edits = ' [' . $this->msg( 'usereditcount' )->numParams( $row->edits
)->escaped() . ']';
182 # Some rows may be NULL
183 if ( !$this->including
&& $row->creation
) {
184 $user = $this->getUser();
185 $d = $lang->userDate( $row->creation
, $user );
186 $t = $lang->userTime( $row->creation
, $user );
187 $created = $this->msg( 'usercreated', $d, $t, $row->user_name
)->escaped();
188 $created = ' ' . $this->msg( 'parentheses' )->rawParams( $created )->escaped();
190 $blocked = !is_null( $row->ipb_deleted
) ?
' ' . $this->msg( 'listusers-blocked', $userName )->escaped() : '';
192 wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) );
193 return Html
::rawElement( 'li', array(), "{$item}{$edits}{$created}{$blocked}" );
196 function doBatchLookups() {
197 $batch = new LinkBatch();
198 # Give some pointers to make user links
199 foreach ( $this->mResult
as $row ) {
200 $batch->add( NS_USER
, $row->user_name
);
201 $batch->add( NS_USER_TALK
, $row->user_name
);
204 $this->mResult
->rewind();
210 function getPageHeader() {
213 list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() );
216 $out = Xml
::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listusers-form' ) ) .
217 Xml
::fieldset( $this->msg( 'listusers' )->text() ) .
218 Html
::hidden( 'title', $self );
221 $out .= Xml
::label( $this->msg( 'listusersfrom' )->text(), 'offset' ) . ' ' .
224 $this->requestedUser
,
229 'autofocus' => $this->requestedUser
=== ''
233 # Group drop-down list
234 $out .= Xml
::label( $this->msg( 'group' )->text(), 'group' ) . ' ' .
235 Xml
::openElement( 'select', array( 'name' => 'group', 'id' => 'group' ) ) .
236 Xml
::option( $this->msg( 'group-all' )->text(), '' );
237 foreach ( $this->getAllGroups() as $group => $groupText ) {
238 $out .= Xml
::option( $groupText, $group, $group == $this->requestedGroup
);
240 $out .= Xml
::closeElement( 'select' ) . '<br />';
241 $out .= Xml
::checkLabel( $this->msg( 'listusers-editsonly' )->text(), 'editsOnly', 'editsOnly', $this->editsOnly
);
243 $out .= Xml
::checkLabel( $this->msg( 'listusers-creationsort' )->text(), 'creationSort', 'creationSort', $this->creationSort
);
246 wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
248 # Submit button and form bottom
249 $out .= Html
::hidden( 'limit', $this->mLimit
);
250 $out .= Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() );
251 wfRunHooks( 'SpecialListusersHeader', array( $this, &$out ) );
252 $out .= Xml
::closeElement( 'fieldset' ) .
253 Xml
::closeElement( 'form' );
259 * Get a list of all explicit groups
262 function getAllGroups() {
264 foreach ( User
::getAllGroups() as $group ) {
265 $result[$group] = User
::getGroupName( $group );
272 * Preserve group and username offset parameters when paging
275 function getDefaultQuery() {
276 $query = parent
::getDefaultQuery();
277 if ( $this->requestedGroup
!= '' ) {
278 $query['group'] = $this->requestedGroup
;
280 if ( $this->requestedUser
!= '' ) {
281 $query['username'] = $this->requestedUser
;
283 wfRunHooks( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
288 * Get a list of groups the specified user belongs to
290 * @param $uid Integer: user id
293 protected static function getGroups( $uid ) {
294 $user = User
::newFromId( $uid );
295 $groups = array_diff( $user->getEffectiveGroups(), User
::getImplicitGroups() );
300 * Format a link to a group description page
302 * @param string $group group name
303 * @param string $username Username
306 protected static function buildGroupLink( $group, $username ) {
307 return User
::makeGroupLinkHtml( $group, htmlspecialchars( User
::getGroupMember( $group, $username ) ) );
312 * @ingroup SpecialPage
314 class SpecialListUsers
extends IncludableSpecialPage
{
319 public function __construct() {
320 parent
::__construct( 'Listusers' );
324 * Show the special page
326 * @param string $par (optional) A group to list users from
328 public function execute( $par ) {
330 $this->outputHeader();
332 $up = new UsersPager( $this->getContext(), $par, $this->including() );
334 # getBody() first to check, if empty
335 $usersbody = $up->getBody();
338 if ( !$this->including() ) {
339 $s = $up->getPageHeader();
343 $s .= $up->getNavigationBar();
344 $s .= Html
::rawElement( 'ul', array(), $usersbody );
345 $s .= $up->getNavigationBar();
347 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
350 $this->getOutput()->addHTML( $s );
353 protected function getGroupName() {