Merge "Fix positioning of jQuery.tipsy tooltip arrows"
[mediawiki.git] / includes / filerepo / file / ForeignAPIFile.php
blob26ea38b223686c43b7b2ee0d7078b340d6968edb
1 <?php
2 /**
3 * Foreign file accessible through api.php requests.
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.
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.
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
20 * @file
21 * @ingroup FileAbstraction
24 /**
25 * Foreign file accessible through api.php requests.
26 * Very hacky and inefficient, do not use :D
28 * @ingroup FileAbstraction
30 class ForeignAPIFile extends File {
31 private $mExists;
33 protected $repoClass = 'ForeignApiRepo';
35 /**
36 * @param Title|string|bool $title
37 * @param ForeignApiRepo $repo
38 * @param array $info
39 * @param bool $exists
41 function __construct( $title, $repo, $info, $exists = false ) {
42 parent::__construct( $title, $repo );
44 $this->mInfo = $info;
45 $this->mExists = $exists;
47 $this->assertRepoDefined();
50 /**
51 * @param Title $title
52 * @param ForeignApiRepo $repo
53 * @return ForeignAPIFile|null
55 static function newFromTitle( Title $title, $repo ) {
56 $data = $repo->fetchImageQuery( array(
57 'titles' => 'File:' . $title->getDBkey(),
58 'iiprop' => self::getProps(),
59 'prop' => 'imageinfo',
60 'iimetadataversion' => MediaHandler::getMetadataVersion(),
61 // extmetadata is language-dependant, accessing the current language here
62 // would be problematic, so we just get them all
63 'iiextmetadatamultilang' => 1,
64 ) );
66 $info = $repo->getImageInfo( $data );
68 if ( $info ) {
69 $lastRedirect = isset( $data['query']['redirects'] )
70 ? count( $data['query']['redirects'] ) - 1
71 : -1;
72 if ( $lastRedirect >= 0 ) {
73 $newtitle = Title::newFromText( $data['query']['redirects'][$lastRedirect]['to'] );
74 $img = new self( $newtitle, $repo, $info, true );
75 if ( $img ) {
76 $img->redirectedFrom( $title->getDBkey() );
78 } else {
79 $img = new self( $title, $repo, $info, true );
82 return $img;
83 } else {
84 return null;
88 /**
89 * Get the property string for iiprop and aiprop
90 * @return string
92 static function getProps() {
93 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
96 // Dummy functions...
98 /**
99 * @return bool
101 public function exists() {
102 return $this->mExists;
106 * @return bool
108 public function getPath() {
109 return false;
113 * @param array $params
114 * @param int $flags
115 * @return bool|MediaTransformOutput
117 function transform( $params, $flags = 0 ) {
118 if ( !$this->canRender() ) {
119 // show icon
120 return parent::transform( $params, $flags );
123 // Note, the this->canRender() check above implies
124 // that we have a handler, and it can do makeParamString.
125 $otherParams = $this->handler->makeParamString( $params );
126 $width = isset( $params['width'] ) ? $params['width'] : -1;
127 $height = isset( $params['height'] ) ? $params['height'] : -1;
129 $thumbUrl = $this->repo->getThumbUrlFromCache(
130 $this->getName(),
131 $width,
132 $height,
133 $otherParams
135 if ( $thumbUrl === false ) {
136 global $wgLang;
138 return $this->repo->getThumbError(
139 $this->getName(),
140 $width,
141 $height,
142 $otherParams,
143 $wgLang->getCode()
147 return $this->handler->getTransform( $this, 'bogus', $thumbUrl, $params );
150 // Info we can get from API...
153 * @param int $page
154 * @return int|number
156 public function getWidth( $page = 1 ) {
157 return isset( $this->mInfo['width'] ) ? intval( $this->mInfo['width'] ) : 0;
161 * @param int $page
162 * @return int
164 public function getHeight( $page = 1 ) {
165 return isset( $this->mInfo['height'] ) ? intval( $this->mInfo['height'] ) : 0;
169 * @return bool|null|string
171 public function getMetadata() {
172 if ( isset( $this->mInfo['metadata'] ) ) {
173 return serialize( self::parseMetadata( $this->mInfo['metadata'] ) );
176 return null;
180 * @return array|null Extended metadata (see imageinfo API for format) or
181 * null on error
183 public function getExtendedMetadata() {
184 if ( isset( $this->mInfo['extmetadata'] ) ) {
185 return $this->mInfo['extmetadata'];
188 return null;
192 * @param array $metadata
193 * @return array
195 public static function parseMetadata( $metadata ) {
196 if ( !is_array( $metadata ) ) {
197 return $metadata;
199 $ret = array();
200 foreach ( $metadata as $meta ) {
201 $ret[$meta['name']] = self::parseMetadata( $meta['value'] );
204 return $ret;
208 * @return bool|int|null
210 public function getSize() {
211 return isset( $this->mInfo['size'] ) ? intval( $this->mInfo['size'] ) : null;
215 * @return null|string
217 public function getUrl() {
218 return isset( $this->mInfo['url'] ) ? strval( $this->mInfo['url'] ) : null;
222 * @param string $type
223 * @return int|null|string
225 public function getUser( $type = 'text' ) {
226 if ( $type == 'text' ) {
227 return isset( $this->mInfo['user'] ) ? strval( $this->mInfo['user'] ) : null;
228 } elseif ( $type == 'id' ) {
229 return 0; // What makes sense here, for a remote user?
234 * @param int $audience
235 * @param User $user
236 * @return null|string
238 public function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
239 return isset( $this->mInfo['comment'] ) ? strval( $this->mInfo['comment'] ) : null;
243 * @return null|string
245 function getSha1() {
246 return isset( $this->mInfo['sha1'] )
247 ? Wikimedia\base_convert( strval( $this->mInfo['sha1'] ), 16, 36, 31 )
248 : null;
252 * @return bool|string
254 function getTimestamp() {
255 return wfTimestamp( TS_MW,
256 isset( $this->mInfo['timestamp'] )
257 ? strval( $this->mInfo['timestamp'] )
258 : null
263 * @return string
265 function getMimeType() {
266 if ( !isset( $this->mInfo['mime'] ) ) {
267 $magic = MimeMagic::singleton();
268 $this->mInfo['mime'] = $magic->guessTypesForExtension( $this->getExtension() );
271 return $this->mInfo['mime'];
275 * @return int|string
277 function getMediaType() {
278 if ( isset( $this->mInfo['mediatype'] ) ) {
279 return $this->mInfo['mediatype'];
281 $magic = MimeMagic::singleton();
283 return $magic->getMediaType( null, $this->getMimeType() );
287 * @return bool|string
289 function getDescriptionUrl() {
290 return isset( $this->mInfo['descriptionurl'] )
291 ? $this->mInfo['descriptionurl']
292 : false;
296 * Only useful if we're locally caching thumbs anyway...
297 * @param string $suffix
298 * @return null|string
300 function getThumbPath( $suffix = '' ) {
301 if ( $this->repo->canCacheThumbs() ) {
302 $path = $this->repo->getZonePath( 'thumb' ) . '/' . $this->getHashPath( $this->getName() );
303 if ( $suffix ) {
304 $path = $path . $suffix . '/';
307 return $path;
308 } else {
309 return null;
314 * @return array
316 function getThumbnails() {
317 $dir = $this->getThumbPath( $this->getName() );
318 $iter = $this->repo->getBackend()->getFileList( array( 'dir' => $dir ) );
320 $files = array();
321 foreach ( $iter as $file ) {
322 $files[] = $file;
325 return $files;
329 * @see File::purgeCache()
331 function purgeCache( $options = array() ) {
332 $this->purgeThumbnails( $options );
333 $this->purgeDescriptionPage();
336 function purgeDescriptionPage() {
337 global $wgContLang;
339 $url = $this->repo->getDescriptionRenderUrl( $this->getName(), $wgContLang->getCode() );
340 $key = $this->repo->getLocalCacheKey( 'RemoteFileDescription', 'url', md5( $url ) );
342 ObjectCache::getMainWANInstance()->delete( $key );
346 * @param array $options
348 function purgeThumbnails( $options = array() ) {
349 $key = $this->repo->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $this->getName() );
350 ObjectCache::getMainWANInstance()->delete( $key );
352 $files = $this->getThumbnails();
353 // Give media handler a chance to filter the purge list
354 $handler = $this->getHandler();
355 if ( $handler ) {
356 $handler->filterThumbnailPurgeList( $files, $options );
359 $dir = $this->getThumbPath( $this->getName() );
360 $purgeList = array();
361 foreach ( $files as $file ) {
362 $purgeList[] = "{$dir}{$file}";
365 # Delete the thumbnails
366 $this->repo->quickPurgeBatch( $purgeList );
367 # Clear out the thumbnail directory if empty
368 $this->repo->quickCleanDir( $dir );
372 * The thumbnail is created on the foreign server and fetched over internet
373 * @since 1.25
374 * @return bool
376 public function isTransformedLocally() {
377 return false;