MediaWiki REL1_31
ForeignAPIFile.php
Go to the documentation of this file.
1<?php
30class ForeignAPIFile extends File {
32 private $mExists;
34 private $mInfo = [];
35
36 protected $repoClass = ForeignApiRepo::class;
37
44 function __construct( $title, $repo, $info, $exists = false ) {
45 parent::__construct( $title, $repo );
46
47 $this->mInfo = $info;
48 $this->mExists = $exists;
49
50 $this->assertRepoDefined();
51 }
52
58 static function newFromTitle( Title $title, $repo ) {
59 $data = $repo->fetchImageQuery( [
60 'titles' => 'File:' . $title->getDBkey(),
61 'iiprop' => self::getProps(),
62 'prop' => 'imageinfo',
63 'iimetadataversion' => MediaHandler::getMetadataVersion(),
64 // extmetadata is language-dependant, accessing the current language here
65 // would be problematic, so we just get them all
66 'iiextmetadatamultilang' => 1,
67 ] );
68
69 $info = $repo->getImageInfo( $data );
70
71 if ( $info ) {
72 $lastRedirect = isset( $data['query']['redirects'] )
73 ? count( $data['query']['redirects'] ) - 1
74 : -1;
75 if ( $lastRedirect >= 0 ) {
76 $newtitle = Title::newFromText( $data['query']['redirects'][$lastRedirect]['to'] );
77 $img = new self( $newtitle, $repo, $info, true );
78 if ( $img ) {
79 $img->redirectedFrom( $title->getDBkey() );
80 }
81 } else {
82 $img = new self( $title, $repo, $info, true );
83 }
84
85 return $img;
86 } else {
87 return null;
88 }
89 }
90
95 static function getProps() {
96 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
97 }
98
99 // Dummy functions...
100
104 public function exists() {
105 return $this->mExists;
106 }
107
111 public function getPath() {
112 return false;
113 }
114
120 function transform( $params, $flags = 0 ) {
121 if ( !$this->canRender() ) {
122 // show icon
123 return parent::transform( $params, $flags );
124 }
125
126 // Note, the this->canRender() check above implies
127 // that we have a handler, and it can do makeParamString.
128 $otherParams = $this->handler->makeParamString( $params );
129 $width = isset( $params['width'] ) ? $params['width'] : -1;
130 $height = isset( $params['height'] ) ? $params['height'] : -1;
131
132 $thumbUrl = $this->repo->getThumbUrlFromCache(
133 $this->getName(),
134 $width,
135 $height,
136 $otherParams
137 );
138 if ( $thumbUrl === false ) {
139 global $wgLang;
140
141 return $this->repo->getThumbError(
142 $this->getName(),
143 $width,
144 $height,
145 $otherParams,
146 $wgLang->getCode()
147 );
148 }
149
150 return $this->handler->getTransform( $this, 'bogus', $thumbUrl, $params );
151 }
152
153 // Info we can get from API...
154
159 public function getWidth( $page = 1 ) {
160 return isset( $this->mInfo['width'] ) ? intval( $this->mInfo['width'] ) : 0;
161 }
162
167 public function getHeight( $page = 1 ) {
168 return isset( $this->mInfo['height'] ) ? intval( $this->mInfo['height'] ) : 0;
169 }
170
174 public function getMetadata() {
175 if ( isset( $this->mInfo['metadata'] ) ) {
176 return serialize( self::parseMetadata( $this->mInfo['metadata'] ) );
177 }
178
179 return null;
180 }
181
186 public function getExtendedMetadata() {
187 if ( isset( $this->mInfo['extmetadata'] ) ) {
188 return $this->mInfo['extmetadata'];
189 }
190
191 return null;
192 }
193
198 public static function parseMetadata( $metadata ) {
199 if ( !is_array( $metadata ) ) {
200 return $metadata;
201 }
202 $ret = [];
203 foreach ( $metadata as $meta ) {
204 $ret[$meta['name']] = self::parseMetadata( $meta['value'] );
205 }
206
207 return $ret;
208 }
209
213 public function getSize() {
214 return isset( $this->mInfo['size'] ) ? intval( $this->mInfo['size'] ) : null;
215 }
216
220 public function getUrl() {
221 return isset( $this->mInfo['url'] ) ? strval( $this->mInfo['url'] ) : null;
222 }
223
231 public function getDescriptionShortUrl() {
232 if ( isset( $this->mInfo['descriptionshorturl'] ) ) {
233 return $this->mInfo['descriptionshorturl'];
234 } elseif ( isset( $this->mInfo['pageid'] ) ) {
235 $url = $this->repo->makeUrl( [ 'curid' => $this->mInfo['pageid'] ] );
236 if ( $url !== false ) {
237 return $url;
238 }
239 }
240 return null;
241 }
242
247 public function getUser( $type = 'text' ) {
248 if ( $type == 'text' ) {
249 return isset( $this->mInfo['user'] ) ? strval( $this->mInfo['user'] ) : null;
250 } else {
251 return 0; // What makes sense here, for a remote user?
252 }
253 }
254
260 public function getDescription( $audience = self::FOR_PUBLIC, User $user = null ) {
261 return isset( $this->mInfo['comment'] ) ? strval( $this->mInfo['comment'] ) : null;
262 }
263
267 function getSha1() {
268 return isset( $this->mInfo['sha1'] )
269 ? Wikimedia\base_convert( strval( $this->mInfo['sha1'] ), 16, 36, 31 )
270 : null;
271 }
272
276 function getTimestamp() {
277 return wfTimestamp( TS_MW,
278 isset( $this->mInfo['timestamp'] )
279 ? strval( $this->mInfo['timestamp'] )
280 : null
281 );
282 }
283
287 function getMimeType() {
288 if ( !isset( $this->mInfo['mime'] ) ) {
289 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
290 $this->mInfo['mime'] = $magic->guessTypesForExtension( $this->getExtension() );
291 }
292
293 return $this->mInfo['mime'];
294 }
295
299 function getMediaType() {
300 if ( isset( $this->mInfo['mediatype'] ) ) {
301 return $this->mInfo['mediatype'];
302 }
303 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
304
305 return $magic->getMediaType( null, $this->getMimeType() );
306 }
307
311 function getDescriptionUrl() {
312 return isset( $this->mInfo['descriptionurl'] )
313 ? $this->mInfo['descriptionurl']
314 : false;
315 }
316
322 function getThumbPath( $suffix = '' ) {
323 if ( $this->repo->canCacheThumbs() ) {
324 $path = $this->repo->getZonePath( 'thumb' ) . '/' . $this->getHashPath( $this->getName() );
325 if ( $suffix ) {
326 $path = $path . $suffix . '/';
327 }
328
329 return $path;
330 } else {
331 return null;
332 }
333 }
334
338 function getThumbnails() {
339 $dir = $this->getThumbPath( $this->getName() );
340 $iter = $this->repo->getBackend()->getFileList( [ 'dir' => $dir ] );
341
342 $files = [];
343 if ( $iter ) {
344 foreach ( $iter as $file ) {
345 $files[] = $file;
346 }
347 }
348
349 return $files;
350 }
351
352 function purgeCache( $options = [] ) {
353 $this->purgeThumbnails( $options );
354 $this->purgeDescriptionPage();
355 }
356
358 global $wgContLang;
359
360 $url = $this->repo->getDescriptionRenderUrl( $this->getName(), $wgContLang->getCode() );
361 $key = $this->repo->getLocalCacheKey( 'RemoteFileDescription', 'url', md5( $url ) );
362
363 ObjectCache::getMainWANInstance()->delete( $key );
364 }
365
369 function purgeThumbnails( $options = [] ) {
370 $key = $this->repo->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $this->getName() );
371 ObjectCache::getMainWANInstance()->delete( $key );
372
373 $files = $this->getThumbnails();
374 // Give media handler a chance to filter the purge list
375 $handler = $this->getHandler();
376 if ( $handler ) {
378 }
379
380 $dir = $this->getThumbPath( $this->getName() );
381 $purgeList = [];
382 foreach ( $files as $file ) {
383 $purgeList[] = "{$dir}{$file}";
384 }
385
386 # Delete the thumbnails
387 $this->repo->quickPurgeBatch( $purgeList );
388 # Clear out the thumbnail directory if empty
389 $this->repo->quickCleanDir( $dir );
390 }
391
397 public function isTransformedLocally() {
398 return false;
399 }
400}
serialize()
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:51
string $url
The URL corresponding to one of the four basic zones.
Definition File.php:117
MediaHandler $handler
Definition File.php:114
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
Definition File.php:2287
getName()
Return the name of this file.
Definition File.php:297
canRender()
Checks if the output of transform() for this file is likely to be valid.
Definition File.php:753
getExtension()
Get the file extension, e.g.
Definition File.php:311
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
Definition File.php:96
string $path
The storage path corresponding to one of the zones.
Definition File.php:126
Title string bool $title
Definition File.php:99
getHandler()
Get a MediaHandler instance for this file.
Definition File.php:1383
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
Definition File.php:1517
Foreign file accessible through api.php requests.
getThumbPath( $suffix='')
Only useful if we're locally caching thumbs anyway...
__construct( $title, $repo, $info, $exists=false)
purgeCache( $options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
isTransformedLocally()
The thumbnail is created on the foreign server and fetched over internet.
static parseMetadata( $metadata)
static newFromTitle(Title $title, $repo)
getUser( $type='text')
purgeThumbnails( $options=[])
getDescription( $audience=self::FOR_PUBLIC, User $user=null)
transform( $params, $flags=0)
getDescriptionShortUrl()
Get short description URL for a file based on the foreign API response, or if unavailable,...
static getProps()
Get the property string for iiprop and aiprop.
filterThumbnailPurgeList(&$files, $options)
Remove files from the purge list.
static getMetadataVersion()
Get metadata version.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
Definition hooks.txt:930
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
$params