MediaWiki REL1_37
ApiQueryUsers.php
Go to the documentation of this file.
1<?php
29
37
38 private $prop;
39
42
44 private $userFactory;
45
48
51
53 private $authManager;
54
60 protected static $publicProps = [
61 // everything except 'blockinfo' which might show hidden records if the user
62 // making the request has the appropriate permissions
63 'groups',
64 'groupmemberships',
65 'implicitgroups',
66 'rights',
67 'editcount',
68 'registration',
69 'emailable',
70 'gender',
71 'centralids',
72 'cancreate',
73 ];
74
84 public function __construct(
85 ApiQuery $query,
86 $moduleName,
92 ) {
93 parent::__construct( $query, $moduleName, 'us' );
94 $this->userNameUtils = $userNameUtils;
95 $this->userFactory = $userFactory;
96 $this->userGroupManager = $userGroupManager;
97 $this->userOptionsLookup = $userOptionsLookup;
98 $this->authManager = $authManager;
99 }
100
101 public function execute() {
102 $db = $this->getDB();
103 $params = $this->extractRequestParams();
104 $this->requireMaxOneParameter( $params, 'userids', 'users' );
105
106 if ( $params['prop'] !== null ) {
107 $this->prop = array_fill_keys( $params['prop'], true );
108 } else {
109 $this->prop = [];
110 }
111 $useNames = $params['users'] !== null;
112
113 $users = (array)$params['users'];
114 $userids = (array)$params['userids'];
115
116 $goodNames = $done = [];
117 $result = $this->getResult();
118 // Canonicalize user names
119 foreach ( $users as $u ) {
120 $n = $this->userNameUtils->getCanonical( $u );
121 if ( $n === false || $n === '' ) {
122 $vals = [ 'name' => $u, 'invalid' => true ];
123 $fit = $result->addValue( [ 'query', $this->getModuleName() ],
124 null, $vals );
125 if ( !$fit ) {
126 $this->setContinueEnumParameter( 'users',
127 implode( '|', array_diff( $users, $done ) ) );
128 $goodNames = [];
129 break;
130 }
131 $done[] = $u;
132 } else {
133 $goodNames[] = $n;
134 }
135 }
136
137 if ( $useNames ) {
138 $parameters = &$goodNames;
139 } else {
140 $parameters = &$userids;
141 }
142
143 $result = $this->getResult();
144
145 if ( count( $parameters ) ) {
146 $userQuery = User::getQueryInfo();
147 $this->addTables( $userQuery['tables'] );
148 $this->addFields( $userQuery['fields'] );
149 $this->addJoinConds( $userQuery['joins'] );
150 if ( $useNames ) {
151 $this->addWhereFld( 'user_name', $goodNames );
152 } else {
153 $this->addWhereFld( 'user_id', $userids );
154 }
155
156 $this->addBlockInfoToQuery( isset( $this->prop['blockinfo'] ) );
157
158 $data = [];
159 $res = $this->select( __METHOD__ );
160 $this->resetQueryParams();
161
162 // get user groups if needed
163 if ( isset( $this->prop['groups'] ) || isset( $this->prop['rights'] ) ) {
164 $userGroups = [];
165
166 $this->addTables( 'user' );
167 if ( $useNames ) {
168 $this->addWhereFld( 'user_name', $goodNames );
169 } else {
170 $this->addWhereFld( 'user_id', $userids );
171 }
172
173 $this->addTables( 'user_groups' );
174 $this->addJoinConds( [ 'user_groups' => [ 'JOIN', 'ug_user=user_id' ] ] );
175 $this->addFields( [ 'user_name' ] );
176 $this->addFields( $this->userGroupManager->getQueryInfo()['fields'] );
177 $this->addWhere( 'ug_expiry IS NULL OR ug_expiry >= ' .
178 $db->addQuotes( $db->timestamp() ) );
179 $userGroupsRes = $this->select( __METHOD__ );
180
181 foreach ( $userGroupsRes as $row ) {
182 $userGroups[$row->user_name][] = $row;
183 }
184 }
185
186 foreach ( $res as $row ) {
187 // create user object and pass along $userGroups if set
188 // that reduces the number of database queries needed in User dramatically
189 if ( !isset( $userGroups ) ) {
190 $user = $this->userFactory->newFromRow( $row );
191 } else {
192 if ( !isset( $userGroups[$row->user_name] ) || !is_array( $userGroups[$row->user_name] ) ) {
193 $userGroups[$row->user_name] = [];
194 }
195 $user = $this->userFactory->newFromRow( $row, [ 'user_groups' => $userGroups[$row->user_name] ] );
196 }
197 if ( $useNames ) {
198 $key = $user->getName();
199 } else {
200 $key = $user->getId();
201 }
202 $data[$key]['userid'] = $user->getId();
203 $data[$key]['name'] = $user->getName();
204
205 if ( isset( $this->prop['editcount'] ) ) {
206 $data[$key]['editcount'] = $user->getEditCount();
207 }
208
209 if ( isset( $this->prop['registration'] ) ) {
210 $data[$key]['registration'] = wfTimestampOrNull( TS_ISO_8601, $user->getRegistration() );
211 }
212
213 if ( isset( $this->prop['groups'] ) ) {
214 $data[$key]['groups'] = $this->userGroupManager->getUserEffectiveGroups( $user );
215 }
216
217 if ( isset( $this->prop['groupmemberships'] ) ) {
218 $data[$key]['groupmemberships'] = array_map( static function ( $ugm ) {
219 return [
220 'group' => $ugm->getGroup(),
221 'expiry' => ApiResult::formatExpiry( $ugm->getExpiry() ),
222 ];
223 }, $this->userGroupManager->getUserGroupMemberships( $user ) );
224 }
225
226 if ( isset( $this->prop['implicitgroups'] ) ) {
227 $data[$key]['implicitgroups'] = $this->userGroupManager->getUserImplicitGroups( $user );
228 }
229
230 if ( isset( $this->prop['rights'] ) ) {
231 $data[$key]['rights'] = $this->getPermissionManager()
232 ->getUserPermissions( $user );
233 }
234 if ( $row->ipb_deleted ) {
235 $data[$key]['hidden'] = true;
236 }
237 if ( isset( $this->prop['blockinfo'] ) && $row->ipb_by_text !== null ) {
238 $data[$key] += $this->getBlockDetails( DatabaseBlock::newFromRow( $row ) );
239 }
240
241 if ( isset( $this->prop['emailable'] ) ) {
242 $data[$key]['emailable'] = $user->canReceiveEmail();
243 }
244
245 if ( isset( $this->prop['gender'] ) ) {
246 $gender = $this->userOptionsLookup->getOption( $user, 'gender' );
247 if ( strval( $gender ) === '' ) {
248 $gender = 'unknown';
249 }
250 $data[$key]['gender'] = $gender;
251 }
252
253 if ( isset( $this->prop['centralids'] ) ) {
255 $this->getConfig(), $user, $params['attachedwiki']
256 );
257 }
258 }
259 }
260
261 $context = $this->getContext();
262 // Second pass: add result data to $retval
263 foreach ( $parameters as $u ) {
264 if ( !isset( $data[$u] ) ) {
265 if ( $useNames ) {
266 $data[$u] = [ 'name' => $u ];
267 $urPage = new UserrightsPage;
268 $urPage->setContext( $context );
269
270 $iwUser = $urPage->fetchUser( $u );
271
272 if ( $iwUser instanceof UserRightsProxy ) {
273 $data[$u]['interwiki'] = true;
274 } else {
275 $data[$u]['missing'] = true;
276 if ( isset( $this->prop['cancreate'] ) ) {
277 $status = $this->authManager->canCreateAccount( $u );
278 $data[$u]['cancreate'] = $status->isGood();
279 if ( !$status->isGood() ) {
280 $data[$u]['cancreateerror'] = $this->getErrorFormatter()->arrayFromStatus( $status );
281 }
282 }
283 }
284 } else {
285 $data[$u] = [ 'userid' => $u, 'missing' => true ];
286 }
287
288 } else {
289 if ( isset( $this->prop['groups'] ) && isset( $data[$u]['groups'] ) ) {
290 ApiResult::setArrayType( $data[$u]['groups'], 'array' );
291 ApiResult::setIndexedTagName( $data[$u]['groups'], 'g' );
292 }
293 if ( isset( $this->prop['groupmemberships'] ) && isset( $data[$u]['groupmemberships'] ) ) {
294 ApiResult::setArrayType( $data[$u]['groupmemberships'], 'array' );
295 ApiResult::setIndexedTagName( $data[$u]['groupmemberships'], 'groupmembership' );
296 }
297 if ( isset( $this->prop['implicitgroups'] ) && isset( $data[$u]['implicitgroups'] ) ) {
298 ApiResult::setArrayType( $data[$u]['implicitgroups'], 'array' );
299 ApiResult::setIndexedTagName( $data[$u]['implicitgroups'], 'g' );
300 }
301 if ( isset( $this->prop['rights'] ) && isset( $data[$u]['rights'] ) ) {
302 ApiResult::setArrayType( $data[$u]['rights'], 'array' );
303 ApiResult::setIndexedTagName( $data[$u]['rights'], 'r' );
304 }
305 }
306
307 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $data[$u] );
308 if ( !$fit ) {
309 if ( $useNames ) {
310 $this->setContinueEnumParameter( 'users',
311 implode( '|', array_diff( $users, $done ) ) );
312 } else {
313 $this->setContinueEnumParameter( 'userids',
314 implode( '|', array_diff( $userids, $done ) ) );
315 }
316 break;
317 }
318 $done[] = $u;
319 }
320 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'user' );
321 }
322
323 public function getCacheMode( $params ) {
324 if ( array_diff( (array)$params['prop'], static::$publicProps ) ) {
325 return 'anon-public-user-private';
326 } else {
327 return 'public';
328 }
329 }
330
331 public function getAllowedParams() {
332 return [
333 'prop' => [
336 'blockinfo',
337 'groups',
338 'groupmemberships',
339 'implicitgroups',
340 'rights',
341 'editcount',
342 'registration',
343 'emailable',
344 'gender',
345 'centralids',
346 'cancreate',
347 // When adding a prop, consider whether it should be added
348 // to self::$publicProps
349 ],
351 ],
352 'attachedwiki' => null,
353 'users' => [
355 ],
356 'userids' => [
358 ApiBase::PARAM_TYPE => 'integer'
359 ],
360 ];
361 }
362
363 protected function getExamplesMessages() {
364 return [
365 'action=query&list=users&ususers=Example&usprop=groups|editcount|gender'
366 => 'apihelp-query+users-example-simple',
367 ];
368 }
369
370 public function getHelpUrls() {
371 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Users';
372 }
373}
addBlockInfoToQuery( $showBlockInfo)
Filters hidden users (where the user doesn't have the right to view them) Also adds relevant block in...
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
const PARAM_TYPE
Definition ApiBase.php:81
getErrorFormatter()
Definition ApiBase.php:639
getPermissionManager()
Obtain a PermissionManager instance that subclasses may use in their authorization checks.
Definition ApiBase.php:685
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition ApiBase.php:195
requireMaxOneParameter( $params,... $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:936
getResult()
Get the result object.
Definition ApiBase.php:628
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:764
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:497
const PARAM_ISMULTI
Definition ApiBase.php:77
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
resetQueryParams()
Blank the internal arrays with query parameters.
addFields( $value)
Add a set of fields to select to the internal array.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses to the internal array.
static getCentralUserInfo(Config $config, UserIdentity $user, $attachedWiki=UserIdentity::LOCAL)
Get central user info.
Query module to get information about a list of users.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static array $publicProps
Properties whose contents does not depend on who is looking at them.
getHelpUrls()
Return links to more detailed help pages about the module.
UserGroupManager $userGroupManager
__construct(ApiQuery $query, $moduleName, UserNameUtils $userNameUtils, UserFactory $userFactory, UserGroupManager $userGroupManager, UserOptionsLookup $userOptionsLookup, AuthManager $authManager)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
UserOptionsLookup $userOptionsLookup
getExamplesMessages()
Returns usage examples for this module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
UserNameUtils $userNameUtils
AuthManager $authManager
UserFactory $userFactory
This is the main query class.
Definition ApiQuery.php:37
IContextSource $context
getContext()
Get the base IContextSource object.
This serves as the entry point to the authentication system.
A DatabaseBlock (unlike a SystemBlock) is stored in the database, may give rise to autoblocks and may...
Creates User objects.
UserNameUtils service.
Provides access to user options.
setContext( $context)
Sets the context this SpecialPage is executed in.
Cut-down copy of User interface for local-interwiki-database user rights manipulation.
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new user object.
Definition User.php:4182
Special page to allow managing user group membership.
trait ApiQueryBlockInfoTrait
return true
Definition router.php:92