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
21 * @ingroup FileAbstraction
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
{
33 protected $repoClass = 'ForeignApiRepo';
36 * @param Title|string|bool $title
37 * @param ForeignApiRepo $repo
41 function __construct( $title, $repo, $info, $exists = false ) {
42 parent
::__construct( $title, $repo );
45 $this->mExists
= $exists;
47 $this->assertRepoDefined();
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,
66 $info = $repo->getImageInfo( $data );
69 $lastRedirect = isset( $data['query']['redirects'] )
70 ?
count( $data['query']['redirects'] ) - 1
72 if ( $lastRedirect >= 0 ) {
73 $newtitle = Title
::newFromText( $data['query']['redirects'][$lastRedirect]['to'] );
74 $img = new self( $newtitle, $repo, $info, true );
76 $img->redirectedFrom( $title->getDBkey() );
79 $img = new self( $title, $repo, $info, true );
89 * Get the property string for iiprop and aiprop
92 static function getProps() {
93 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
101 public function exists() {
102 return $this->mExists
;
108 public function getPath() {
113 * @param array $params
115 * @return bool|MediaTransformOutput
117 function transform( $params, $flags = 0 ) {
118 if ( !$this->canRender() ) {
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(
135 if ( $thumbUrl === false ) {
138 return $this->repo
->getThumbError(
147 return $this->handler
->getTransform( $this, 'bogus', $thumbUrl, $params );
150 // Info we can get from API...
156 public function getWidth( $page = 1 ) {
157 return isset( $this->mInfo
['width'] ) ?
intval( $this->mInfo
['width'] ) : 0;
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'] ) );
180 * @return array|null Extended metadata (see imageinfo API for format) or
183 public function getExtendedMetadata() {
184 if ( isset( $this->mInfo
['extmetadata'] ) ) {
185 return $this->mInfo
['extmetadata'];
192 * @param array $metadata
195 public static function parseMetadata( $metadata ) {
196 if ( !is_array( $metadata ) ) {
200 foreach ( $metadata as $meta ) {
201 $ret[$meta['name']] = self
::parseMetadata( $meta['value'] );
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 * Get short description URL for a file based on the foreign API response,
223 * or if unavailable, the short URL is constructed from the foreign page ID.
225 * @return null|string
228 public function getDescriptionShortUrl() {
229 if ( isset( $this->mInfo
['descriptionshorturl'] ) ) {
230 return $this->mInfo
['descriptionshorturl'];
231 } elseif ( isset( $this->mInfo
['pageid'] ) ) {
232 $url = $this->repo
->makeUrl( array( 'curid' => $this->mInfo
['pageid'] ) );
233 if ( $url !== false ) {
241 * @param string $type
242 * @return int|null|string
244 public function getUser( $type = 'text' ) {
245 if ( $type == 'text' ) {
246 return isset( $this->mInfo
['user'] ) ?
strval( $this->mInfo
['user'] ) : null;
247 } elseif ( $type == 'id' ) {
248 return 0; // What makes sense here, for a remote user?
253 * @param int $audience
255 * @return null|string
257 public function getDescription( $audience = self
::FOR_PUBLIC
, User
$user = null ) {
258 return isset( $this->mInfo
['comment'] ) ?
strval( $this->mInfo
['comment'] ) : null;
262 * @return null|string
265 return isset( $this->mInfo
['sha1'] )
266 ? Wikimedia\base_convert
( strval( $this->mInfo
['sha1'] ), 16, 36, 31 )
271 * @return bool|string
273 function getTimestamp() {
274 return wfTimestamp( TS_MW
,
275 isset( $this->mInfo
['timestamp'] )
276 ?
strval( $this->mInfo
['timestamp'] )
284 function getMimeType() {
285 if ( !isset( $this->mInfo
['mime'] ) ) {
286 $magic = MimeMagic
::singleton();
287 $this->mInfo
['mime'] = $magic->guessTypesForExtension( $this->getExtension() );
290 return $this->mInfo
['mime'];
296 function getMediaType() {
297 if ( isset( $this->mInfo
['mediatype'] ) ) {
298 return $this->mInfo
['mediatype'];
300 $magic = MimeMagic
::singleton();
302 return $magic->getMediaType( null, $this->getMimeType() );
306 * @return bool|string
308 function getDescriptionUrl() {
309 return isset( $this->mInfo
['descriptionurl'] )
310 ?
$this->mInfo
['descriptionurl']
315 * Only useful if we're locally caching thumbs anyway...
316 * @param string $suffix
317 * @return null|string
319 function getThumbPath( $suffix = '' ) {
320 if ( $this->repo
->canCacheThumbs() ) {
321 $path = $this->repo
->getZonePath( 'thumb' ) . '/' . $this->getHashPath( $this->getName() );
323 $path = $path . $suffix . '/';
335 function getThumbnails() {
336 $dir = $this->getThumbPath( $this->getName() );
337 $iter = $this->repo
->getBackend()->getFileList( array( 'dir' => $dir ) );
340 foreach ( $iter as $file ) {
348 * @see File::purgeCache()
350 function purgeCache( $options = array() ) {
351 $this->purgeThumbnails( $options );
352 $this->purgeDescriptionPage();
355 function purgeDescriptionPage() {
358 $url = $this->repo
->getDescriptionRenderUrl( $this->getName(), $wgContLang->getCode() );
359 $key = $this->repo
->getLocalCacheKey( 'RemoteFileDescription', 'url', md5( $url ) );
361 ObjectCache
::getMainWANInstance()->delete( $key );
365 * @param array $options
367 function purgeThumbnails( $options = array() ) {
368 $key = $this->repo
->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $this->getName() );
369 ObjectCache
::getMainWANInstance()->delete( $key );
371 $files = $this->getThumbnails();
372 // Give media handler a chance to filter the purge list
373 $handler = $this->getHandler();
375 $handler->filterThumbnailPurgeList( $files, $options );
378 $dir = $this->getThumbPath( $this->getName() );
379 $purgeList = array();
380 foreach ( $files as $file ) {
381 $purgeList[] = "{$dir}{$file}";
384 # Delete the thumbnails
385 $this->repo
->quickPurgeBatch( $purgeList );
386 # Clear out the thumbnail directory if empty
387 $this->repo
->quickCleanDir( $dir );
391 * The thumbnail is created on the foreign server and fetched over internet
395 public function isTransformedLocally() {