5 * Created on July 7, 2007
7 * Copyright © 2007 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
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.
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.
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
28 * Query module to enumerate all registered users.
32 class ApiQueryAllUsers
extends ApiQueryBase
{
33 public function __construct( ApiQuery
$query, $moduleName ) {
34 parent
::__construct( $query, $moduleName, 'au' );
38 * This function converts the user name to a canonical form
39 * which is stored in the database.
43 private function getCanonicalUserName( $name ) {
44 return strtr( $name, '_', ' ' );
47 public function execute() {
48 $params = $this->extractRequestParams();
49 $activeUserDays = $this->getConfig()->get( 'ActiveUserDays' );
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'] );
64 $fld_blockinfo = $fld_editcount = $fld_groups = $fld_registration =
65 $fld_rights = $fld_implicitgroups = $fld_centralids = false;
68 $limit = $params['limit'];
70 $this->addTables( 'user' );
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'] );
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';
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;
84 $this->addWhereRange( $userFieldToSort, $dir, $from, $to );
86 if ( !is_null( $params['prefix'] ) ) {
87 $this->addWhere( $userFieldToSort .
88 $db->buildLike( $this->getCanonicalUserName( $params['prefix'] ), $db->anyString() ) );
91 if ( !is_null( $params['rights'] ) && count( $params['rights'] ) ) {
93 foreach ( $params['rights'] as $r ) {
94 $groups = array_merge( $groups, User
::getGroupsWithPermission( $r ) );
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() ], '' );
104 $groups = array_unique( $groups );
106 if ( is_null( $params['group'] ) ) {
107 $params['group'] = $groups;
109 $params['group'] = array_unique( array_merge( $params['group'], $groups ) );
113 $this->requireMaxOneParameter( $params, 'group', 'excludegroup' );
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( [
123 'ug1.ug_user=user_id',
124 'ug1.ug_group' => $params['group'],
125 $this->getConfig()->get( 'DisableUserGroupExpiry' ) ?
127 'ug1.ug_expiry IS NULL OR ug1.ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
131 $maxDuplicateRows *= count( $params['group'] );
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' );
139 if ( count( $params['excludegroup'] ) == 1 ) {
140 $exclude = [ 'ug1.ug_group' => $params['excludegroup'][0] ];
142 $exclude = [ $db->makeList(
143 [ 'ug1.ug_group' => $params['excludegroup'] ],
147 $this->addJoinConds( [ 'ug1' => [ 'LEFT OUTER JOIN',
149 'ug1.ug_user=user_id',
150 $this->getConfig()->get( 'DisableUserGroupExpiry' ) ?
152 'ug1.ug_expiry IS NULL OR ug1.ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
155 $this->addWhere( 'ug1.ug_user IS NULL' );
158 if ( $params['witheditsonly'] ) {
159 $this->addWhere( 'user_editcount > 0' );
162 $this->showHiddenUsersAddBlockInfo( $fld_blockinfo );
164 if ( $fld_groups ||
$fld_rights ) {
165 $this->addFields( [ 'groups' =>
166 $db->buildGroupConcatField( '|', 'user_groups', 'ug_group', [
168 $this->getConfig()->get( 'DisableUserGroupExpiry' ) ?
170 'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
175 if ( $params['activeusers'] ) {
176 $activeUserSeconds = $activeUserDays * 86400;
178 // Filter query to only include users in the active users cache.
179 // There shouldn't be any duplicate rows in querycachetwo here.
180 $this->addTables( 'querycachetwo' );
181 $this->addJoinConds( [ 'querycachetwo' => [
183 'qcc_type' => 'activeusers',
184 'qcc_namespace' => NS_USER
,
185 'qcc_title=user_name',
189 // Actually count the actions using a subquery (bug 64505 and bug 64507)
190 $timestamp = $db->timestamp( wfTimestamp( TS_UNIX
) - $activeUserSeconds );
192 'recentactions' => '(' . $db->selectSQLText(
196 'rc_user_text = user_name',
197 'rc_type != ' . $db->addQuotes( RC_EXTERNAL
), // no wikidata
198 'rc_log_type IS NULL OR rc_log_type != ' . $db->addQuotes( 'newusers' ),
199 'rc_timestamp >= ' . $db->addQuotes( $timestamp ),
205 $sqlLimit = $limit +
$maxDuplicateRows;
206 $this->addOption( 'LIMIT', $sqlLimit );
212 $this->addFieldsIf( 'user_editcount', $fld_editcount );
213 $this->addFieldsIf( 'user_registration', $fld_registration );
215 $res = $this->select( __METHOD__
);
217 $countDuplicates = 0;
219 $result = $this->getResult();
220 foreach ( $res as $row ) {
223 if ( $lastUser === $row->user_name
) {
224 // Duplicate row due to one of the needed subtable joins.
225 // Ignore it, but count the number of them to sanely handle
226 // miscalculation of $maxDuplicateRows.
228 if ( $countDuplicates == $maxDuplicateRows ) {
229 ApiBase
::dieDebug( __METHOD__
, 'Saw more duplicate rows than expected' );
234 $countDuplicates = 0;
235 $lastUser = $row->user_name
;
237 if ( $count > $limit ) {
238 // We've reached the one extra which shows that there are
239 // additional pages to be had. Stop here...
240 $this->setContinueEnumParameter( 'from', $row->user_name
);
244 if ( $count == $sqlLimit ) {
245 // Should never hit this (either the $countDuplicates check or
246 // the $count > $limit check should hit first), but check it
247 // anyway just in case.
248 ApiBase
::dieDebug( __METHOD__
, 'Saw more duplicate rows than expected' );
251 if ( $params['activeusers'] && $row->recentactions
=== 0 ) {
252 // activeusers cache was out of date
257 'userid' => (int)$row->user_id
,
258 'name' => $row->user_name
,
261 if ( $fld_centralids ) {
262 $data +
= ApiQueryUserInfo
::getCentralUserInfo(
263 $this->getConfig(), User
::newFromId( $row->user_id
), $params['attachedwiki']
267 if ( $fld_blockinfo && !is_null( $row->ipb_by_text
) ) {
268 $data['blockid'] = (int)$row->ipb_id
;
269 $data['blockedby'] = $row->ipb_by_text
;
270 $data['blockedbyid'] = (int)$row->ipb_by
;
271 $data['blockedtimestamp'] = wfTimestamp( TS_ISO_8601
, $row->ipb_timestamp
);
272 $data['blockreason'] = $row->ipb_reason
;
273 $data['blockexpiry'] = $row->ipb_expiry
;
275 if ( $row->ipb_deleted
) {
276 $data['hidden'] = true;
278 if ( $fld_editcount ) {
279 $data['editcount'] = intval( $row->user_editcount
);
281 if ( $params['activeusers'] ) {
282 $data['recentactions'] = intval( $row->recentactions
);
283 // @todo 'recenteditcount' is set for BC, remove in 1.25
284 $data['recenteditcount'] = $data['recentactions'];
286 if ( $fld_registration ) {
287 $data['registration'] = $row->user_registration ?
288 wfTimestamp( TS_ISO_8601
, $row->user_registration
) : '';
291 if ( $fld_implicitgroups ||
$fld_groups ||
$fld_rights ) {
292 $implicitGroups = User
::newFromId( $row->user_id
)->getAutomaticGroups();
293 if ( isset( $row->groups
) && $row->groups
!== '' ) {
294 $groups = array_merge( $implicitGroups, explode( '|', $row->groups
) );
296 $groups = $implicitGroups;
300 $data['groups'] = $groups;
301 ApiResult
::setIndexedTagName( $data['groups'], 'g' );
302 ApiResult
::setArrayType( $data['groups'], 'array' );
305 if ( $fld_implicitgroups ) {
306 $data['implicitgroups'] = $implicitGroups;
307 ApiResult
::setIndexedTagName( $data['implicitgroups'], 'g' );
308 ApiResult
::setArrayType( $data['implicitgroups'], 'array' );
312 $data['rights'] = User
::getGroupPermissions( $groups );
313 ApiResult
::setIndexedTagName( $data['rights'], 'r' );
314 ApiResult
::setArrayType( $data['rights'], 'array' );
318 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $data );
320 $this->setContinueEnumParameter( 'from', $data['name'] );
325 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'u' );
328 public function getCacheMode( $params ) {
329 return 'anon-public-user-private';
332 public function getAllowedParams() {
333 $userGroups = User
::getAllGroups();
340 ApiBase
::PARAM_DFLT
=> 'ascending',
341 ApiBase
::PARAM_TYPE
=> [
347 ApiBase
::PARAM_TYPE
=> $userGroups,
348 ApiBase
::PARAM_ISMULTI
=> true,
351 ApiBase
::PARAM_TYPE
=> $userGroups,
352 ApiBase
::PARAM_ISMULTI
=> true,
355 ApiBase
::PARAM_TYPE
=> User
::getAllRights(),
356 ApiBase
::PARAM_ISMULTI
=> true,
359 ApiBase
::PARAM_ISMULTI
=> true,
360 ApiBase
::PARAM_TYPE
=> [
369 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
372 ApiBase
::PARAM_DFLT
=> 10,
373 ApiBase
::PARAM_TYPE
=> 'limit',
374 ApiBase
::PARAM_MIN
=> 1,
375 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
376 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
378 'witheditsonly' => false,
380 ApiBase
::PARAM_DFLT
=> false,
381 ApiBase
::PARAM_HELP_MSG
=> [
382 'apihelp-query+allusers-param-activeusers',
383 $this->getConfig()->get( 'ActiveUserDays' )
386 'attachedwiki' => null,
390 protected function getExamplesMessages() {
392 'action=query&list=allusers&aufrom=Y'
393 => 'apihelp-query+allusers-example-Y',
397 public function getHelpUrls() {
398 return 'https://www.mediawiki.org/wiki/API:Allusers';