MediaWiki master
ApiQueryStashImageInfo.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Api;
24
31
38
39 private RepoGroup $repoGroup;
40
41 public function __construct(
42 ApiQuery $query,
43 string $moduleName,
44 RepoGroup $repoGroup,
45 Language $contentLanguage,
46 BadFileLookup $badFileLookup
47 ) {
48 parent::__construct(
49 $query,
50 $moduleName,
51 'sii',
52 $repoGroup,
53 $contentLanguage,
54 $badFileLookup
55 );
56 $this->repoGroup = $repoGroup;
57 }
58
59 public function execute() {
60 if ( !$this->getUser()->isRegistered() ) {
61 $this->dieWithError( 'apierror-mustbeloggedin-uploadstash', 'notloggedin' );
62 }
63
64 $params = $this->extractRequestParams();
65 $modulePrefix = $this->getModulePrefix();
66
67 $prop = array_fill_keys( $params['prop'], true );
68
69 $scale = $this->getScale( $params );
70
71 $result = $this->getResult();
72
73 $this->requireAtLeastOneParameter( $params, 'filekey', 'sessionkey' );
74
75 // Alias sessionkey to filekey, but give an existing filekey precedence.
76 if ( !$params['filekey'] && $params['sessionkey'] ) {
77 $params['filekey'] = $params['sessionkey'];
78 }
79
80 try {
81 $stash = $this->repoGroup->getLocalRepo()->getUploadStash( $this->getUser() );
82
83 foreach ( $params['filekey'] as $filekey ) {
84 $file = $stash->getFile( $filekey );
85 $finalThumbParam = $this->mergeThumbParams( $file, $scale, $params['urlparam'] );
86 $imageInfo = ApiQueryImageInfo::getInfo( $file, $prop, $result, $finalThumbParam );
87 $result->addValue( [ 'query', $this->getModuleName() ], null, $imageInfo );
88 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], $modulePrefix );
89 }
90 // @todo Update exception handling here to understand current getFile exceptions
92 $this->dieWithException( $e, [ 'wrap' => 'apierror-stashedfilenotfound' ] );
93 } catch ( UploadStashBadPathException $e ) {
94 $this->dieWithException( $e, [ 'wrap' => 'apierror-stashpathinvalid' ] );
95 }
96 }
97
98 private const PROPERTY_FILTER = [
99 'user', 'userid', 'comment', 'parsedcomment',
100 'mediatype', 'archivename', 'uploadwarning',
101 ];
102
109 public static function getPropertyNames( $filter = null ) {
110 return parent::getPropertyNames( $filter ?? self::PROPERTY_FILTER );
111 }
112
119 public static function getPropertyMessages( $filter = null ) {
120 return parent::getPropertyMessages( $filter ?? self::PROPERTY_FILTER );
121 }
122
123 public function getAllowedParams() {
124 return [
125 'filekey' => [
126 ParamValidator::PARAM_ISMULTI => true,
127 ],
128 'sessionkey' => [
129 ParamValidator::PARAM_ISMULTI => true,
130 ParamValidator::PARAM_DEPRECATED => true,
131 ],
132 'prop' => [
133 ParamValidator::PARAM_ISMULTI => true,
134 ParamValidator::PARAM_DEFAULT => 'timestamp|url',
135 ParamValidator::PARAM_TYPE => self::getPropertyNames(),
136 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-prop',
138 ],
139 'urlwidth' => [
140 ParamValidator::PARAM_TYPE => 'integer',
141 ParamValidator::PARAM_DEFAULT => -1,
143 'apihelp-query+imageinfo-param-urlwidth',
145 ],
146 ],
147 'urlheight' => [
148 ParamValidator::PARAM_TYPE => 'integer',
149 ParamValidator::PARAM_DEFAULT => -1,
150 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-urlheight',
151 ],
152 'urlparam' => [
153 ParamValidator::PARAM_TYPE => 'string',
154 ParamValidator::PARAM_DEFAULT => '',
155 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-urlparam',
156 ],
157 ];
158 }
159
160 protected function getExamplesMessages() {
161 return [
162 'action=query&prop=stashimageinfo&siifilekey=124sd34rsdf567'
163 => 'apihelp-query+stashimageinfo-example-simple',
164 'action=query&prop=stashimageinfo&siifilekey=b34edoe3|bceffd4&' .
165 'siiurlwidth=120&siiprop=url'
166 => 'apihelp-query+stashimageinfo-example-params',
167 ];
168 }
169
170 public function getHelpUrls() {
171 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Stashimageinfo';
172 }
173}
174
176class_alias( ApiQueryStashImageInfo::class, 'ApiQueryStashImageInfo' );
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1522
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:566
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:557
requireAtLeastOneParameter( $params,... $required)
Die if 0 of a certain set of parameters is set and not false.
Definition ApiBase.php:1036
getResult()
Get the result object.
Definition ApiBase.php:696
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
Definition ApiBase.php:221
dieWithException(Throwable $exception, array $options=[])
Abort execution with an error derived from a throwable.
Definition ApiBase.php:1535
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:181
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:837
A query action to get image information and upload history.
mergeThumbParams( $image, $thumbParams, $otherParams)
Validate and merge scale parameters with handler thumb parameters, give error if invalid.
static getInfo( $file, $prop, $result, $thumbParams=null, $opts=false)
Get result information for an image revision.
getScale( $params)
From parameters, construct a 'scale' array.
A query action to get image information from temporarily stashed files.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, string $moduleName, RepoGroup $repoGroup, Language $contentLanguage, BadFileLookup $badFileLookup)
static getPropertyMessages( $filter=null)
Returns messages for all possible parameters to siiprop.
static getPropertyNames( $filter=null)
Returns all possible parameters to siiprop.
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getExamplesMessages()
Returns usage examples for this module.
This is the main query class.
Definition ApiQuery.php:48
Prioritized list of file repositories.
Definition RepoGroup.php:38
Base class for language-specific code.
Definition Language.php:82
Service for formatting and validating API parameters.