Standardised file description headers, added @file
[lhc/web/wiklou.git] / includes / api / ApiQueryAllUsers.php
1 <?php
2 /**
3 * API for MediaWiki 1.8+
4 *
5 * Created on July 7, 2007
6 *
7 * Copyright © 2007 Yuri Astrakhan <Firstname><Lastname>@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 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiQueryBase.php' );
30 }
31
32 /**
33 * Query module to enumerate all registered users.
34 *
35 * @ingroup API
36 */
37 class ApiQueryAllUsers extends ApiQueryBase {
38
39 public function __construct( $query, $moduleName ) {
40 parent::__construct( $query, $moduleName, 'au' );
41 }
42
43 public function execute() {
44 $db = $this->getDB();
45 $params = $this->extractRequestParams();
46
47 $prop = $params['prop'];
48 if ( !is_null( $prop ) ) {
49 $prop = array_flip( $prop );
50 $fld_blockinfo = isset( $prop['blockinfo'] );
51 $fld_editcount = isset( $prop['editcount'] );
52 $fld_groups = isset( $prop['groups'] );
53 $fld_registration = isset( $prop['registration'] );
54 } else {
55 $fld_blockinfo = $fld_editcount = $fld_groups = $fld_registration = false;
56 }
57
58 $limit = $params['limit'];
59 $this->addTables( 'user', 'u1' );
60 $useIndex = true;
61
62 if ( !is_null( $params['from'] ) ) {
63 $this->addWhere( 'u1.user_name >= ' . $db->addQuotes( $this->keyToTitle( $params['from'] ) ) );
64 }
65 if ( !is_null( $params['to'] ) ) {
66 $this->addWhere( 'u1.user_name <= ' . $db->addQuotes( $this->keyToTitle( $params['to'] ) ) );
67 }
68
69 if ( !is_null( $params['prefix'] ) ) {
70 $this->addWhere( 'u1.user_name' . $db->buildLike( $this->keyToTitle( $params['prefix'] ), $db->anyString() ) );
71 }
72
73 if ( !is_null( $params['group'] ) ) {
74 $useIndex = false;
75 // Filter only users that belong to a given group
76 $this->addTables( 'user_groups', 'ug1' );
77 $ug1 = $this->getAliasedName( 'user_groups', 'ug1' );
78 $this->addJoinConds( array( $ug1 => array( 'INNER JOIN', array( 'ug1.ug_user=u1.user_id',
79 'ug1.ug_group' => $params['group'] ) ) ) );
80 }
81
82 if ( $params['witheditsonly'] ) {
83 $this->addWhere( 'u1.user_editcount > 0' );
84 }
85
86 if ( $fld_groups ) {
87 // Show the groups the given users belong to
88 // request more than needed to avoid not getting all rows that belong to one user
89 $groupCount = count( User::getAllGroups() );
90 $sqlLimit = $limit + $groupCount + 1;
91
92 $this->addTables( 'user_groups', 'ug2' );
93 $tname = $this->getAliasedName( 'user_groups', 'ug2' );
94 $this->addJoinConds( array( $tname => array( 'LEFT JOIN', 'ug2.ug_user=u1.user_id' ) ) );
95 $this->addFields( 'ug2.ug_group ug_group2' );
96 } else {
97 $sqlLimit = $limit + 1;
98 }
99 if ( $fld_blockinfo ) {
100 $this->addTables( 'ipblocks' );
101 $this->addTables( 'user', 'u2' );
102 $u2 = $this->getAliasedName( 'user', 'u2' );
103 $this->addJoinConds( array(
104 'ipblocks' => array( 'LEFT JOIN', 'ipb_user=u1.user_id' ),
105 $u2 => array( 'LEFT JOIN', 'ipb_by=u2.user_id' ) ) );
106 $this->addFields( array( 'ipb_reason', 'u2.user_name AS blocker_name' ) );
107 }
108
109 $this->addOption( 'LIMIT', $sqlLimit );
110
111 $this->addFields( 'u1.user_name' );
112 $this->addFieldsIf( 'u1.user_editcount', $fld_editcount );
113 $this->addFieldsIf( 'u1.user_registration', $fld_registration );
114
115 $this->addOption( 'ORDER BY', 'u1.user_name' );
116 if ( $useIndex ) {
117 $u1 = $this->getAliasedName( 'user', 'u1' );
118 $this->addOption( 'USE INDEX', array( $u1 => 'user_name' ) );
119 }
120
121 $res = $this->select( __METHOD__ );
122
123 $count = 0;
124 $lastUserData = false;
125 $lastUser = false;
126 $result = $this->getResult();
127
128 //
129 // This loop keeps track of the last entry.
130 // For each new row, if the new row is for different user then the last, the last entry is added to results.
131 // Otherwise, the group of the new row is appended to the last entry.
132 // The setContinue... is more complex because of this, and takes into account the higher sql limit
133 // to make sure all rows that belong to the same user are received.
134
135 $row = $db->fetchObject( $res );
136 foreach ( $res as $row ) {
137 $count++;
138
139 if ( $lastUser !== $row->user_name ) {
140 // Save the last pass's user data
141 if ( is_array( $lastUserData ) ) {
142 $fit = $result->addValue( array( 'query', $this->getModuleName() ),
143 null, $lastUserData );
144 if ( !$fit ) {
145 $this->setContinueEnumParameter( 'from',
146 $this->keyToTitle( $lastUserData['name'] ) );
147 break;
148 }
149 }
150
151 if ( $count > $limit ) {
152 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
153 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->user_name ) );
154 break;
155 }
156
157 // Record new user's data
158 $lastUser = $row->user_name;
159 $lastUserData = array( 'name' => $lastUser );
160 if ( $fld_blockinfo ) {
161 $lastUserData['blockedby'] = $row->blocker_name;
162 $lastUserData['blockreason'] = $row->ipb_reason;
163 }
164 if ( $fld_editcount ) {
165 $lastUserData['editcount'] = intval( $row->user_editcount );
166 }
167 if ( $fld_registration ) {
168 $lastUserData['registration'] = $row->user_registration ?
169 wfTimestamp( TS_ISO_8601, $row->user_registration ) : '';
170 }
171
172 }
173
174 if ( $sqlLimit == $count ) {
175 // BUG! database contains group name that User::getAllGroups() does not return
176 // TODO: should handle this more gracefully
177 ApiBase::dieDebug( __METHOD__,
178 'MediaWiki configuration error: the database contains more user groups than known to User::getAllGroups() function' );
179 }
180
181 // Add user's group info
182 if ( $fld_groups && !is_null( $row->ug_group2 ) ) {
183 $lastUserData['groups'][] = $row->ug_group2;
184 $result->setIndexedTagName( $lastUserData['groups'], 'g' );
185 }
186 }
187
188 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'u' );
189 }
190
191 public function getCacheMode( $params ) {
192 return 'public';
193 }
194
195 public function getAllowedParams() {
196 return array(
197 'from' => null,
198 'to' => null,
199 'prefix' => null,
200 'group' => array(
201 ApiBase::PARAM_TYPE => User::getAllGroups()
202 ),
203 'prop' => array(
204 ApiBase::PARAM_ISMULTI => true,
205 ApiBase::PARAM_TYPE => array(
206 'blockinfo',
207 'groups',
208 'editcount',
209 'registration'
210 )
211 ),
212 'limit' => array(
213 ApiBase::PARAM_DFLT => 10,
214 ApiBase::PARAM_TYPE => 'limit',
215 ApiBase::PARAM_MIN => 1,
216 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
217 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
218 ),
219 'witheditsonly' => false,
220 );
221 }
222
223 public function getParamDescription() {
224 return array(
225 'from' => 'The user name to start enumerating from',
226 'to' => 'The user name to stop enumerating at',
227 'prefix' => 'Search for all page titles that begin with this value',
228 'group' => 'Limit users to a given group name',
229 'prop' => array(
230 'What pieces of information to include.',
231 ' blockinfo - Adds the information about a current block on the user',
232 ' groups - Lists groups that the user is in',
233 ' editcount - Adds the edit count of the user',
234 ' registration - Adds the timestamp of when the user registered',
235 '`groups` property uses more server resources and may return fewer results than the limit' ),
236 'limit' => 'How many total user names to return',
237 'witheditsonly' => 'Only list users who have made edits',
238 );
239 }
240
241 public function getDescription() {
242 return 'Enumerate all registered users';
243 }
244
245 protected function getExamples() {
246 return array(
247 'api.php?action=query&list=allusers&aufrom=Y',
248 );
249 }
250
251 public function getVersion() {
252 return __CLASS__ . ': $Id$';
253 }
254 }