]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/api/ApiQueryStashImageInfo.php
MediaWiki 1.17.4
[autoinstalls/mediawiki.git] / includes / api / ApiQueryStashImageInfo.php
1 <?php
2 /**
3  * API for MediaWiki 1.16+
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  * @file
21  */
22
23 /**
24  * A query action to get image information from temporarily stashed files.
25  *
26  * @ingroup API
27  */
28 class ApiQueryStashImageInfo extends ApiQueryImageInfo {
29
30         public function __construct( $query, $moduleName ) {
31                 parent::__construct( $query, $moduleName, 'sii' );
32         }
33
34         public function execute() {
35                 $params = $this->extractRequestParams();
36                 $modulePrefix = $this->getModulePrefix();
37
38                 $prop = array_flip( $params['prop'] );
39
40                 $scale = $this->getScale( $params );
41                 
42                 $result = $this->getResult();
43                 
44                 try {
45                         $stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash();
46                 
47                         foreach ( $params['sessionkey'] as $sessionkey ) {      
48                                 $file = $stash->getFile( $sessionkey );
49                                 $imageInfo = self::getInfo( $file, $prop, $result, $scale );
50                                 $result->addValue( array( 'query', $this->getModuleName() ), null, $imageInfo );
51                                 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), $modulePrefix );
52                         }
53
54                 } catch ( UploadStashNotAvailableException $e ) {
55                         $this->dieUsage( "Session not available: " . $e->getMessage(), "nosession" );
56                 } catch ( UploadStashFileNotFoundException $e ) {
57                         $this->dieUsage( "File not found: " . $e->getMessage(), "invalidsessiondata" );
58                 } catch ( UploadStashBadPathException $e ) {
59                         $this->dieUsage( "Bad path: " . $e->getMessage(), "invalidsessiondata" );
60                 }       
61
62         }
63
64         /**
65          * Returns all valid parameters to siiprop
66          */
67         public static function getPropertyNames() {
68                 return array(
69                         'timestamp',
70                         'url',
71                         'size',
72                         'dimensions', // For backwards compatibility with Allimages
73                         'sha1',
74                         'mime',
75                         'thumbmime',
76                         'metadata',
77                         'bitdepth',
78                 );
79         }
80
81
82         public function getAllowedParams() {
83                 return array(
84                         'sessionkey' => array( 
85                                 ApiBase::PARAM_ISMULTI => true,
86                                 ApiBase::PARAM_REQUIRED => true,
87                                 ApiBase::PARAM_DFLT => null
88                         ),
89                         'prop' => array(
90                                 ApiBase::PARAM_ISMULTI => true,
91                                 ApiBase::PARAM_DFLT => 'timestamp|url',
92                                 ApiBase::PARAM_TYPE => self::getPropertyNames()
93                         ),
94                         'urlwidth' => array(
95                                 ApiBase::PARAM_TYPE => 'integer',
96                                 ApiBase::PARAM_DFLT => -1
97                         ),
98                         'urlheight' => array(
99                                 ApiBase::PARAM_TYPE => 'integer',
100                                 ApiBase::PARAM_DFLT => -1
101                         )
102                 );
103         }
104
105         /**
106          * Return the API documentation for the parameters.
107          * @return {Array} parameter documentation.
108          */
109         public function getParamDescription() {
110                 $p = $this->getModulePrefix();
111                 return array(
112                         'prop' => array(
113                                 'What image information to get:',
114                                 ' timestamp    - Adds timestamp for the uploaded version',
115                                 ' url          - Gives URL to the image and the description page',
116                                 ' size         - Adds the size of the image in bytes and the height and width',
117                                 ' dimensions   - Alias for size',
118                                 ' sha1         - Adds sha1 hash for the image',
119                                 ' mime         - Adds MIME of the image',
120                                 ' thumbmime    - Adss MIME of the image thumbnail (requires url)',
121                                 ' metadata     - Lists EXIF metadata for the version of the image',
122                                 ' bitdepth     - Adds the bit depth of the version',
123                         ),
124                         'sessionkey' => 'Session key that identifies a previous upload that was stashed temporarily.',
125                         'urlwidth' => "If {$p}prop=url is set, a URL to an image scaled to this width will be returned.",
126                         'urlheight' => "Similar to {$p}urlwidth. Cannot be used without {$p}urlwidth"
127                 );
128         }
129
130         public function getDescription() {
131                 return 'Returns image information for stashed images';
132         }
133
134         public function getPossibleErrors() {
135                 return array_merge( parent::getPossibleErrors(), array(
136                         array( 'code' => 'siiurlwidth', 'info' => 'siiurlheight cannot be used without iiurlwidth' ),
137                 ) );
138         }
139
140         protected function getExamples() {
141                 return array(
142                         'api.php?action=query&prop=stashimageinfo&siisessionkey=124sd34rsdf567',
143                         'api.php?action=query&prop=stashimageinfo&siisessionkey=b34edoe3|bceffd4&siiurlwidth=120&siiprop=url',
144                 );
145         }
146
147         public function getVersion() {
148                 return __CLASS__ . ': $Id$';
149         }
150
151 }
152