* (bug 10181) Support the XCache object caching mechanism [patch from Kurt Radwanski]
[lhc/web/wiklou.git] / includes / 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 *
26 * @addtogroup 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 * @addtogroup SpecialPage
35 */
36
37 class UsersPager extends AlphabeticPager {
38
39 function __construct($group=null) {
40 global $wgRequest;
41 $this->requestedGroup = $group != "" ? $group : $wgRequest->getVal( 'group' );
42 $un = $wgRequest->getText( 'username' );
43 $this->requestedUser = '';
44 if ( $un != '' ) {
45 $username = Title::makeTitleSafe( NS_USER, $un );
46 if( ! is_null( $username ) ) {
47 $this->requestedUser = $username->getText();
48 }
49 }
50 parent::__construct();
51 }
52
53
54 function getIndexField() {
55 return 'user_name';
56 }
57
58 function getQueryInfo() {
59 $conds=array();
60 // don't show hidden names
61 $conds[]='ipb_deleted IS NULL OR ipb_deleted = 0';
62 if ($this->requestedGroup != "") {
63 $conds['ug_group'] = $this->requestedGroup;
64 }
65 if ($this->requestedUser != "") {
66 $conds[] = 'user_name >= ' . wfGetDB()->addQuotes( $this->requestedUser );
67 }
68
69 list ($user,$user_groups,$ipblocks) = wfGetDB()->tableNamesN('user','user_groups','ipblocks');
70
71 return array(
72 'tables' => " $user LEFT JOIN $user_groups ON user_id=ug_user LEFT JOIN $ipblocks ON user_id=ipb_user AND ipb_auto=0 ",
73 'fields' => array('user_name',
74 'MAX(user_id) AS user_id',
75 'COUNT(ug_group) AS numgroups',
76 'MAX(ug_group) AS singlegroup'),
77 'options' => array('GROUP BY' => 'user_name'),
78 'conds' => $conds
79 );
80
81 }
82
83 function formatRow( $row ) {
84 $userPage = Title::makeTitle( NS_USER, $row->user_name );
85 $name = $this->getSkin()->makeLinkObj( $userPage, htmlspecialchars( $userPage->getText() ) );
86
87 if( $row->numgroups > 1 || ( $this->requestedGroup && $row->numgroups == 1 ) ) {
88 $list = array();
89 foreach( self::getGroups( $row->user_id ) as $group )
90 $list[] = self::buildGroupLink( $group );
91 $groups = implode( ', ', $list );
92 } elseif( $row->numgroups == 1 ) {
93 $groups = self::buildGroupLink( $row->singlegroup );
94 } else {
95 $groups = '';
96 }
97
98 return '<li>' . wfSpecialList( $name, $groups ) . '</li>';
99 }
100
101 function getBody() {
102 if (!$this->mQueryDone) {
103 $this->doQuery();
104 }
105 $batch = new LinkBatch;
106
107 $this->mResult->rewind();
108
109 while ( $row = $this->mResult->fetchObject() ) {
110 $batch->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
111 }
112 $batch->execute();
113 $this->mResult->rewind();
114 return parent::getBody();
115 }
116
117 function getPageHeader( ) {
118 global $wgRequest;
119 $self = $this->getTitle();
120
121 # Form tag
122 $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $self->getLocalUrl() ) ) .
123 '<fieldset>' .
124 Xml::element( 'legend', array(), wfMsg( 'listusers' ) );
125
126 # Username field
127 $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .
128 Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' ';
129
130 if( $this->mLimit )
131 $out .= Xml::hidden( 'limit', $this->mLimit );
132
133 # Group drop-down list
134 $out .= Xml::label( wfMsg( 'group' ), 'group' ) . ' ' .
135 Xml::openElement('select', array( 'name' => 'group', 'id' => 'group' ) ) .
136 Xml::option( wfMsg( 'group-all' ), '' ); # Item for "all groups"
137
138 $groups = User::getAllGroups();
139 foreach( $groups as $group ) {
140 $attribs = array( 'value' => $group );
141 $attribs['selected'] = ( $group == $this->requestedGroup ) ? 'selected' : '';
142 $out .= Xml::option( User::getGroupName( $group ), $attribs['value'], $attribs['selected'] );
143 }
144 $out .= Xml::closeElement( 'select' ) . ' ';
145
146 # Submit button and form bottom
147 $out .= Xml::submitButton( wfMsg( 'allpagessubmit' ) ) .
148 '</fieldset>' .
149 Xml::closeElement( 'form' );
150
151 return $out;
152 }
153
154 /**
155 * Preserve group and username offset parameters when paging
156 * @return array
157 */
158 function getDefaultQuery() {
159 $query = parent::getDefaultQuery();
160 if( $this->requestedGroup != '' )
161 $query['group'] = $this->requestedGroup;
162 if( $this->requestedUser != '' )
163 $query['username'] = $this->requestedUser;
164 return $query;
165 }
166
167 /**
168 * Get a list of groups the specified user belongs to
169 *
170 * @param int $uid
171 * @return array
172 */
173 private static function getGroups( $uid ) {
174 $dbr = wfGetDB( DB_SLAVE );
175 $groups = array();
176 $res = $dbr->select( 'user_groups', 'ug_group', array( 'ug_user' => $uid ), __METHOD__ );
177 if( $res && $dbr->numRows( $res ) > 0 ) {
178 while( $row = $dbr->fetchObject( $res ) )
179 $groups[] = $row->ug_group;
180 $dbr->freeResult( $res );
181 }
182 return $groups;
183 }
184
185 /**
186 * Format a link to a group description page
187 *
188 * @param string $group
189 * @return string
190 */
191 private static function buildGroupLink( $group ) {
192 static $cache = array();
193 if( !isset( $cache[$group] ) )
194 $cache[$group] = User::makeGroupLinkHtml( $group, User::getGroupMember( $group ) );
195 return $cache[$group];
196 }
197 }
198
199 /**
200 * constructor
201 * $par string (optional) A group to list users from
202 */
203 function wfSpecialListusers( $par = null ) {
204 global $wgRequest, $wgOut;
205
206 list( $limit, $offset ) = wfCheckLimits();
207
208 $groupTarget = isset($par) ? $par : $wgRequest->getVal( 'group' );
209
210 $up = new UsersPager($par);
211
212 # getBody() first to check, if empty
213 $usersbody = $up->getBody();
214 $s = $up->getPageHeader();
215 if( $usersbody ) {
216 $s .= $up->getNavigationBar();
217 $s .= '<ul>' . $usersbody . '</ul>';
218 $s .= $up->getNavigationBar() ;
219 } else {
220 $s .= '<p>' . wfMsgHTML('listusers-noresult') . '</p>';
221 };
222
223 $wgOut->addHTML( $s );
224 }
225
226 ?>