MediaWiki  1.33.0
ApiQueryAllImages.php
Go to the documentation of this file.
1 <?php
2 
28 
35  protected $mRepo;
36 
37  public function __construct( ApiQuery $query, $moduleName ) {
38  parent::__construct( $query, $moduleName, 'ai' );
39  $this->mRepo = RepoGroup::singleton()->getLocalRepo();
40  }
41 
49  protected function getDB() {
50  return $this->mRepo->getReplicaDB();
51  }
52 
53  public function execute() {
54  $this->run();
55  }
56 
57  public function getCacheMode( $params ) {
58  return 'public';
59  }
60 
65  public function executeGenerator( $resultPageSet ) {
66  if ( $resultPageSet->isResolvingRedirects() ) {
67  $this->dieWithError( 'apierror-allimages-redirect', 'invalidparammix' );
68  }
69 
70  $this->run( $resultPageSet );
71  }
72 
77  private function run( $resultPageSet = null ) {
78  $repo = $this->mRepo;
79  if ( !$repo instanceof LocalRepo ) {
80  $this->dieWithError( 'apierror-unsupportedrepo' );
81  }
82 
83  $prefix = $this->getModulePrefix();
84 
85  $db = $this->getDB();
86 
87  $params = $this->extractRequestParams();
88 
89  // Table and return fields
90  $prop = array_flip( $params['prop'] );
91 
92  $fileQuery = LocalFile::getQueryInfo();
93  $this->addTables( $fileQuery['tables'] );
94  $this->addFields( $fileQuery['fields'] );
95  $this->addJoinConds( $fileQuery['joins'] );
96 
97  $ascendingOrder = true;
98  if ( $params['dir'] == 'descending' || $params['dir'] == 'older' ) {
99  $ascendingOrder = false;
100  }
101 
102  if ( $params['sort'] == 'name' ) {
103  // Check mutually exclusive params
104  $disallowed = [ 'start', 'end', 'user' ];
105  foreach ( $disallowed as $pname ) {
106  if ( isset( $params[$pname] ) ) {
107  $this->dieWithError(
108  [
109  'apierror-invalidparammix-mustusewith',
110  "{$prefix}{$pname}",
111  "{$prefix}sort=timestamp"
112  ],
113  'invalidparammix'
114  );
115  }
116  }
117  if ( $params['filterbots'] != 'all' ) {
118  $this->dieWithError(
119  [
120  'apierror-invalidparammix-mustusewith',
121  "{$prefix}filterbots",
122  "{$prefix}sort=timestamp"
123  ],
124  'invalidparammix'
125  );
126  }
127 
128  // Pagination
129  if ( !is_null( $params['continue'] ) ) {
130  $cont = explode( '|', $params['continue'] );
131  $this->dieContinueUsageIf( count( $cont ) != 1 );
132  $op = $ascendingOrder ? '>' : '<';
133  $continueFrom = $db->addQuotes( $cont[0] );
134  $this->addWhere( "img_name $op= $continueFrom" );
135  }
136 
137  // Image filters
138  $from = $params['from'] === null ? null : $this->titlePartToKey( $params['from'], NS_FILE );
139  $to = $params['to'] === null ? null : $this->titlePartToKey( $params['to'], NS_FILE );
140  $this->addWhereRange( 'img_name', $ascendingOrder ? 'newer' : 'older', $from, $to );
141 
142  if ( isset( $params['prefix'] ) ) {
143  $this->addWhere( 'img_name' . $db->buildLike(
144  $this->titlePartToKey( $params['prefix'], NS_FILE ),
145  $db->anyString() ) );
146  }
147  } else {
148  // Check mutually exclusive params
149  $disallowed = [ 'from', 'to', 'prefix' ];
150  foreach ( $disallowed as $pname ) {
151  if ( isset( $params[$pname] ) ) {
152  $this->dieWithError(
153  [
154  'apierror-invalidparammix-mustusewith',
155  "{$prefix}{$pname}",
156  "{$prefix}sort=name"
157  ],
158  'invalidparammix'
159  );
160  }
161  }
162  if ( !is_null( $params['user'] ) && $params['filterbots'] != 'all' ) {
163  // Since filterbots checks if each user has the bot right, it
164  // doesn't make sense to use it with user
165  $this->dieWithError(
166  [ 'apierror-invalidparammix-cannotusewith', "{$prefix}user", "{$prefix}filterbots" ]
167  );
168  }
169 
170  // Pagination
171  $this->addTimestampWhereRange(
172  'img_timestamp',
173  $ascendingOrder ? 'newer' : 'older',
174  $params['start'],
175  $params['end']
176  );
177  // Include in ORDER BY for uniqueness
178  $this->addWhereRange( 'img_name', $ascendingOrder ? 'newer' : 'older', null, null );
179 
180  if ( !is_null( $params['continue'] ) ) {
181  $cont = explode( '|', $params['continue'] );
182  $this->dieContinueUsageIf( count( $cont ) != 2 );
183  $op = ( $ascendingOrder ? '>' : '<' );
184  $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
185  $continueName = $db->addQuotes( $cont[1] );
186  $this->addWhere( "img_timestamp $op $continueTimestamp OR " .
187  "(img_timestamp = $continueTimestamp AND " .
188  "img_name $op= $continueName)"
189  );
190  }
191 
192  // Image filters
193  if ( !is_null( $params['user'] ) ) {
194  $actorQuery = ActorMigration::newMigration()
195  ->getWhere( $db, 'img_user', User::newFromName( $params['user'], false ) );
196  $this->addTables( $actorQuery['tables'] );
197  $this->addJoinConds( $actorQuery['joins'] );
198  $this->addWhere( $actorQuery['conds'] );
199  }
200  if ( $params['filterbots'] != 'all' ) {
201  $actorQuery = ActorMigration::newMigration()->getJoin( 'img_user' );
202  $this->addTables( $actorQuery['tables'] );
203  $this->addTables( 'user_groups' );
204  $this->addJoinConds( $actorQuery['joins'] );
205  $this->addJoinConds( [ 'user_groups' => [
206  'LEFT JOIN',
207  [
208  'ug_group' => User::getGroupsWithPermission( 'bot' ),
209  'ug_user = ' . $actorQuery['fields']['img_user'],
210  'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
211  ]
212  ] ] );
213  $groupCond = $params['filterbots'] == 'nobots' ? 'NULL' : 'NOT NULL';
214  $this->addWhere( "ug_group IS $groupCond" );
215  }
216  }
217 
218  // Filters not depending on sort
219  if ( isset( $params['minsize'] ) ) {
220  $this->addWhere( 'img_size>=' . (int)$params['minsize'] );
221  }
222 
223  if ( isset( $params['maxsize'] ) ) {
224  $this->addWhere( 'img_size<=' . (int)$params['maxsize'] );
225  }
226 
227  $sha1 = false;
228  if ( isset( $params['sha1'] ) ) {
229  $sha1 = strtolower( $params['sha1'] );
230  if ( !$this->validateSha1Hash( $sha1 ) ) {
231  $this->dieWithError( 'apierror-invalidsha1hash' );
232  }
233  $sha1 = Wikimedia\base_convert( $sha1, 16, 36, 31 );
234  } elseif ( isset( $params['sha1base36'] ) ) {
235  $sha1 = strtolower( $params['sha1base36'] );
236  if ( !$this->validateSha1Base36Hash( $sha1 ) ) {
237  $this->dieWithError( 'apierror-invalidsha1base36hash' );
238  }
239  }
240  if ( $sha1 ) {
241  $this->addWhereFld( 'img_sha1', $sha1 );
242  }
243 
244  if ( !is_null( $params['mime'] ) ) {
245  if ( $this->getConfig()->get( 'MiserMode' ) ) {
246  $this->dieWithError( 'apierror-mimesearchdisabled' );
247  }
248 
249  $mimeConds = [];
250  foreach ( $params['mime'] as $mime ) {
251  list( $major, $minor ) = File::splitMime( $mime );
252  $mimeConds[] = $db->makeList(
253  [
254  'img_major_mime' => $major,
255  'img_minor_mime' => $minor,
256  ],
257  LIST_AND
258  );
259  }
260  // safeguard against internal_api_error_DBQueryError
261  if ( count( $mimeConds ) > 0 ) {
262  $this->addWhere( $db->makeList( $mimeConds, LIST_OR ) );
263  } else {
264  // no MIME types, no files
265  $this->getResult()->addValue( 'query', $this->getModuleName(), [] );
266  return;
267  }
268  }
269 
270  $limit = $params['limit'];
271  $this->addOption( 'LIMIT', $limit + 1 );
272  $sortFlag = '';
273  if ( !$ascendingOrder ) {
274  $sortFlag = ' DESC';
275  }
276  if ( $params['sort'] == 'timestamp' ) {
277  $this->addOption( 'ORDER BY', 'img_timestamp' . $sortFlag );
278  } else {
279  $this->addOption( 'ORDER BY', 'img_name' . $sortFlag );
280  }
281 
282  $res = $this->select( __METHOD__ );
283 
284  $titles = [];
285  $count = 0;
286  $result = $this->getResult();
287  foreach ( $res as $row ) {
288  if ( ++$count > $limit ) {
289  // We've reached the one extra which shows that there are
290  // additional pages to be had. Stop here...
291  if ( $params['sort'] == 'name' ) {
292  $this->setContinueEnumParameter( 'continue', $row->img_name );
293  } else {
294  $this->setContinueEnumParameter( 'continue', "$row->img_timestamp|$row->img_name" );
295  }
296  break;
297  }
298 
299  if ( is_null( $resultPageSet ) ) {
300  $file = $repo->newFileFromRow( $row );
301  $info = array_merge( [ 'name' => $row->img_name ],
303  self::addTitleInfo( $info, $file->getTitle() );
304 
305  $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $info );
306  if ( !$fit ) {
307  if ( $params['sort'] == 'name' ) {
308  $this->setContinueEnumParameter( 'continue', $row->img_name );
309  } else {
310  $this->setContinueEnumParameter( 'continue', "$row->img_timestamp|$row->img_name" );
311  }
312  break;
313  }
314  } else {
315  $titles[] = Title::makeTitle( NS_FILE, $row->img_name );
316  }
317  }
318 
319  if ( is_null( $resultPageSet ) ) {
320  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'img' );
321  } else {
322  $resultPageSet->populateFromTitles( $titles );
323  }
324  }
325 
326  public function getAllowedParams() {
327  $ret = [
328  'sort' => [
329  ApiBase::PARAM_DFLT => 'name',
331  'name',
332  'timestamp'
333  ]
334  ],
335  'dir' => [
336  ApiBase::PARAM_DFLT => 'ascending',
338  // sort=name
339  'ascending',
340  'descending',
341  // sort=timestamp
342  'newer',
343  'older'
344  ]
345  ],
346  'from' => null,
347  'to' => null,
348  'continue' => [
349  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
350  ],
351  'start' => [
352  ApiBase::PARAM_TYPE => 'timestamp'
353  ],
354  'end' => [
355  ApiBase::PARAM_TYPE => 'timestamp'
356  ],
357  'prop' => [
358  ApiBase::PARAM_TYPE => ApiQueryImageInfo::getPropertyNames( $this->propertyFilter ),
359  ApiBase::PARAM_DFLT => 'timestamp|url',
360  ApiBase::PARAM_ISMULTI => true,
361  ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-prop',
363  ApiQueryImageInfo::getPropertyMessages( $this->propertyFilter ),
364  ],
365  'prefix' => null,
366  'minsize' => [
367  ApiBase::PARAM_TYPE => 'integer',
368  ],
369  'maxsize' => [
370  ApiBase::PARAM_TYPE => 'integer',
371  ],
372  'sha1' => null,
373  'sha1base36' => null,
374  'user' => [
375  ApiBase::PARAM_TYPE => 'user'
376  ],
377  'filterbots' => [
378  ApiBase::PARAM_DFLT => 'all',
380  'all',
381  'bots',
382  'nobots'
383  ]
384  ],
385  'mime' => [
386  ApiBase::PARAM_ISMULTI => true,
387  ],
388  'limit' => [
389  ApiBase::PARAM_DFLT => 10,
390  ApiBase::PARAM_TYPE => 'limit',
391  ApiBase::PARAM_MIN => 1,
394  ],
395  ];
396 
397  if ( $this->getConfig()->get( 'MiserMode' ) ) {
398  $ret['mime'][ApiBase::PARAM_HELP_MSG] = 'api-help-param-disabled-in-miser-mode';
399  }
400 
401  return $ret;
402  }
403 
404  private $propertyFilter = [ 'archivename', 'thumbmime', 'uploadwarning' ];
405 
406  protected function getExamplesMessages() {
407  return [
408  'action=query&list=allimages&aifrom=B'
409  => 'apihelp-query+allimages-example-B',
410  'action=query&list=allimages&aiprop=user|timestamp|url&' .
411  'aisort=timestamp&aidir=older'
412  => 'apihelp-query+allimages-example-recent',
413  'action=query&list=allimages&aimime=image/png|image/gif'
414  => 'apihelp-query+allimages-example-mimetypes',
415  'action=query&generator=allimages&gailimit=4&' .
416  'gaifrom=T&prop=imageinfo'
417  => 'apihelp-query+allimages-example-generator',
418  ];
419  }
420 
421  public function getHelpUrls() {
422  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allimages';
423  }
424 }
ApiQueryBase\validateSha1Base36Hash
validateSha1Base36Hash( $hash)
Definition: ApiQueryBase.php:621
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
ApiQueryImageInfo\getPropertyNames
static getPropertyNames( $filter=[])
Returns all possible parameters to iiprop.
Definition: ApiQueryImageInfo.php:721
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:190
ApiQuery
This is the main query class.
Definition: ApiQuery.php:36
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:61
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition: router.php:42
ApiQueryAllImages\__construct
__construct(ApiQuery $query, $moduleName)
Definition: ApiQueryAllImages.php:37
captcha-old.count
count
Definition: captcha-old.py:249
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1990
ApiQueryBase\addTimestampWhereRange
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
Definition: ApiQueryBase.php:335
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:124
$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 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name '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. '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 '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 since 1.28! 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:1983
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:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:632
ApiQueryAllImages\getDB
getDB()
Override parent method to make sure the repo's DB is used which may not necessarily be the same as th...
Definition: ApiQueryAllImages.php:49
NS_FILE
const NS_FILE
Definition: Defines.php:70
$params
$params
Definition: styleTest.css.php:44
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
$res
$res
Definition: database.txt:21
File\splitMime
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
Definition: File.php:274
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:347
ApiQueryImageInfo\getInfo
static getInfo( $file, $prop, $result, $thumbParams=null, $opts=false)
Get result information for an image revision.
Definition: ApiQueryImageInfo.php:372
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:111
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
LIST_AND
const LIST_AND
Definition: Defines.php:43
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
ApiQueryGeneratorBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Definition: ApiQueryGeneratorBase.php:84
$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:1588
ApiBase\PARAM_MIN
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:99
LIST_OR
const LIST_OR
Definition: Defines.php:46
ApiQueryAllImages\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiQueryAllImages.php:421
$titles
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition: linkcache.txt:17
ApiQueryAllImages\executeGenerator
executeGenerator( $resultPageSet)
Definition: ApiQueryAllImages.php:65
ApiBase\LIMIT_BIG1
const LIMIT_BIG1
Fast query, standard limit.
Definition: ApiBase.php:252
ApiBase\PARAM_MAX
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:90
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:158
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:372
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:743
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
ApiBase\getModulePrefix
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition: ApiBase.php:520
ApiQueryBase\addWhereRange
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
Definition: ApiQueryBase.php:300
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
ApiQueryAllImages\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryAllImages.php:326
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition: ApiBase.php:2176
ApiQueryBase\addJoinConds
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
Definition: ApiQueryBase.php:179
$ret
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 & $ret
Definition: hooks.txt:1985
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:258
ApiQueryAllImages\$mRepo
$mRepo
Definition: ApiQueryAllImages.php:35
ApiQueryAllImages\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiQueryAllImages.php:53
ApiQueryAllImages\getCacheMode
getCacheMode( $params)
Get the cache mode for the data generated by this module.
Definition: ApiQueryAllImages.php:57
ApiQueryGeneratorBase
Definition: ApiQueryGeneratorBase.php:26
LocalFile\getQueryInfo
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new localfile object.
Definition: LocalFile.php:244
ApiBase\LIMIT_BIG2
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition: ApiBase.php:254
ApiQueryAllImages
Query module to enumerate all available pages.
Definition: ApiQueryAllImages.php:34
ApiQueryAllImages\run
run( $resultPageSet=null)
Definition: ApiQueryAllImages.php:77
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
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
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:512
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
ApiBase\PARAM_MAX2
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition: ApiBase.php:96
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:225
ApiQueryAllImages\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiQueryAllImages.php:406
ApiQueryImageInfo\getPropertyMessages
static getPropertyMessages( $filter=[])
Returns messages for all possible parameters to iiprop.
Definition: ApiQueryImageInfo.php:731
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:157
ApiQueryBase\titlePartToKey
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
Definition: ApiQueryBase.php:573
ApiQueryAllImages\$propertyFilter
$propertyFilter
Definition: ApiQueryAllImages.php:404
LocalRepo
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition: LocalRepo.php:36
ApiQueryBase\addTitleInfo
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
Definition: ApiQueryBase.php:510
User\getGroupsWithPermission
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
Definition: User.php:5042
ApiQueryBase\validateSha1Hash
validateSha1Hash( $hash)
Definition: ApiQueryBase.php:613