MediaWiki 1.40.4
ApiQueryMyStashedFiles.php
Go to the documentation of this file.
1<?php
25
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'msf' );
36 }
37
38 public function execute() {
39 $user = $this->getUser();
40
41 if ( !$user->isRegistered() ) {
42 $this->dieWithError( 'apierror-mustbeloggedin-uploadstash', 'stashnotloggedin' );
43 }
44
45 // Note: If user is logged in but cannot upload, they can still see
46 // the list of stashed uploads...but it will probably be empty.
47
48 $params = $this->extractRequestParams();
49
50 $this->addTables( 'uploadstash' );
51
52 $this->addFields( [ 'us_id', 'us_key', 'us_status' ] );
53
54 $this->addWhere( [ 'us_user' => $user->getId() ] );
55
56 if ( $params['continue'] !== null ) {
57 $cont = $this->parseContinueParamOrDie( $params['continue'], [ 'int' ] );
58 $cont_from = (int)$cont[0];
59 $this->addWhere( "us_id >= $cont_from" );
60 }
61
62 $this->addOption( 'LIMIT', $params['limit'] + 1 );
63 $this->addOption( 'ORDER BY', 'us_id' );
64
65 $prop = array_fill_keys( $params['prop'], true );
66 $this->addFieldsIf(
67 [
68 'us_size',
69 'us_image_width',
70 'us_image_height',
71 'us_image_bits'
72 ],
73
74 isset( $prop['size'] )
75 );
76 $this->addFieldsIf( [ 'us_mime', 'us_media_type' ], isset( $prop['type'] ) );
77
78 $res = $this->select( __METHOD__ );
79 $result = $this->getResult();
80 $count = 0;
81
82 foreach ( $res as $row ) {
83 if ( ++$count > $params['limit'] ) {
84 // We've reached the one extra which shows that there are
85 // additional files to be had. Stop here...
86 $this->setContinueEnumParameter( 'continue', $row->us_id );
87 break;
88 }
89
90 $item = [
91 'filekey' => $row->us_key,
92 'status' => $row->us_status,
93 ];
94
95 if ( isset( $prop['size'] ) ) {
96 $item['size'] = (int)$row->us_size;
97 $item['width'] = (int)$row->us_image_width;
98 $item['height'] = (int)$row->us_image_height;
99 $item['bits'] = (int)$row->us_image_bits;
100 }
101
102 if ( isset( $prop['type'] ) ) {
103 $item['mimetype'] = $row->us_mime;
104 $item['mediatype'] = $row->us_media_type;
105 }
106
107 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $item );
108
109 if ( !$fit ) {
110 $this->setContinueEnumParameter( 'continue', $row->us_id );
111 break;
112 }
113 }
114
115 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'file' );
116 }
117
118 public function getAllowedParams() {
119 return [
120 'prop' => [
121 ParamValidator::PARAM_ISMULTI => true,
122 ParamValidator::PARAM_DEFAULT => '',
123 ParamValidator::PARAM_TYPE => [ 'size', 'type' ],
125 ],
126
127 'limit' => [
128 ParamValidator::PARAM_TYPE => 'limit',
129 ParamValidator::PARAM_DEFAULT => 10,
130 IntegerDef::PARAM_MIN => 1,
131 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
132 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2,
133 ],
134
135 'continue' => [
136 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
137 ],
138 ];
139 }
140
141 protected function getExamplesMessages() {
142 return [
143 'action=query&list=mystashedfiles&msfprop=size'
144 => 'apihelp-query+mystashedfiles-example-simple',
145 ];
146 }
147
148 public function getHelpUrls() {
149 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:mystashedfiles';
150 }
151}
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1460
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
Definition ApiBase.php:1649
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
Definition ApiBase.php:204
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:229
getResult()
Get the result object.
Definition ApiBase.php:637
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:773
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:166
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:231
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:506
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
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.
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
action=query&list=mystashedfiles module, gets all stashed files for the current user.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getHelpUrls()
Return links to more detailed help pages about the module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, $moduleName)
This is the main query class.
Definition ApiQuery.php:42
Service for formatting and validating API parameters.
Type definition for integer types.