Revert r41352-41355, r41362-41363: unauthorized schema change breaks parser tests
[lhc/web/wiklou.git] / includes / specials / SpecialListusers.php
1 <?php
2
3 # Copyright (C) 2004 Brion Vibber, lcrocker, Tim Starling,
4 # Domas Mituzas, Ashar Voultoiz, Jens Frank, Zhengzhu.
5 #
6 # © 2006 Rob Church <robchur@gmail.com>
7 #
8 # http://www.mediawiki.org/
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with this program; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 # http://www.gnu.org/copyleft/gpl.html
24 /**
25 * @file
26 * @ingroup SpecialPage
27 */
28
29 /**
30 * This class is used to get a list of user. The ones with specials
31 * rights (sysop, bureaucrat, developer) will have them displayed
32 * next to their names.
33 *
34 * @ingroup SpecialPage
35 */
36 class UsersPager extends AlphabeticPager {
37
38 function __construct( $par=null ) {
39 global $wgRequest;
40 $parms = explode( '/', ($par = ( $par !== null ) ? $par : '' ) );
41 $symsForAll = array( '*', 'user' );
42 if ( $parms[0] != '' && ( in_array( $par, User::getAllGroups() ) || in_array( $par, $symsForAll ) ) ) {
43 $this->requestedGroup = $par;
44 $un = $wgRequest->getText( 'username' );
45 } else if ( count( $parms ) == 2 ) {
46 $this->requestedGroup = $parms[0];
47 $un = $parms[1];
48 } else {
49 $this->requestedGroup = $wgRequest->getVal( 'group' );
50 $un = ( $par != '' ) ? $par : $wgRequest->getText( 'username' );
51 }
52 if ( in_array( $this->requestedGroup, $symsForAll ) ) {
53 $this->requestedGroup = '';
54 }
55 $this->editsOnly = $wgRequest->getBool( 'editsOnly' );
56
57 $this->requestedUser = '';
58 if ( $un != '' ) {
59 $username = Title::makeTitleSafe( NS_USER, $un );
60 if( ! is_null( $username ) ) {
61 $this->requestedUser = $username->getText();
62 }
63 }
64 parent::__construct();
65 }
66
67
68 function getIndexField() {
69 return 'user_name';
70 }
71
72 function getQueryInfo() {
73 $dbr = wfGetDB( DB_SLAVE );
74 $conds = array();
75 // Don't show hidden names
76 $conds[] = 'ipb_deleted IS NULL OR ipb_deleted = 0';
77 if ($this->requestedGroup != "") {
78 $conds['ug_group'] = $this->requestedGroup;
79 $useIndex = '';
80 } else {
81 $useIndex = $dbr->useIndexClause('user_name');
82 }
83 if ($this->requestedUser != "") {
84 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser );
85 }
86 if( $this->editsOnly ) {
87 $conds[] = 'user_editcount > 0';
88 }
89
90 list ($user,$user_groups,$ipblocks) = $dbr->tableNamesN('user','user_groups','ipblocks');
91
92 $query = array(
93 'tables' => " $user $useIndex LEFT JOIN $user_groups ON user_id=ug_user
94 LEFT JOIN $ipblocks ON user_id=ipb_user AND ipb_auto=0 ",
95 'fields' => array('user_name',
96 'MAX(user_id) AS user_id',
97 'MAX(user_editcount) AS edits',
98 'COUNT(ug_group) AS numgroups',
99 'MAX(ug_group) AS singlegroup'),
100 'options' => array('GROUP BY' => 'user_name'),
101 'conds' => $conds
102 );
103
104 wfRunHooks( 'SpecialListusersQueryInfo', array( $this, &$query ) );
105 return $query;
106 }
107
108 function formatRow( $row ) {
109 global $wgLang;
110
111 $userPage = Title::makeTitle( NS_USER, $row->user_name );
112 $name = $this->getSkin()->makeLinkObj( $userPage, htmlspecialchars( $userPage->getText() ) );
113
114 if( $row->numgroups > 1 || ( $this->requestedGroup && $row->numgroups == 1 ) ) {
115 $list = array();
116 foreach( self::getGroups( $row->user_id ) as $group )
117 $list[] = self::buildGroupLink( $group );
118 $groups = implode( ', ', $list );
119 } elseif( $row->numgroups == 1 ) {
120 $groups = self::buildGroupLink( $row->singlegroup );
121 } else {
122 $groups = '';
123 }
124
125 $item = wfSpecialList( $name, $groups );
126 $editCount = $wgLang->formatNum( $row->edits );
127 $edits = wfMsgExt( 'usereditcount', 'parsemag', $editCount );
128 wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) );
129 return "<li>{$item} [$edits]</li>";
130 }
131
132 function getBody() {
133 if( !$this->mQueryDone ) {
134 $this->doQuery();
135 }
136 $this->mResult->rewind();
137 $batch = new LinkBatch;
138 while ( $row = $this->mResult->fetchObject() ) {
139 $batch->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
140 }
141 $batch->execute();
142 $this->mResult->rewind();
143 return parent::getBody();
144 }
145
146 function getPageHeader( ) {
147 global $wgScript, $wgRequest;
148 $self = $this->getTitle();
149
150 # Form tag
151 $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) .
152 '<fieldset>' .
153 Xml::element( 'legend', array(), wfMsg( 'listusers' ) );
154 $out .= Xml::hidden( 'title', $self->getPrefixedDbKey() );
155
156 # Username field
157 $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .
158 Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' ';
159
160 # Group drop-down list
161 $out .= Xml::label( wfMsg( 'group' ), 'group' ) . ' ' .
162 Xml::openElement('select', array( 'name' => 'group', 'id' => 'group' ) ) .
163 Xml::option( wfMsg( 'group-all' ), '' );
164 foreach( $this->getAllGroups() as $group => $groupText )
165 $out .= Xml::option( $groupText, $group, $group == $this->requestedGroup );
166 $out .= Xml::closeElement( 'select' ) . '<br/>';
167 $out .= Xml::checkLabel( wfMsg('listusers-editsonly'), 'editsOnly', 'editsOnly', $this->editsOnly );
168 $out .= '&nbsp;';
169
170 wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
171
172 # Submit button and form bottom
173 if( $this->mLimit )
174 $out .= Xml::hidden( 'limit', $this->mLimit );
175 $out .= Xml::submitButton( wfMsg( 'allpagessubmit' ) );
176 wfRunHooks( 'SpecialListusersHeader', array( $this, &$out ) );
177 $out .= '</fieldset>' .
178 Xml::closeElement( 'form' );
179
180 return $out;
181 }
182
183 function getAllGroups() {
184 $result = array();
185 foreach( User::getAllGroups() as $group ) {
186 $result[$group] = User::getGroupName( $group );
187 }
188 return $result;
189 }
190
191 /**
192 * Preserve group and username offset parameters when paging
193 * @return array
194 */
195 function getDefaultQuery() {
196 $query = parent::getDefaultQuery();
197 if( $this->requestedGroup != '' )
198 $query['group'] = $this->requestedGroup;
199 if( $this->requestedUser != '' )
200 $query['username'] = $this->requestedUser;
201 wfRunHooks( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
202 return $query;
203 }
204
205 /**
206 * Get a list of groups the specified user belongs to
207 *
208 * @param int $uid
209 * @return array
210 */
211 protected static function getGroups( $uid ) {
212 $dbr = wfGetDB( DB_SLAVE );
213 $groups = array();
214 $res = $dbr->select( 'user_groups', 'ug_group', array( 'ug_user' => $uid ), __METHOD__ );
215 if( $res && $dbr->numRows( $res ) > 0 ) {
216 while( $row = $dbr->fetchObject( $res ) )
217 $groups[] = $row->ug_group;
218 $dbr->freeResult( $res );
219 }
220 return $groups;
221 }
222
223 /**
224 * Format a link to a group description page
225 *
226 * @param string $group
227 * @return string
228 */
229 protected static function buildGroupLink( $group ) {
230 static $cache = array();
231 if( !isset( $cache[$group] ) )
232 $cache[$group] = User::makeGroupLinkHtml( $group, User::getGroupMember( $group ) );
233 return $cache[$group];
234 }
235 }
236
237 /**
238 * constructor
239 * $par string (optional) A group to list users from
240 */
241 function wfSpecialListusers( $par = null ) {
242 global $wgRequest, $wgOut;
243
244 $up = new UsersPager($par);
245
246 # getBody() first to check, if empty
247 $usersbody = $up->getBody();
248 $s = XML::openElement( 'div', array('class' => 'mw-spcontent') );
249 $s .= $up->getPageHeader();
250 if( $usersbody ) {
251 $s .= $up->getNavigationBar();
252 $s .= '<ul>' . $usersbody . '</ul>';
253 $s .= $up->getNavigationBar() ;
254 } else {
255 $s .= '<p>' . wfMsgHTML('listusers-noresult') . '</p>';
256 };
257 $s .= XML::closeElement( 'div' );
258 $wgOut->addHTML( $s );
259 }