MediaWiki  1.29.2
ApiQueryUsers.php
Go to the documentation of this file.
1 <?php
32 class ApiQueryUsers extends ApiQueryBase {
33 
35 
41  protected static $publicProps = [
42  // everything except 'blockinfo' which might show hidden records if the user
43  // making the request has the appropriate permissions
44  'groups',
45  'groupmemberships',
46  'implicitgroups',
47  'rights',
48  'editcount',
49  'registration',
50  'emailable',
51  'gender',
52  'centralids',
53  'cancreate',
54  ];
55 
56  public function __construct( ApiQuery $query, $moduleName ) {
57  parent::__construct( $query, $moduleName, 'us' );
58  }
59 
67  protected function getTokenFunctions() {
68  // Don't call the hooks twice
69  if ( isset( $this->tokenFunctions ) ) {
70  return $this->tokenFunctions;
71  }
72 
73  // If we're in a mode that breaks the same-origin policy, no tokens can
74  // be obtained
75  if ( $this->lacksSameOriginSecurity() ) {
76  return [];
77  }
78 
79  $this->tokenFunctions = [
80  'userrights' => [ 'ApiQueryUsers', 'getUserrightsToken' ],
81  ];
82  Hooks::run( 'APIQueryUsersTokens', [ &$this->tokenFunctions ] );
83 
84  return $this->tokenFunctions;
85  }
86 
92  public static function getUserrightsToken( $user ) {
94 
95  // Since the permissions check for userrights is non-trivial,
96  // don't bother with it here
97  return $wgUser->getEditToken( $user->getName() );
98  }
99 
100  public function execute() {
101  $db = $this->getDB();
102 
103  $params = $this->extractRequestParams();
104  $this->requireMaxOneParameter( $params, 'userids', 'users' );
105 
106  if ( !is_null( $params['prop'] ) ) {
107  $this->prop = array_flip( $params['prop'] );
108  } else {
109  $this->prop = [];
110  }
111  $useNames = !is_null( $params['users'] );
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 = User::getCanonicalName( $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  $this->addTables( 'user' );
147  $this->addFields( User::selectFields() );
148  if ( $useNames ) {
149  $this->addWhereFld( 'user_name', $goodNames );
150  } else {
151  $this->addWhereFld( 'user_id', $userids );
152  }
153 
154  $this->showHiddenUsersAddBlockInfo( isset( $this->prop['blockinfo'] ) );
155 
156  $data = [];
157  $res = $this->select( __METHOD__ );
158  $this->resetQueryParams();
159 
160  // get user groups if needed
161  if ( isset( $this->prop['groups'] ) || isset( $this->prop['rights'] ) ) {
162  $userGroups = [];
163 
164  $this->addTables( 'user' );
165  if ( $useNames ) {
166  $this->addWhereFld( 'user_name', $goodNames );
167  } else {
168  $this->addWhereFld( 'user_id', $userids );
169  }
170 
171  $this->addTables( 'user_groups' );
172  $this->addJoinConds( [ 'user_groups' => [ 'INNER JOIN', 'ug_user=user_id' ] ] );
173  $this->addFields( [ 'user_name' ] );
175  $this->addWhere( 'ug_expiry IS NULL OR ug_expiry >= ' .
176  $db->addQuotes( $db->timestamp() ) );
177  $userGroupsRes = $this->select( __METHOD__ );
178 
179  foreach ( $userGroupsRes as $row ) {
180  $userGroups[$row->user_name][] = $row;
181  }
182  }
183 
184  foreach ( $res as $row ) {
185 
186  // create user object and pass along $userGroups if set
187  // that reduces the number of database queries needed in User dramatically
188  if ( !isset( $userGroups ) ) {
189  $user = User::newFromRow( $row );
190  } else {
191  if ( !isset( $userGroups[$row->user_name] ) || !is_array( $userGroups[$row->user_name] ) ) {
192  $userGroups[$row->user_name] = [];
193  }
194  $user = User::newFromRow( $row, [ 'user_groups' => $userGroups[$row->user_name] ] );
195  }
196  if ( $useNames ) {
197  $key = $user->getName();
198  } else {
199  $key = $user->getId();
200  }
201  $data[$key]['userid'] = $user->getId();
202  $data[$key]['name'] = $user->getName();
203 
204  if ( isset( $this->prop['editcount'] ) ) {
205  $data[$key]['editcount'] = $user->getEditCount();
206  }
207 
208  if ( isset( $this->prop['registration'] ) ) {
209  $data[$key]['registration'] = wfTimestampOrNull( TS_ISO_8601, $user->getRegistration() );
210  }
211 
212  if ( isset( $this->prop['groups'] ) ) {
213  $data[$key]['groups'] = $user->getEffectiveGroups();
214  }
215 
216  if ( isset( $this->prop['groupmemberships'] ) ) {
217  $data[$key]['groupmemberships'] = array_map( function( $ugm ) {
218  return [
219  'group' => $ugm->getGroup(),
220  'expiry' => ApiResult::formatExpiry( $ugm->getExpiry() ),
221  ];
222  }, $user->getGroupMemberships() );
223  }
224 
225  if ( isset( $this->prop['implicitgroups'] ) ) {
226  $data[$key]['implicitgroups'] = $user->getAutomaticGroups();
227  }
228 
229  if ( isset( $this->prop['rights'] ) ) {
230  $data[$key]['rights'] = $user->getRights();
231  }
232  if ( $row->ipb_deleted ) {
233  $data[$key]['hidden'] = true;
234  }
235  if ( isset( $this->prop['blockinfo'] ) && !is_null( $row->ipb_by_text ) ) {
236  $data[$key]['blockid'] = (int)$row->ipb_id;
237  $data[$key]['blockedby'] = $row->ipb_by_text;
238  $data[$key]['blockedbyid'] = (int)$row->ipb_by;
239  $data[$key]['blockedtimestamp'] = wfTimestamp( TS_ISO_8601, $row->ipb_timestamp );
240  $data[$key]['blockreason'] = $row->ipb_reason;
241  $data[$key]['blockexpiry'] = $row->ipb_expiry;
242  }
243 
244  if ( isset( $this->prop['emailable'] ) ) {
245  $data[$key]['emailable'] = $user->canReceiveEmail();
246  }
247 
248  if ( isset( $this->prop['gender'] ) ) {
249  $gender = $user->getOption( 'gender' );
250  if ( strval( $gender ) === '' ) {
251  $gender = 'unknown';
252  }
253  $data[$key]['gender'] = $gender;
254  }
255 
256  if ( isset( $this->prop['centralids'] ) ) {
258  $this->getConfig(), $user, $params['attachedwiki']
259  );
260  }
261 
262  if ( !is_null( $params['token'] ) ) {
264  foreach ( $params['token'] as $t ) {
265  $val = call_user_func( $tokenFunctions[$t], $user );
266  if ( $val === false ) {
267  $this->addWarning( [ 'apiwarn-tokennotallowed', $t ] );
268  } else {
269  $data[$key][$t . 'token'] = $val;
270  }
271  }
272  }
273  }
274  }
275 
276  $context = $this->getContext();
277  // Second pass: add result data to $retval
278  foreach ( $parameters as $u ) {
279  if ( !isset( $data[$u] ) ) {
280  if ( $useNames ) {
281  $data[$u] = [ 'name' => $u ];
282  $urPage = new UserrightsPage;
283  $urPage->setContext( $context );
284 
285  $iwUser = $urPage->fetchUser( $u );
286 
287  if ( $iwUser instanceof UserRightsProxy ) {
288  $data[$u]['interwiki'] = true;
289 
290  if ( !is_null( $params['token'] ) ) {
292 
293  foreach ( $params['token'] as $t ) {
294  $val = call_user_func( $tokenFunctions[$t], $iwUser );
295  if ( $val === false ) {
296  $this->addWarning( [ 'apiwarn-tokennotallowed', $t ] );
297  } else {
298  $data[$u][$t . 'token'] = $val;
299  }
300  }
301  }
302  } else {
303  $data[$u]['missing'] = true;
304  if ( isset( $this->prop['cancreate'] ) ) {
305  $status = MediaWiki\Auth\AuthManager::singleton()->canCreateAccount( $u );
306  $data[$u]['cancreate'] = $status->isGood();
307  if ( !$status->isGood() ) {
308  $data[$u]['cancreateerror'] = $this->getErrorFormatter()->arrayFromStatus( $status );
309  }
310  }
311  }
312  } else {
313  $data[$u] = [ 'userid' => $u, 'missing' => true ];
314  }
315 
316  } else {
317  if ( isset( $this->prop['groups'] ) && isset( $data[$u]['groups'] ) ) {
318  ApiResult::setArrayType( $data[$u]['groups'], 'array' );
319  ApiResult::setIndexedTagName( $data[$u]['groups'], 'g' );
320  }
321  if ( isset( $this->prop['groupmemberships'] ) && isset( $data[$u]['groupmemberships'] ) ) {
322  ApiResult::setArrayType( $data[$u]['groupmemberships'], 'array' );
323  ApiResult::setIndexedTagName( $data[$u]['groupmemberships'], 'groupmembership' );
324  }
325  if ( isset( $this->prop['implicitgroups'] ) && isset( $data[$u]['implicitgroups'] ) ) {
326  ApiResult::setArrayType( $data[$u]['implicitgroups'], 'array' );
327  ApiResult::setIndexedTagName( $data[$u]['implicitgroups'], 'g' );
328  }
329  if ( isset( $this->prop['rights'] ) && isset( $data[$u]['rights'] ) ) {
330  ApiResult::setArrayType( $data[$u]['rights'], 'array' );
331  ApiResult::setIndexedTagName( $data[$u]['rights'], 'r' );
332  }
333  }
334 
335  $fit = $result->addValue( [ 'query', $this->getModuleName() ],
336  null, $data[$u] );
337  if ( !$fit ) {
338  if ( $useNames ) {
339  $this->setContinueEnumParameter( 'users',
340  implode( '|', array_diff( $users, $done ) ) );
341  } else {
342  $this->setContinueEnumParameter( 'userids',
343  implode( '|', array_diff( $userids, $done ) ) );
344  }
345  break;
346  }
347  $done[] = $u;
348  }
349  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'user' );
350  }
351 
352  public function getCacheMode( $params ) {
353  if ( isset( $params['token'] ) ) {
354  return 'private';
355  } elseif ( array_diff( (array)$params['prop'], static::$publicProps ) ) {
356  return 'anon-public-user-private';
357  } else {
358  return 'public';
359  }
360  }
361 
362  public function getAllowedParams() {
363  return [
364  'prop' => [
365  ApiBase::PARAM_ISMULTI => true,
367  'blockinfo',
368  'groups',
369  'groupmemberships',
370  'implicitgroups',
371  'rights',
372  'editcount',
373  'registration',
374  'emailable',
375  'gender',
376  'centralids',
377  'cancreate',
378  // When adding a prop, consider whether it should be added
379  // to self::$publicProps
380  ],
382  ],
383  'attachedwiki' => null,
384  'users' => [
386  ],
387  'userids' => [
388  ApiBase::PARAM_ISMULTI => true,
389  ApiBase::PARAM_TYPE => 'integer'
390  ],
391  'token' => [
393  ApiBase::PARAM_TYPE => array_keys( $this->getTokenFunctions() ),
395  ],
396  ];
397  }
398 
399  protected function getExamplesMessages() {
400  return [
401  'action=query&list=users&ususers=Example&usprop=groups|editcount|gender'
402  => 'apihelp-query+users-example-simple',
403  ];
404  }
405 
406  public function getHelpUrls() {
407  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Users';
408  }
409 }
ContextSource\$context
IContextSource $context
Definition: ContextSource.php:34
ContextSource\getConfig
getConfig()
Get the Config object.
Definition: ContextSource.php:68
ApiQueryBase\showHiddenUsersAddBlockInfo
showHiddenUsersAddBlockInfo( $showBlockInfo)
Filters hidden users (where the user doesn't have the right to view them) Also adds relevant block in...
Definition: ApiQueryBase.php:447
$wgUser
$wgUser
Definition: Setup.php:781
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:198
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:41
ApiQuery
This is the main query class.
Definition: ApiQuery.php:40
ApiBase\addWarning
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition: ApiBase.php:1720
ApiQueryUsers
Query module to get information about a list of users.
Definition: ApiQueryUsers.php:32
ApiQueryBase\resetQueryParams
resetQueryParams()
Blank the internal arrays with query parameters.
Definition: ApiQueryBase.php:150
captcha-old.count
count
Definition: captcha-old.py:225
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1994
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:91
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:610
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
$params
$params
Definition: styleTest.css.php:40
$res
$res
Definition: database.txt:21
UserRightsProxy
Cut-down copy of User interface for local-interwiki-database user rights manipulation.
Definition: UserRightsProxy.php:29
User\newFromRow
static newFromRow( $row, $data=null)
Create a new user object from a user row.
Definition: User.php:643
ApiBase\lacksSameOriginSecurity
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
Definition: ApiBase.php:538
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiQueryUsers\getUserrightsToken
static getUserrightsToken( $user)
Definition: ApiQueryUsers.php:92
ApiBase\PARAM_DEPRECATED
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
Definition: ApiBase.php:109
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1572
UserrightsPage
Special page to allow managing user group membership.
Definition: SpecialUserrights.php:29
ApiResult\setArrayType
static setArrayType(array &$arr, $type, $kvpKeyName=null)
Set the array data type.
Definition: ApiResult.php:728
ApiQueryBase
This is a base class for all Query modules.
Definition: ApiQueryBase.php:37
wfTimestampOrNull
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
Definition: GlobalFunctions.php:2010
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:111
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:164
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:358
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
UserGroupMembership\selectFields
static selectFields()
Returns the list of user_groups fields that should be selected to create a new user group membership.
Definition: UserGroupMembership.php:103
ApiQueryUsers\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiQueryUsers.php:406
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:718
ApiResult\setIndexedTagName
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:616
ApiQueryUsers\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiQueryUsers.php:100
ApiQueryBase\addJoinConds
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
Definition: ApiQueryBase.php:187
ApiQueryUsers\__construct
__construct(ApiQuery $query, $moduleName)
Definition: ApiQueryUsers.php:56
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:266
ApiQueryUsers\getTokenFunctions
getTokenFunctions()
Get an array mapping token names to their handler functions.
Definition: ApiQueryUsers.php:67
ApiBase\requireMaxOneParameter
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition: ApiBase.php:792
ApiQueryUsers\getCacheMode
getCacheMode( $params)
Get the cache mode for the data generated by this module.
Definition: ApiQueryUsers.php:352
ApiQueryUsers\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiQueryUsers.php:399
MediaWiki\Auth\AuthManager\singleton
static singleton()
Get the global AuthManager.
Definition: AuthManager.php:146
ApiQueryUsers\$tokenFunctions
$tokenFunctions
Definition: ApiQueryUsers.php:34
User\getCanonicalName
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
Definition: User.php:1076
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
SpecialPage\setContext
setContext( $context)
Sets the context this SpecialPage is executed in.
Definition: SpecialPage.php:638
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:490
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:55
ApiQueryUsers\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryUsers.php:362
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1956
ApiResult\formatExpiry
static formatExpiry( $expiry, $infinity='infinity')
Format an expiry timestamp for API output.
Definition: ApiResult.php:1207
ApiQueryUsers\$publicProps
static array $publicProps
Properties whose contents does not depend on who is looking at them.
Definition: ApiQueryUsers.php:41
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:233
User\selectFields
static selectFields()
Return the list of user fields that should be selected to create a new user object.
Definition: User.php:5444
ApiQueryUserInfo\getCentralUserInfo
static getCentralUserInfo(Config $config, User $user, $attachedWiki=null)
Get central user info.
Definition: ApiQueryUserInfo.php:95
$t
$t
Definition: testCompression.php:67
ApiQueryBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
Definition: ApiQueryBase.php:535
ApiBase\PARAM_HELP_MSG_PER_VALUE
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:160
ApiQueryUsers\$prop
$prop
Definition: ApiQueryUsers.php:34
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
ApiBase\getErrorFormatter
getErrorFormatter()
Get the error formatter.
Definition: ApiBase.php:624
array
the array() calling protocol came about after MediaWiki 1.4rc1.