Add SpecialPage::getGroupName and use it
[lhc/web/wiklou.git] / includes / specials / SpecialListusers.php
1 <?php
2 /**
3 * Implements Special:Listusers
4 *
5 * Copyright © 2004 Brion Vibber, lcrocker, Tim Starling,
6 * Domas Mituzas, Antoine Musso, Jens Frank, Zhengzhu,
7 * 2006 Rob Church <robchur@gmail.com>
8 *
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.
13 *
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.
18 *
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
23 *
24 * @file
25 * @ingroup SpecialPage
26 */
27
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.
32 *
33 * @ingroup SpecialPage
34 */
35 class UsersPager extends AlphabeticPager {
36
37 /**
38 * @param $context IContextSource
39 * @param $par array (Default null)
40 * @param $including boolean Whether this page is being transcluded in
41 * another page
42 */
43 function __construct( IContextSource $context = null, $par = null, $including = null ) {
44 if ( $context ) {
45 $this->setContext( $context );
46 }
47
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];
57 $un = $parms[1];
58 } else {
59 $this->requestedGroup = $request->getVal( 'group' );
60 $un = ( $par != '' ) ? $par : $request->getText( 'username' );
61 }
62 if ( in_array( $this->requestedGroup, $symsForAll ) ) {
63 $this->requestedGroup = '';
64 }
65 $this->editsOnly = $request->getBool( 'editsOnly' );
66 $this->creationSort = $request->getBool( 'creationSort' );
67 $this->including = $including;
68
69 $this->requestedUser = '';
70 if ( $un != '' ) {
71 $username = Title::makeTitleSafe( NS_USER, $un );
72 if( ! is_null( $username ) ) {
73 $this->requestedUser = $username->getText();
74 }
75 }
76 parent::__construct();
77 }
78
79 /**
80 * @return string
81 */
82 function getIndexField() {
83 return $this->creationSort ? 'user_id' : 'user_name';
84 }
85
86 /**
87 * @return Array
88 */
89 function getQueryInfo() {
90 $dbr = wfGetDB( DB_SLAVE );
91 $conds = array();
92 // Don't show hidden names
93 if( !$this->getUser()->isAllowed( 'hideuser' ) ) {
94 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
95 }
96
97 $options = array();
98
99 if( $this->requestedGroup != '' ) {
100 $conds['ug_group'] = $this->requestedGroup;
101 } else {
102 //$options['USE INDEX'] = $this->creationSort ? 'PRIMARY' : 'user_name';
103 }
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 ) );
108 } else {
109 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser );
110 }
111 }
112 if( $this->editsOnly ) {
113 $conds[] = 'user_editcount > 0';
114 }
115
116 $options['GROUP BY'] = $this->creationSort ? 'user_id' : 'user_name';
117
118 $query = array(
119 'tables' => array( 'user', 'user_groups', 'ipblocks' ),
120 'fields' => array(
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
128 ),
129 'options' => $options,
130 'join_conds' => array(
131 'user_groups' => array( 'LEFT JOIN', 'user_id=ug_user' ),
132 'ipblocks' => array( 'LEFT JOIN', array(
133 'user_id=ipb_user',
134 'ipb_auto' => 0
135 )),
136 ),
137 'conds' => $conds
138 );
139
140 wfRunHooks( 'SpecialListusersQueryInfo', array( $this, &$query ) );
141 return $query;
142 }
143
144 /**
145 * @param $row Object
146 * @return String
147 */
148 function formatRow( $row ) {
149 if ( $row->user_id == 0 ) { #Bug 16487
150 return '';
151 }
152
153 $userName = $row->user_name;
154
155 $ulinks = Linker::userLink( $row->user_id, $userName );
156 $ulinks .= Linker::userToolLinksRedContribs( $row->user_id, $userName, intval( $row->edits ) );
157
158 $lang = $this->getLanguage();
159
160 $groups = '';
161 $groups_list = self::getGroups( $row->user_id );
162 if( !$this->including && count( $groups_list ) > 0 ) {
163 $list = array();
164 foreach( $groups_list as $group )
165 $list[] = self::buildGroupLink( $group, $userName );
166 $groups = $lang->commaList( $list );
167 }
168
169 $item = $lang->specialList( $ulinks, $groups );
170 if( $row->ipb_deleted ) {
171 $item = "<span class=\"deleted\">$item</span>";
172 }
173
174 $edits = '';
175 global $wgEdititis;
176 if ( !$this->including && $wgEdititis ) {
177 $edits = ' [' . $this->msg( 'usereditcount' )->numParams( $row->edits )->escaped() . ']';
178 }
179
180 $created = '';
181 # Some rows may be NULL
182 if( !$this->including && $row->creation ) {
183 $user = $this->getUser();
184 $d = $lang->userDate( $row->creation, $user );
185 $t = $lang->userTime( $row->creation, $user );
186 $created = $this->msg( 'usercreated', $d, $t, $row->user_name )->escaped();
187 $created = ' ' . $this->msg( 'parentheses' )->rawParams( $created )->escaped();
188 }
189 $blocked = !is_null( $row->ipb_deleted ) ? ' ' . $this->msg( 'listusers-blocked', $userName )->escaped() : '';
190
191 wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) );
192 return Html::rawElement( 'li', array(), "{$item}{$edits}{$created}{$blocked}" );
193 }
194
195 function doBatchLookups() {
196 $batch = new LinkBatch();
197 # Give some pointers to make user links
198 foreach ( $this->mResult as $row ) {
199 $batch->add( NS_USER, $row->user_name );
200 $batch->add( NS_USER_TALK, $row->user_name );
201 }
202 $batch->execute();
203 $this->mResult->rewind();
204 }
205
206 /**
207 * @return string
208 */
209 function getPageHeader( ) {
210 global $wgScript;
211
212 list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() );
213
214 # Form tag
215 $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listusers-form' ) ) .
216 Xml::fieldset( $this->msg( 'listusers' )->text() ) .
217 Html::hidden( 'title', $self );
218
219 # Username field
220 $out .= Xml::label( $this->msg( 'listusersfrom' )->text(), 'offset' ) . ' ' .
221 Html::input(
222 'username',
223 $this->requestedUser,
224 'text',
225 array(
226 'id' => 'offset',
227 'size' => 20,
228 'autofocus' => $this->requestedUser === ''
229 )
230 ) . ' ';
231
232 # Group drop-down list
233 $out .= Xml::label( $this->msg( 'group' )->text(), 'group' ) . ' ' .
234 Xml::openElement( 'select', array( 'name' => 'group', 'id' => 'group' ) ) .
235 Xml::option( $this->msg( 'group-all' )->text(), '' );
236 foreach( $this->getAllGroups() as $group => $groupText )
237 $out .= Xml::option( $groupText, $group, $group == $this->requestedGroup );
238 $out .= Xml::closeElement( 'select' ) . '<br />';
239 $out .= Xml::checkLabel( $this->msg( 'listusers-editsonly' )->text(), 'editsOnly', 'editsOnly', $this->editsOnly );
240 $out .= '&#160;';
241 $out .= Xml::checkLabel( $this->msg( 'listusers-creationsort' )->text(), 'creationSort', 'creationSort', $this->creationSort );
242 $out .= '<br />';
243
244 wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
245
246 # Submit button and form bottom
247 $out .= Html::hidden( 'limit', $this->mLimit );
248 $out .= Xml::submitButton( $this->msg( 'allpagessubmit' )->text() );
249 wfRunHooks( 'SpecialListusersHeader', array( $this, &$out ) );
250 $out .= Xml::closeElement( 'fieldset' ) .
251 Xml::closeElement( 'form' );
252
253 return $out;
254 }
255
256 /**
257 * Get a list of all explicit groups
258 * @return array
259 */
260 function getAllGroups() {
261 $result = array();
262 foreach( User::getAllGroups() as $group ) {
263 $result[$group] = User::getGroupName( $group );
264 }
265 asort( $result );
266 return $result;
267 }
268
269 /**
270 * Preserve group and username offset parameters when paging
271 * @return array
272 */
273 function getDefaultQuery() {
274 $query = parent::getDefaultQuery();
275 if( $this->requestedGroup != '' ) {
276 $query['group'] = $this->requestedGroup;
277 }
278 if( $this->requestedUser != '' ) {
279 $query['username'] = $this->requestedUser;
280 }
281 wfRunHooks( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
282 return $query;
283 }
284
285 /**
286 * Get a list of groups the specified user belongs to
287 *
288 * @param $uid Integer: user id
289 * @return array
290 */
291 protected static function getGroups( $uid ) {
292 $user = User::newFromId( $uid );
293 $groups = array_diff( $user->getEffectiveGroups(), User::getImplicitGroups() );
294 return $groups;
295 }
296
297 /**
298 * Format a link to a group description page
299 *
300 * @param $group String: group name
301 * @param $username String Username
302 * @return string
303 */
304 protected static function buildGroupLink( $group, $username ) {
305 return User::makeGroupLinkHtml( $group, htmlspecialchars( User::getGroupMember( $group, $username ) ) );
306 }
307 }
308
309 /**
310 * @ingroup SpecialPage
311 */
312 class SpecialListUsers extends IncludableSpecialPage {
313
314 /**
315 * Constructor
316 */
317 public function __construct() {
318 parent::__construct( 'Listusers' );
319 }
320
321 /**
322 * Show the special page
323 *
324 * @param $par string (optional) A group to list users from
325 */
326 public function execute( $par ) {
327 $this->setHeaders();
328 $this->outputHeader();
329
330 $up = new UsersPager( $this->getContext(), $par, $this->including() );
331
332 # getBody() first to check, if empty
333 $usersbody = $up->getBody();
334
335 $s = '';
336 if ( !$this->including() ) {
337 $s = $up->getPageHeader();
338 }
339
340 if( $usersbody ) {
341 $s .= $up->getNavigationBar();
342 $s .= Html::rawElement( 'ul', array(), $usersbody );
343 $s .= $up->getNavigationBar();
344 } else {
345 $s .= $this->msg( 'listusers-noresult' )->parseAsBlock();
346 }
347
348 $this->getOutput()->addHTML( $s );
349 }
350
351 protected function getGroupName() {
352 return 'users';
353 }
354 }