Merge "Request-local caching of DjVu dimensions"
[mediawiki.git] / includes / specials / SpecialListusers.php
blob7eb3757a3d3706681c8ec03f8561e94ea13b354a
1 <?php
2 /**
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
24 * @file
25 * @ingroup SpecialPage
28 /**
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 {
37 /**
38 * @var array A array with user ids as key and a array of groups as value
40 protected $userGroupCache;
42 /**
43 * @param IContextSource $context
44 * @param array $par (Default null)
45 * @param bool $including Whether this page is being transcluded in
46 * another page
48 function __construct( IContextSource $context = null, $par = null, $including = null ) {
49 if ( $context ) {
50 $this->setContext( $context );
53 $request = $this->getRequest();
54 $par = ( $par !== null ) ? $par : '';
55 $parms = explode( '/', $par );
56 $symsForAll = [ '*', 'user' ];
58 if ( $parms[0] != '' &&
59 ( in_array( $par, User::getAllGroups() ) || in_array( $par, $symsForAll ) )
60 ) {
61 $this->requestedGroup = $par;
62 $un = $request->getText( 'username' );
63 } elseif ( count( $parms ) == 2 ) {
64 $this->requestedGroup = $parms[0];
65 $un = $parms[1];
66 } else {
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 = '';
83 if ( $un != '' ) {
84 $username = Title::makeTitleSafe( NS_USER, $un );
86 if ( !is_null( $username ) ) {
87 $this->requestedUser = $username->getText();
91 parent::__construct();
94 /**
95 * @return string
97 function getIndexField() {
98 return $this->creationSort ? 'user_id' : 'user_name';
102 * @return array
104 function getQueryInfo() {
105 $dbr = wfGetDB( DB_SLAVE );
106 $conds = [];
108 // Don't show hidden names
109 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
110 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
113 $options = [];
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 ) );
123 } else {
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';
134 $query = [
135 'tables' => [ 'user', 'user_groups', 'ipblocks' ],
136 'fields' => [
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' => [
145 'user_groups' => [ 'LEFT JOIN', 'user_id=ug_user' ],
146 'ipblocks' => [
147 'LEFT JOIN', [
148 'user_id=ipb_user',
149 'ipb_auto' => 0
153 'conds' => $conds
156 Hooks::run( 'SpecialListusersQueryInfo', [ $this, &$query ] );
158 return $query;
162 * @param stdClass $row
163 * @return string
165 function formatRow( $row ) {
166 if ( $row->user_id == 0 ) { # Bug 16487
167 return '';
170 $userName = $row->user_name;
172 $ulinks = Linker::userLink( $row->user_id, $userName );
173 $ulinks .= Linker::userToolLinksRedContribs(
174 $row->user_id,
175 $userName,
176 (int)$row->edits
179 $lang = $this->getLanguage();
181 $groups = '';
182 $groups_list = self::getGroups( intval( $row->user_id ), $this->userGroupCache );
184 if ( !$this->including && count( $groups_list ) > 0 ) {
185 $list = [];
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>";
198 $edits = '';
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();
204 $created = '';
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', [ &$item, $row ] );
219 return Html::rawElement( 'li', [], "{$item}{$edits}{$created}{$blocked}" );
222 function doBatchLookups() {
223 $batch = new LinkBatch();
224 $userIds = [];
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(
235 'user_groups',
236 [ 'ug_user', 'ug_group' ],
237 [ 'ug_user' => $userIds ],
238 __METHOD__
240 $cache = [];
241 $groups = [];
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 );
251 if ( $groupPage ) {
252 $batch->addObj( $groupPage );
256 $batch->execute();
257 $this->mResult->rewind();
261 * @return string
263 function getPageHeader() {
264 list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() );
266 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
268 # Form tag
269 $out = Xml::openElement(
270 'form',
271 [ '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' ) . ' ' .
278 Html::input(
279 'username',
280 $this->requestedUser,
281 'text',
283 'class' => 'mw-autocomplete-user',
284 'id' => 'offset',
285 'size' => 20,
286 'autofocus' => $this->requestedUser === ''
288 ) . ' ';
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(),
301 'editsOnly',
302 'editsOnly',
303 $this->editsOnly
305 $out .= '&#160;';
306 $out .= Xml::checkLabel(
307 $this->msg( 'listusers-creationsort' )->text(),
308 'creationSort',
309 'creationSort',
310 $this->creationSort
312 $out .= '&#160;';
313 $out .= Xml::checkLabel(
314 $this->msg( 'listusers-desc' )->text(),
315 'desc',
316 'desc',
317 $this->mDefaultDirection
319 $out .= '<br />';
321 Hooks::run( 'SpecialListusersHeaderForm', [ $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', [ $this, &$out ] );
327 $out .= Xml::closeElement( 'fieldset' ) .
328 Xml::closeElement( 'form' );
330 return $out;
334 * Get a list of all explicit groups
335 * @return array
337 function getAllGroups() {
338 $result = [];
339 foreach ( User::getAllGroups() as $group ) {
340 $result[$group] = User::getGroupName( $group );
342 asort( $result );
344 return $result;
348 * Preserve group and username offset parameters when paging
349 * @return array
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', [ $this, &$query ] );
361 return $query;
365 * Get a list of groups the specified user belongs to
367 * @param int $uid User id
368 * @param array|null $cache
369 * @return array
371 protected static function getGroups( $uid, $cache = null ) {
372 if ( $cache === null ) {
373 $user = User::newFromId( $uid );
374 $effectiveGroups = $user->getEffectiveGroups();
375 } else {
376 $effectiveGroups = isset( $cache[$uid] ) ? $cache[$uid] : [];
378 $groups = array_diff( $effectiveGroups, User::getImplicitGroups() );
380 return $groups;
384 * Format a link to a group description page
386 * @param string $group Group name
387 * @param string $username Username
388 * @return string
390 protected static function buildGroupLink( $group, $username ) {
391 return User::makeGroupLinkHTML(
392 $group,
393 User::getGroupMember( $group, $username )
399 * @ingroup SpecialPage
401 class SpecialListUsers extends IncludableSpecialPage {
403 * Constructor
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 ) {
415 $this->setHeaders();
416 $this->outputHeader();
418 $up = new UsersPager( $this->getContext(), $par, $this->including() );
420 # getBody() first to check, if empty
421 $usersbody = $up->getBody();
423 $s = '';
424 if ( !$this->including() ) {
425 $s = $up->getPageHeader();
428 if ( $usersbody ) {
429 $s .= $up->getNavigationBar();
430 $s .= Html::rawElement( 'ul', [], $usersbody );
431 $s .= $up->getNavigationBar();
432 } else {
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() {
449 return 'users';
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' );