]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - includes/specials/SpecialListusers.php
MediaWiki 1.16.1-scripts
[autoinstallsdev/mediawiki.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                 $this->creationSort = $wgRequest->getBool( 'creationSort' );
57
58                 $this->requestedUser = '';
59                 if ( $un != '' ) {
60                         $username = Title::makeTitleSafe( NS_USER, $un );
61                         if( ! is_null( $username ) ) {
62                                 $this->requestedUser = $username->getText();
63                         }
64                 }
65                 parent::__construct();
66         }
67
68
69         function getIndexField() {
70                 return $this->creationSort ? 'user_id' : 'user_name';
71         }
72
73         function getQueryInfo() {
74                 global $wgUser;
75                 $dbr = wfGetDB( DB_SLAVE );
76                 $conds = array();
77                 // Don't show hidden names
78                 if( !$wgUser->isAllowed('hideuser') )
79                         $conds[] = 'ipb_deleted IS NULL';
80                 if( $this->requestedGroup != '' ) {
81                         $conds['ug_group'] = $this->requestedGroup;
82                         $useIndex = '';
83                 } else {
84                         $useIndex = $dbr->useIndexClause( $this->creationSort ? 'PRIMARY' : 'user_name');
85                 }
86                 if( $this->requestedUser != '' ) {
87                         # Sorted either by account creation or name
88                         if( $this->creationSort ) {
89                                 $conds[] = 'user_id >= ' . intval( User::idFromName( $this->requestedUser ) );
90                         } else {
91                                 $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser );
92                         }
93                 }
94                 if( $this->editsOnly ) {
95                         $conds[] = 'user_editcount > 0';
96                 }
97
98                 list ($user,$user_groups,$ipblocks) = $dbr->tableNamesN('user','user_groups','ipblocks');
99
100                 $query = array(
101                         'tables' => " $user $useIndex LEFT JOIN $user_groups ON user_id=ug_user
102                                 LEFT JOIN $ipblocks ON user_id=ipb_user AND ipb_deleted=1 AND ipb_auto=0 ",
103                         'fields' => array(
104                                 $this->creationSort ? 'MAX(user_name) AS user_name' : 'user_name',
105                                 $this->creationSort ? 'user_id' : 'MAX(user_id) AS user_id',
106                                 'MAX(user_editcount) AS edits',
107                                 'COUNT(ug_group) AS numgroups',
108                                 'MAX(ug_group) AS singlegroup', // the usergroup if there is only one
109                                 'MIN(user_registration) AS creation',
110                                 'MAX(ipb_deleted) AS ipb_deleted' // block/hide status
111                         ),
112                         'options' => array('GROUP BY' => $this->creationSort ? 'user_id' : 'user_name'),
113                         'conds' => $conds
114                 );
115
116                 wfRunHooks( 'SpecialListusersQueryInfo', array( $this, &$query ) );
117                 return $query;
118         }
119
120         function formatRow( $row ) {
121                 global $wgLang;
122
123                 $userPage = Title::makeTitle( NS_USER, $row->user_name );
124                 $name = $this->getSkin()->link( $userPage, htmlspecialchars( $userPage->getText() ) );
125
126                 if( $row->numgroups > 1 || ( $this->requestedGroup && $row->numgroups == 1 ) ) {
127                         $list = array();
128                         foreach( self::getGroups( $row->user_id ) as $group )
129                                 $list[] = self::buildGroupLink( $group );
130                         $groups = $wgLang->commaList( $list );
131                 } elseif( $row->numgroups == 1 ) {
132                         $groups = self::buildGroupLink( $row->singlegroup );
133                 } else {
134                         $groups = '';
135                 }
136
137                 $item = wfSpecialList( $name, $groups );
138                 if( $row->ipb_deleted ) {
139                         $item = "<span class=\"deleted\">$item</span>";
140                 }
141
142                 global $wgEdititis;
143                 if ( $wgEdititis ) {
144                         $editCount = $wgLang->formatNum( $row->edits );
145                         $edits = ' [' . wfMsgExt( 'usereditcount', array( 'parsemag', 'escape' ), $editCount ) . ']';
146                 } else {
147                         $edits = '';
148                 }
149
150                 $created = '';
151                 # Some rows may be NULL
152                 if( $row->creation ) {
153                         $d = $wgLang->date( wfTimestamp( TS_MW, $row->creation ), true );
154                         $t = $wgLang->time( wfTimestamp( TS_MW, $row->creation ), true );
155                         $created = ' (' . wfMsg( 'usercreated', $d, $t ) . ')';
156                         $created = htmlspecialchars( $created );
157                 }
158
159                 wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) );
160                 return "<li>{$item}{$edits}{$created}</li>";
161         }
162
163         function getBody() {
164                 if( !$this->mQueryDone ) {
165                         $this->doQuery();
166                 }
167                 $this->mResult->rewind();
168                 $batch = new LinkBatch;
169                 while ( $row = $this->mResult->fetchObject() ) {
170                         $batch->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
171                 }
172                 $batch->execute();
173                 $this->mResult->rewind();
174                 return parent::getBody();
175         }
176
177         function getPageHeader( ) {
178                 global $wgScript, $wgRequest;
179                 $self = $this->getTitle();
180
181                 # Form tag
182                 $out  = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listusers-form' ) ) .
183                         Xml::fieldset( wfMsg( 'listusers' ) ) .
184                         Xml::hidden( 'title', $self->getPrefixedDbKey() );
185
186                 # Username field
187                 $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .
188                         Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' ';
189
190                 # Group drop-down list
191                 $out .= Xml::label( wfMsg( 'group' ), 'group' ) . ' ' .
192                         Xml::openElement('select',  array( 'name' => 'group', 'id' => 'group' ) ) .
193                         Xml::option( wfMsg( 'group-all' ), '' );
194                 foreach( $this->getAllGroups() as $group => $groupText )
195                         $out .= Xml::option( $groupText, $group, $group == $this->requestedGroup );
196                 $out .= Xml::closeElement( 'select' ) . '<br />';
197                 $out .= Xml::checkLabel( wfMsg('listusers-editsonly'), 'editsOnly', 'editsOnly', $this->editsOnly );
198                 $out .= '&nbsp;';
199                 $out .= Xml::checkLabel( wfMsg('listusers-creationsort'), 'creationSort', 'creationSort', $this->creationSort );
200                 $out .= '<br />';
201
202                 wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
203
204                 # Submit button and form bottom
205                 $out .= Xml::hidden( 'limit', $this->mLimit );
206                 $out .= Xml::submitButton( wfMsg( 'allpagessubmit' ) );
207                 wfRunHooks( 'SpecialListusersHeader', array( $this, &$out ) );
208                 $out .= Xml::closeElement( 'fieldset' ) .
209                         Xml::closeElement( 'form' );
210
211                 return $out;
212         }
213
214         /**
215          * Get a list of all explicit groups
216          * @return array
217          */
218         function getAllGroups() {
219                 $result = array();
220                 foreach( User::getAllGroups() as $group ) {
221                         $result[$group] = User::getGroupName( $group );
222                 }
223                 asort( $result );
224                 return $result;
225         }
226
227         /**
228          * Preserve group and username offset parameters when paging
229          * @return array
230          */
231         function getDefaultQuery() {
232                 $query = parent::getDefaultQuery();
233                 if( $this->requestedGroup != '' )
234                         $query['group'] = $this->requestedGroup;
235                 if( $this->requestedUser != '' )
236                         $query['username'] = $this->requestedUser;
237                 wfRunHooks( 'SpecialListusersDefaultQuery', array( $this, &$query ) );
238                 return $query;
239         }
240
241         /**
242          * Get a list of groups the specified user belongs to
243          *
244          * @param $uid Integer: user id
245          * @return array
246          */
247         protected static function getGroups( $uid ) {
248                 $user = User::newFromId( $uid );
249                 $groups = array_diff( $user->getEffectiveGroups(), $user->getImplicitGroups() );
250                 return $groups;
251         }
252
253         /**
254          * Format a link to a group description page
255          *
256          * @param $group String: group name
257          * @return string
258          */
259         protected static function buildGroupLink( $group ) {
260                 static $cache = array();
261                 if( !isset( $cache[$group] ) )
262                         $cache[$group] = User::makeGroupLinkHtml( $group, htmlspecialchars( User::getGroupMember( $group ) ) );
263                 return $cache[$group];
264         }
265 }
266
267 /**
268  * constructor
269  * $par string (optional) A group to list users from
270  */
271 function wfSpecialListusers( $par = null ) {
272         global $wgRequest, $wgOut;
273
274         $up = new UsersPager($par);
275
276         # getBody() first to check, if empty
277         $usersbody = $up->getBody();
278         $s = XML::openElement( 'div', array('class' => 'mw-spcontent') );
279         $s .= $up->getPageHeader();
280         if( $usersbody ) {
281                 $s .=   $up->getNavigationBar();
282                 $s .=   '<ul>' . $usersbody . '</ul>';
283                 $s .=   $up->getNavigationBar() ;
284         } else {
285                 $s .=   '<p>' . wfMsgHTML('listusers-noresult') . '</p>';
286         };
287         $s .= XML::closeElement( 'div' );
288         $wgOut->addHTML( $s );
289 }