Merge "EditPage: Factor stats collection into private methods"
[lhc/web/wiklou.git] / includes / api / ApiQueryAllUsers.php
1 <?php
2 /**
3 *
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 /**
28 * Query module to enumerate all registered users.
29 *
30 * @ingroup API
31 */
32 class ApiQueryAllUsers extends ApiQueryBase {
33 public function __construct( ApiQuery $query, $moduleName ) {
34 parent::__construct( $query, $moduleName, 'au' );
35 }
36
37 /**
38 * This function converts the user name to a canonical form
39 * which is stored in the database.
40 * @param string $name
41 * @return string
42 */
43 private function getCanonicalUserName( $name ) {
44 return strtr( $name, '_', ' ' );
45 }
46
47 public function execute() {
48 $params = $this->extractRequestParams();
49 $activeUserDays = $this->getConfig()->get( 'ActiveUserDays' );
50
51 $db = $this->getDB();
52
53 $prop = $params['prop'];
54 if ( !is_null( $prop ) ) {
55 $prop = array_flip( $prop );
56 $fld_blockinfo = isset( $prop['blockinfo'] );
57 $fld_editcount = isset( $prop['editcount'] );
58 $fld_groups = isset( $prop['groups'] );
59 $fld_rights = isset( $prop['rights'] );
60 $fld_registration = isset( $prop['registration'] );
61 $fld_implicitgroups = isset( $prop['implicitgroups'] );
62 $fld_centralids = isset( $prop['centralids'] );
63 } else {
64 $fld_blockinfo = $fld_editcount = $fld_groups = $fld_registration =
65 $fld_rights = $fld_implicitgroups = $fld_centralids = false;
66 }
67
68 $limit = $params['limit'];
69
70 $this->addTables( 'user' );
71
72 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
73 $from = is_null( $params['from'] ) ? null : $this->getCanonicalUserName( $params['from'] );
74 $to = is_null( $params['to'] ) ? null : $this->getCanonicalUserName( $params['to'] );
75
76 # MySQL can't figure out that 'user_name' and 'qcc_title' are the same
77 # despite the JOIN condition, so manually sort on the correct one.
78 $userFieldToSort = $params['activeusers'] ? 'qcc_title' : 'user_name';
79
80 # Some of these subtable joins are going to give us duplicate rows, so
81 # calculate the maximum number of duplicates we might see.
82 $maxDuplicateRows = 1;
83
84 $this->addWhereRange( $userFieldToSort, $dir, $from, $to );
85
86 if ( !is_null( $params['prefix'] ) ) {
87 $this->addWhere( $userFieldToSort .
88 $db->buildLike( $this->getCanonicalUserName( $params['prefix'] ), $db->anyString() ) );
89 }
90
91 if ( !is_null( $params['rights'] ) && count( $params['rights'] ) ) {
92 $groups = [];
93 foreach ( $params['rights'] as $r ) {
94 $groups = array_merge( $groups, User::getGroupsWithPermission( $r ) );
95 }
96
97 // no group with the given right(s) exists, no need for a query
98 if ( !count( $groups ) ) {
99 $this->getResult()->addIndexedTagName( [ 'query', $this->getModuleName() ], '' );
100
101 return;
102 }
103
104 $groups = array_unique( $groups );
105
106 if ( is_null( $params['group'] ) ) {
107 $params['group'] = $groups;
108 } else {
109 $params['group'] = array_unique( array_merge( $params['group'], $groups ) );
110 }
111 }
112
113 $this->requireMaxOneParameter( $params, 'group', 'excludegroup' );
114
115 if ( !is_null( $params['group'] ) && count( $params['group'] ) ) {
116 // Filter only users that belong to a given group. This might
117 // produce as many rows-per-user as there are groups being checked.
118 $this->addTables( 'user_groups', 'ug1' );
119 $this->addJoinConds( [
120 'ug1' => [
121 'INNER JOIN',
122 [
123 'ug1.ug_user=user_id',
124 'ug1.ug_group' => $params['group'],
125 $this->getConfig()->get( 'DisableUserGroupExpiry' ) ?
126 '1' :
127 'ug1.ug_expiry IS NULL OR ug1.ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
128 ]
129 ]
130 ] );
131 $maxDuplicateRows *= count( $params['group'] );
132 }
133
134 if ( !is_null( $params['excludegroup'] ) && count( $params['excludegroup'] ) ) {
135 // Filter only users don't belong to a given group. This can only
136 // produce one row-per-user, because we only keep on "no match".
137 $this->addTables( 'user_groups', 'ug1' );
138
139 if ( count( $params['excludegroup'] ) == 1 ) {
140 $exclude = [ 'ug1.ug_group' => $params['excludegroup'][0] ];
141 } else {
142 $exclude = [ $db->makeList(
143 [ 'ug1.ug_group' => $params['excludegroup'] ],
144 LIST_OR
145 ) ];
146 }
147 $this->addJoinConds( [ 'ug1' => [ 'LEFT OUTER JOIN',
148 array_merge( [
149 'ug1.ug_user=user_id',
150 'ug1.ug_expiry IS NULL OR ug1.ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
151 ], $exclude )
152 ] ] );
153 $this->addWhere( 'ug1.ug_user IS NULL' );
154 }
155
156 if ( $params['witheditsonly'] ) {
157 $this->addWhere( 'user_editcount > 0' );
158 }
159
160 $this->showHiddenUsersAddBlockInfo( $fld_blockinfo );
161
162 if ( $fld_groups || $fld_rights ) {
163 $this->addFields( [ 'groups' =>
164 $db->buildGroupConcatField( '|', 'user_groups', 'ug_group', [
165 'ug_user=user_id',
166 'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
167 ] )
168 ] );
169 }
170
171 if ( $params['activeusers'] ) {
172 $activeUserSeconds = $activeUserDays * 86400;
173
174 // Filter query to only include users in the active users cache.
175 // There shouldn't be any duplicate rows in querycachetwo here.
176 $this->addTables( 'querycachetwo' );
177 $this->addJoinConds( [ 'querycachetwo' => [
178 'INNER JOIN', [
179 'qcc_type' => 'activeusers',
180 'qcc_namespace' => NS_USER,
181 'qcc_title=user_name',
182 ],
183 ] ] );
184
185 // Actually count the actions using a subquery (bug 64505 and bug 64507)
186 $timestamp = $db->timestamp( wfTimestamp( TS_UNIX ) - $activeUserSeconds );
187 $this->addFields( [
188 'recentactions' => '(' . $db->selectSQLText(
189 'recentchanges',
190 'COUNT(*)',
191 [
192 'rc_user_text = user_name',
193 'rc_type != ' . $db->addQuotes( RC_EXTERNAL ), // no wikidata
194 'rc_log_type IS NULL OR rc_log_type != ' . $db->addQuotes( 'newusers' ),
195 'rc_timestamp >= ' . $db->addQuotes( $timestamp ),
196 ]
197 ) . ')'
198 ] );
199 }
200
201 $sqlLimit = $limit + $maxDuplicateRows;
202 $this->addOption( 'LIMIT', $sqlLimit );
203
204 $this->addFields( [
205 'user_name',
206 'user_id'
207 ] );
208 $this->addFieldsIf( 'user_editcount', $fld_editcount );
209 $this->addFieldsIf( 'user_registration', $fld_registration );
210
211 $res = $this->select( __METHOD__ );
212 $count = 0;
213 $countDuplicates = 0;
214 $lastUser = false;
215 $result = $this->getResult();
216 foreach ( $res as $row ) {
217 $count++;
218
219 if ( $lastUser === $row->user_name ) {
220 // Duplicate row due to one of the needed subtable joins.
221 // Ignore it, but count the number of them to sanely handle
222 // miscalculation of $maxDuplicateRows.
223 $countDuplicates++;
224 if ( $countDuplicates == $maxDuplicateRows ) {
225 ApiBase::dieDebug( __METHOD__, 'Saw more duplicate rows than expected' );
226 }
227 continue;
228 }
229
230 $countDuplicates = 0;
231 $lastUser = $row->user_name;
232
233 if ( $count > $limit ) {
234 // We've reached the one extra which shows that there are
235 // additional pages to be had. Stop here...
236 $this->setContinueEnumParameter( 'from', $row->user_name );
237 break;
238 }
239
240 if ( $count == $sqlLimit ) {
241 // Should never hit this (either the $countDuplicates check or
242 // the $count > $limit check should hit first), but check it
243 // anyway just in case.
244 ApiBase::dieDebug( __METHOD__, 'Saw more duplicate rows than expected' );
245 }
246
247 if ( $params['activeusers'] && $row->recentactions === 0 ) {
248 // activeusers cache was out of date
249 continue;
250 }
251
252 $data = [
253 'userid' => (int)$row->user_id,
254 'name' => $row->user_name,
255 ];
256
257 if ( $fld_centralids ) {
258 $data += ApiQueryUserInfo::getCentralUserInfo(
259 $this->getConfig(), User::newFromId( $row->user_id ), $params['attachedwiki']
260 );
261 }
262
263 if ( $fld_blockinfo && !is_null( $row->ipb_by_text ) ) {
264 $data['blockid'] = (int)$row->ipb_id;
265 $data['blockedby'] = $row->ipb_by_text;
266 $data['blockedbyid'] = (int)$row->ipb_by;
267 $data['blockedtimestamp'] = wfTimestamp( TS_ISO_8601, $row->ipb_timestamp );
268 $data['blockreason'] = $row->ipb_reason;
269 $data['blockexpiry'] = $row->ipb_expiry;
270 }
271 if ( $row->ipb_deleted ) {
272 $data['hidden'] = true;
273 }
274 if ( $fld_editcount ) {
275 $data['editcount'] = intval( $row->user_editcount );
276 }
277 if ( $params['activeusers'] ) {
278 $data['recentactions'] = intval( $row->recentactions );
279 // @todo 'recenteditcount' is set for BC, remove in 1.25
280 $data['recenteditcount'] = $data['recentactions'];
281 }
282 if ( $fld_registration ) {
283 $data['registration'] = $row->user_registration ?
284 wfTimestamp( TS_ISO_8601, $row->user_registration ) : '';
285 }
286
287 if ( $fld_implicitgroups || $fld_groups || $fld_rights ) {
288 $implicitGroups = User::newFromId( $row->user_id )->getAutomaticGroups();
289 if ( isset( $row->groups ) && $row->groups !== '' ) {
290 $groups = array_merge( $implicitGroups, explode( '|', $row->groups ) );
291 } else {
292 $groups = $implicitGroups;
293 }
294
295 if ( $fld_groups ) {
296 $data['groups'] = $groups;
297 ApiResult::setIndexedTagName( $data['groups'], 'g' );
298 ApiResult::setArrayType( $data['groups'], 'array' );
299 }
300
301 if ( $fld_implicitgroups ) {
302 $data['implicitgroups'] = $implicitGroups;
303 ApiResult::setIndexedTagName( $data['implicitgroups'], 'g' );
304 ApiResult::setArrayType( $data['implicitgroups'], 'array' );
305 }
306
307 if ( $fld_rights ) {
308 $data['rights'] = User::getGroupPermissions( $groups );
309 ApiResult::setIndexedTagName( $data['rights'], 'r' );
310 ApiResult::setArrayType( $data['rights'], 'array' );
311 }
312 }
313
314 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $data );
315 if ( !$fit ) {
316 $this->setContinueEnumParameter( 'from', $data['name'] );
317 break;
318 }
319 }
320
321 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'u' );
322 }
323
324 public function getCacheMode( $params ) {
325 return 'anon-public-user-private';
326 }
327
328 public function getAllowedParams() {
329 $userGroups = User::getAllGroups();
330
331 return [
332 'from' => null,
333 'to' => null,
334 'prefix' => null,
335 'dir' => [
336 ApiBase::PARAM_DFLT => 'ascending',
337 ApiBase::PARAM_TYPE => [
338 'ascending',
339 'descending'
340 ],
341 ],
342 'group' => [
343 ApiBase::PARAM_TYPE => $userGroups,
344 ApiBase::PARAM_ISMULTI => true,
345 ],
346 'excludegroup' => [
347 ApiBase::PARAM_TYPE => $userGroups,
348 ApiBase::PARAM_ISMULTI => true,
349 ],
350 'rights' => [
351 ApiBase::PARAM_TYPE => User::getAllRights(),
352 ApiBase::PARAM_ISMULTI => true,
353 ],
354 'prop' => [
355 ApiBase::PARAM_ISMULTI => true,
356 ApiBase::PARAM_TYPE => [
357 'blockinfo',
358 'groups',
359 'implicitgroups',
360 'rights',
361 'editcount',
362 'registration',
363 'centralids',
364 ],
365 ApiBase::PARAM_HELP_MSG_PER_VALUE => [],
366 ],
367 'limit' => [
368 ApiBase::PARAM_DFLT => 10,
369 ApiBase::PARAM_TYPE => 'limit',
370 ApiBase::PARAM_MIN => 1,
371 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
372 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
373 ],
374 'witheditsonly' => false,
375 'activeusers' => [
376 ApiBase::PARAM_DFLT => false,
377 ApiBase::PARAM_HELP_MSG => [
378 'apihelp-query+allusers-param-activeusers',
379 $this->getConfig()->get( 'ActiveUserDays' )
380 ],
381 ],
382 'attachedwiki' => null,
383 ];
384 }
385
386 protected function getExamplesMessages() {
387 return [
388 'action=query&list=allusers&aufrom=Y'
389 => 'apihelp-query+allusers-example-Y',
390 ];
391 }
392
393 public function getHelpUrls() {
394 return 'https://www.mediawiki.org/wiki/API:Allusers';
395 }
396 }