38 parent::__construct( $query, $moduleName,
'ai' );
39 $this->mRepo = RepoGroup::singleton()->getLocalRepo();
50 return $this->mRepo->getReplicaDB();
66 if ( $resultPageSet->isResolvingRedirects() ) {
67 $this->
dieWithError(
'apierror-allimages-redirect',
'invalidparammix' );
70 $this->
run( $resultPageSet );
77 private function run( $resultPageSet =
null ) {
90 $prop = array_flip( $params[
'prop'] );
97 $ascendingOrder =
true;
98 if ( $params[
'dir'] ==
'descending' || $params[
'dir'] ==
'older' ) {
99 $ascendingOrder =
false;
102 if ( $params[
'sort'] ==
'name' ) {
104 $disallowed = [
'start',
'end',
'user' ];
105 foreach ( $disallowed as $pname ) {
106 if ( isset( $params[$pname] ) ) {
109 'apierror-invalidparammix-mustusewith',
111 "{$prefix}sort=timestamp"
117 if ( $params[
'filterbots'] !=
'all' ) {
120 'apierror-invalidparammix-mustusewith',
121 "{$prefix}filterbots",
122 "{$prefix}sort=timestamp"
129 if ( !is_null( $params[
'continue'] ) ) {
130 $cont = explode(
'|', $params[
'continue'] );
132 $op = $ascendingOrder ?
'>' :
'<';
133 $continueFrom = $db->addQuotes( $cont[0] );
134 $this->
addWhere(
"img_name $op= $continueFrom" );
140 $this->
addWhereRange(
'img_name', $ascendingOrder ?
'newer' :
'older', $from, $to );
142 if ( isset( $params[
'prefix'] ) ) {
143 $this->
addWhere(
'img_name' . $db->buildLike(
144 $this->titlePartToKey( $params[
'prefix'],
NS_FILE ),
145 $db->anyString() ) );
149 $disallowed = [
'from',
'to',
'prefix' ];
150 foreach ( $disallowed as $pname ) {
151 if ( isset( $params[$pname] ) ) {
154 'apierror-invalidparammix-mustusewith',
162 if ( !is_null( $params[
'user'] ) && $params[
'filterbots'] !=
'all' ) {
166 [
'apierror-invalidparammix-cannotusewith',
"{$prefix}user",
"{$prefix}filterbots" ]
173 $ascendingOrder ?
'newer' :
'older',
178 $this->
addWhereRange(
'img_name', $ascendingOrder ?
'newer' :
'older',
null, null );
180 if ( !is_null( $params[
'continue'] ) ) {
181 $cont = explode(
'|', $params[
'continue'] );
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)"
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'] );
198 $this->
addWhere( $actorQuery[
'conds'] );
200 if ( $params[
'filterbots'] !=
'all' ) {
201 $actorQuery = ActorMigration::newMigration()->getJoin(
'img_user' );
202 $this->
addTables( $actorQuery[
'tables'] );
209 'ug_user = ' . $actorQuery[
'fields'][
'img_user'],
210 'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
213 $groupCond = $params[
'filterbots'] ==
'nobots' ?
'NULL' :
'NOT NULL';
214 $this->
addWhere(
"ug_group IS $groupCond" );
219 if ( isset( $params[
'minsize'] ) ) {
220 $this->
addWhere(
'img_size>=' . (
int)$params[
'minsize'] );
223 if ( isset( $params[
'maxsize'] ) ) {
224 $this->
addWhere(
'img_size<=' . (
int)$params[
'maxsize'] );
228 if ( isset( $params[
'sha1'] ) ) {
229 $sha1 = strtolower( $params[
'sha1'] );
233 $sha1 = Wikimedia\base_convert( $sha1, 16, 36, 31 );
234 } elseif ( isset( $params[
'sha1base36'] ) ) {
235 $sha1 = strtolower( $params[
'sha1base36'] );
237 $this->
dieWithError(
'apierror-invalidsha1base36hash' );
244 if ( !is_null( $params[
'mime'] ) ) {
245 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
250 foreach ( $params[
'mime'] as $mime ) {
251 list( $major, $minor ) = File::splitMime( $mime );
252 $mimeConds[] = $db->makeList(
254 'img_major_mime' => $major,
255 'img_minor_mime' => $minor,
261 if ( count( $mimeConds ) > 0 ) {
270 $limit = $params[
'limit'];
273 if ( !$ascendingOrder ) {
276 if ( $params[
'sort'] ==
'timestamp' ) {
277 $this->
addOption(
'ORDER BY',
'img_timestamp' . $sortFlag );
279 $this->
addOption(
'ORDER BY',
'img_name' . $sortFlag );
287 foreach (
$res as $row ) {
288 if ( ++$count > $limit ) {
291 if ( $params[
'sort'] ==
'name' ) {
299 if ( is_null( $resultPageSet ) ) {
300 $file = $repo->newFileFromRow( $row );
301 $info = array_merge( [
'name' => $row->img_name ],
305 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $info );
307 if ( $params[
'sort'] ==
'name' ) {
315 $titles[] = Title::makeTitle(
NS_FILE, $row->img_name );
319 if ( is_null( $resultPageSet ) ) {
320 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'img' );
322 $resultPageSet->populateFromTitles( $titles );
373 'sha1base36' =>
null,
397 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
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',
422 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allimages';
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getPermissionManager()
Obtain a PermissionManager instance that subclasses may use in their authorization checks.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const LIMIT_BIG1
Fast query, standard limit.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Query module to enumerate all available pages.
getExamplesMessages()
Returns usage examples for this module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getDB()
Override parent method to make sure the repo's DB is used which may not necessarily be the same as th...
executeGenerator( $resultPageSet)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, $moduleName)
getHelpUrls()
Return links to more detailed help pages about the module.
run( $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
validateSha1Base36Hash( $hash)
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.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
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 ] )
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
static getPropertyNames( $filter=[])
Returns all possible parameters to iiprop.
static getInfo( $file, $prop, $result, $thumbParams=null, $opts=false)
Get result information for an image revision.
static getPropertyMessages( $filter=[])
Returns messages for all possible parameters to iiprop.
This is the main query class.
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new localfile object.
A repository that stores files in the local filesystem and registers them in the wiki's own database.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.