MediaWiki REL1_39
ApiQueryStashImageInfo.php
Go to the documentation of this file.
1<?php
25
32
34 private $repoGroup;
35
43 public function __construct(
44 ApiQuery $query,
45 $moduleName,
46 RepoGroup $repoGroup,
47 Language $contentLanguage,
48 BadFileLookup $badFileLookup
49 ) {
50 parent::__construct(
51 $query,
52 $moduleName,
53 'sii',
54 $repoGroup,
55 $contentLanguage,
56 $badFileLookup
57 );
58 $this->repoGroup = $repoGroup;
59 }
60
61 public function execute() {
62 if ( !$this->getUser()->isRegistered() ) {
63 $this->dieWithError( 'apierror-mustbeloggedin-uploadstash', 'notloggedin' );
64 }
65
66 $params = $this->extractRequestParams();
67 $modulePrefix = $this->getModulePrefix();
68
69 $prop = array_fill_keys( $params['prop'], true );
70
71 $scale = $this->getScale( $params );
72
73 $result = $this->getResult();
74
75 $this->requireAtLeastOneParameter( $params, 'filekey', 'sessionkey' );
76
77 // Alias sessionkey to filekey, but give an existing filekey precedence.
78 if ( !$params['filekey'] && $params['sessionkey'] ) {
79 $params['filekey'] = $params['sessionkey'];
80 }
81
82 try {
83 $stash = $this->repoGroup->getLocalRepo()->getUploadStash( $this->getUser() );
84
85 foreach ( $params['filekey'] as $filekey ) {
86 $file = $stash->getFile( $filekey );
87 $finalThumbParam = $this->mergeThumbParams( $file, $scale, $params['urlparam'] );
88 $imageInfo = ApiQueryImageInfo::getInfo( $file, $prop, $result, $finalThumbParam );
89 $result->addValue( [ 'query', $this->getModuleName() ], null, $imageInfo );
90 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], $modulePrefix );
91 }
92 // @todo Update exception handling here to understand current getFile exceptions
94 $this->dieWithException( $e, [ 'wrap' => 'apierror-stashedfilenotfound' ] );
95 } catch ( UploadStashBadPathException $e ) {
96 $this->dieWithException( $e, [ 'wrap' => 'apierror-stashpathinvalid' ] );
97 }
98 }
99
100 private static $propertyFilter = [
101 'user', 'userid', 'comment', 'parsedcomment',
102 'mediatype', 'archivename', 'uploadwarning',
103 ];
104
111 public static function getPropertyNames( $filter = null ) {
112 if ( $filter === null ) {
113 $filter = self::$propertyFilter;
114 }
115 return parent::getPropertyNames( $filter );
116 }
117
124 public static function getPropertyMessages( $filter = null ) {
125 if ( $filter === null ) {
126 $filter = self::$propertyFilter;
127 }
128 return parent::getPropertyMessages( $filter );
129 }
130
131 public function getAllowedParams() {
132 return [
133 'filekey' => [
134 ParamValidator::PARAM_ISMULTI => true,
135 ],
136 'sessionkey' => [
137 ParamValidator::PARAM_ISMULTI => true,
138 ParamValidator::PARAM_DEPRECATED => true,
139 ],
140 'prop' => [
141 ParamValidator::PARAM_ISMULTI => true,
142 ParamValidator::PARAM_DEFAULT => 'timestamp|url',
143 ParamValidator::PARAM_TYPE => self::getPropertyNames(),
144 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-prop',
146 ],
147 'urlwidth' => [
148 ParamValidator::PARAM_TYPE => 'integer',
149 ParamValidator::PARAM_DEFAULT => -1,
151 'apihelp-query+imageinfo-param-urlwidth',
153 ],
154 ],
155 'urlheight' => [
156 ParamValidator::PARAM_TYPE => 'integer',
157 ParamValidator::PARAM_DEFAULT => -1,
158 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-urlheight',
159 ],
160 'urlparam' => [
161 ParamValidator::PARAM_TYPE => 'string',
162 ParamValidator::PARAM_DEFAULT => '',
163 ApiBase::PARAM_HELP_MSG => 'apihelp-query+imageinfo-param-urlparam',
164 ],
165 ];
166 }
167
168 protected function getExamplesMessages() {
169 return [
170 'action=query&prop=stashimageinfo&siifilekey=124sd34rsdf567'
171 => 'apihelp-query+stashimageinfo-example-simple',
172 'action=query&prop=stashimageinfo&siifilekey=b34edoe3|bceffd4&' .
173 'siiurlwidth=120&siiprop=url'
174 => 'apihelp-query+stashimageinfo-example-params',
175 ];
176 }
177
178 public function getHelpUrls() {
179 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Stashimageinfo';
180 }
181}
getUser()
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1454
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:506
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:196
requireAtLeastOneParameter( $params,... $required)
Die if none of a certain set of parameters is set and not false.
Definition ApiBase.php:963
getResult()
Get the result object.
Definition ApiBase.php:629
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:765
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:163
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:498
dieWithException(Throwable $exception, array $options=[])
Abort execution with an error derived from a throwable.
Definition ApiBase.php:1467
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.
getScale( $params)
From parameters, construct a 'scale' array.
static getInfo( $file, $prop, $result, $thumbParams=null, $opts=false)
Get result information for an image revision.
A query action to get image information from temporarily stashed files.
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...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static getPropertyMessages( $filter=null)
Returns messages for all possible parameters to siiprop.
static getPropertyNames( $filter=null)
Returns all possible parameters to siiprop.
__construct(ApiQuery $query, $moduleName, RepoGroup $repoGroup, Language $contentLanguage, BadFileLookup $badFileLookup)
getExamplesMessages()
Returns usage examples for this module.
This is the main query class.
Definition ApiQuery.php:41
Base class for language-specific code.
Definition Language.php:53
Prioritized list of file repositories.
Definition RepoGroup.php:29
Service for formatting and validating API parameters.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition router.php:42