MediaWiki master
ForeignAPIFile.php
Go to the documentation of this file.
1<?php
22
23use MediaHandler;
31
37class ForeignAPIFile extends File {
39 private $mExists;
41 private $mInfo;
42
44 protected $repoClass = ForeignAPIRepo::class;
45
52 public function __construct( $title, $repo, $info, $exists = false ) {
53 parent::__construct( $title, $repo );
54
55 $this->mInfo = $info;
56 $this->mExists = $exists;
57
58 $this->assertRepoDefined();
59 }
60
66 public static function newFromTitle( Title $title, $repo ) {
67 $data = $repo->fetchImageQuery( [
68 'titles' => 'File:' . $title->getDBkey(),
69 'iiprop' => self::getProps(),
70 'prop' => 'imageinfo',
71 'iimetadataversion' => MediaHandler::getMetadataVersion(),
72 / extmetadata is language-dependent, accessing the current language here
73 / would be problematic, so we just get them all
74 'iiextmetadatamultilang' => 1,
75 ] );
76
77 $info = $repo->getImageInfo( $data );
78
79 if ( $info ) {
80 $lastRedirect = count( $data['query']['redirects'] ?? [] ) - 1;
81 if ( $lastRedirect >= 0 ) {
82 / @phan-suppress-next-line PhanTypeArraySuspiciousNullable
83 $newtitle = Title::newFromText( $data['query']['redirects'][$lastRedirect]['to'] );
84 $img = new self( $newtitle, $repo, $info, true );
85 $img->redirectedFrom( $title->getDBkey() );
86 } else {
87 $img = new self( $title, $repo, $info, true );
88 }
89
90 return $img;
91 } else {
92 return null;
93 }
94 }
95
100 public static function getProps() {
101 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
102 }
103
107 public function getRepo() {
108 return $this->repo;
109 }
110
111 / Dummy functions...
112
116 public function exists() {
117 return $this->mExists;
118 }
119
123 public function getPath() {
124 return false;
125 }
126
132 public function transform( $params, $flags = 0 ) {
133 if ( !$this->canRender() ) {
134 / show icon
135 return parent::transform( $params, $flags );
136 }
137
138 / Note, the this->canRender() check above implies
139 / that we have a handler, and it can do makeParamString.
140 $otherParams = $this->handler->makeParamString( $params );
141 $width = $params['width'] ?? -1;
142 $height = $params['height'] ?? -1;
143 $thumbUrl = false;
144
145 if ( $width > 0 || $height > 0 ) {
146 / Only query the remote if there are dimensions
147 $thumbUrl = $this->repo->getThumbUrlFromCache(
148 $this->getName(),
149 $width,
150 $height,
151 $otherParams
152 );
153 } elseif ( $this->getMediaType() === MEDIATYPE_AUDIO ) {
154 / This has no dimensions, but we still need to pass a value to getTransform()
155 $thumbUrl = '/';
156 }
157 if ( $thumbUrl === false ) {
158 global $wgLang;
159
160 return $this->repo->getThumbError(
161 $this->getName(),
162 $width,
163 $height,
164 $otherParams,
165 $wgLang->getCode()
166 );
167 }
168
169 return $this->handler->getTransform( $this, 'bogus', $thumbUrl, $params );
170 }
171
172 / Info we can get from API...
173
178 public function getWidth( $page = 1 ) {
179 return (int)( $this->mInfo['width'] ?? 0 );
180 }
181
186 public function getHeight( $page = 1 ) {
187 return (int)( $this->mInfo['height'] ?? 0 );
188 }
189
193 public function getMetadata() {
194 if ( isset( $this->mInfo['metadata'] ) ) {
195 return serialize( self::parseMetadata( $this->mInfo['metadata'] ) );
196 }
197
198 return false;
199 }
200
201 public function getMetadataArray(): array {
202 if ( isset( $this->mInfo['metadata'] ) ) {
203 return self::parseMetadata( $this->mInfo['metadata'] );
204 }
205
206 return [];
207 }
208
213 public function getExtendedMetadata() {
214 return $this->mInfo['extmetadata'] ?? null;
215 }
216
221 public static function parseMetadata( $metadata ) {
222 if ( !is_array( $metadata ) ) {
223 return [ '_error' => $metadata ];
224 }
225 '@phan-var array[] $metadata';
226 $ret = [];
227 foreach ( $metadata as $meta ) {
228 $ret[$meta['name']] = self::parseMetadataValue( $meta['value'] );
229 }
230
231 return $ret;
232 }
233
238 private static function parseMetadataValue( $metadata ) {
239 if ( !is_array( $metadata ) ) {
240 return $metadata;
241 }
242 '@phan-var array[] $metadata';
243 $ret = [];
244 foreach ( $metadata as $meta ) {
245 $ret[$meta['name']] = self::parseMetadataValue( $meta['value'] );
246 }
247
248 return $ret;
249 }
250
254 public function getSize() {
255 return isset( $this->mInfo['size'] ) ? intval( $this->mInfo['size'] ) : null;
256 }
257
261 public function getUrl() {
262 return isset( $this->mInfo['url'] ) ? strval( $this->mInfo['url'] ) : null;
263 }
264
272 public function getDescriptionShortUrl() {
273 if ( isset( $this->mInfo['descriptionshorturl'] ) ) {
274 return $this->mInfo['descriptionshorturl'];
275 } elseif ( isset( $this->mInfo['pageid'] ) ) {
276 $url = $this->repo->makeUrl( [ 'curid' => $this->mInfo['pageid'] ] );
277 if ( $url !== false ) {
278 return $url;
279 }
280 }
281 return null;
282 }
283
284 public function getUploader( int $audience = self::FOR_PUBLIC, ?Authority $performer = null ): ?UserIdentity {
285 if ( isset( $this->mInfo['user'] ) ) {
286 return UserIdentityValue::newExternal( $this->getRepoName(), $this->mInfo['user'] );
287 }
288 return null;
289 }
290
296 public function getDescription( $audience = self::FOR_PUBLIC, ?Authority $performer = null ) {
297 return isset( $this->mInfo['comment'] ) ? strval( $this->mInfo['comment'] ) : null;
298 }
299
303 public function getSha1() {
304 return isset( $this->mInfo['sha1'] )
305 ? \Wikimedia\base_convert( strval( $this->mInfo['sha1'] ), 16, 36, 31 )
306 : null;
307 }
308
312 public function getTimestamp() {
313 return wfTimestamp( TS_MW,
314 isset( $this->mInfo['timestamp'] )
315 ? strval( $this->mInfo['timestamp'] )
316 : null
317 );
318 }
319
323 public function getMimeType() {
324 if ( !isset( $this->mInfo['mime'] ) ) {
325 $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
326 $this->mInfo['mime'] = $magic->getMimeTypeFromExtensionOrNull( $this->getExtension() );
327 }
328
329 return $this->mInfo['mime'];
330 }
331
335 public function getMediaType() {
336 if ( isset( $this->mInfo['mediatype'] ) ) {
337 return $this->mInfo['mediatype'];
338 }
339 $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
340
341 return $magic->getMediaType( null, $this->getMimeType() );
342 }
343
347 public function getDescriptionUrl() {
348 return $this->mInfo['descriptionurl'] ?? false;
349 }
350
356 public function getThumbPath( $suffix = '' ) {
357 if ( !$this->repo->canCacheThumbs() ) {
358 return null;
359 }
360
361 $path = $this->repo->getZonePath( 'thumb' ) . '/' . $this->getHashPath();
362 if ( $suffix ) {
363 $path .= $suffix . '/';
364 }
365 return $path;
366 }
367
371 protected function getThumbnails() {
372 $dir = $this->getThumbPath( $this->getName() );
373 $iter = $this->repo->getBackend()->getFileList( [ 'dir' => $dir ] );
374
375 $files = [];
376 if ( $iter ) {
377 foreach ( $iter as $file ) {
378 $files[] = $file;
379 }
380 }
381
382 return $files;
383 }
384
385 public function purgeCache( $options = [] ) {
386 $this->purgeThumbnails( $options );
387 $this->purgeDescriptionPage();
388 }
389
390 private function purgeDescriptionPage() {
391 $services = MediaWikiServices::getInstance();
392 $langCode = $services->getContentLanguageCode()->toString();
393
394 / Key must match File::getDescriptionText
395 $key = $this->repo->getLocalCacheKey( 'file-remote-description', $langCode, md5( $this->getName() ) );
396 $services->getMainWANObjectCache()->delete( $key );
397 }
398
402 public function purgeThumbnails( $options = [] ) {
403 $key = $this->repo->getLocalCacheKey( 'file-thumb-url', sha1( $this->getName() ) );
404 MediaWikiServices::getInstance()->getMainWANObjectCache()->delete( $key );
405
406 $files = $this->getThumbnails();
407 / Give media handler a chance to filter the purge list
408 $handler = $this->getHandler();
409 if ( $handler ) {
410 $handler->filterThumbnailPurgeList( $files, $options );
411 }
412
413 $dir = $this->getThumbPath( $this->getName() );
414 $purgeList = [];
415 foreach ( $files as $file ) {
416 $purgeList[] = "{$dir}{$file}";
417 }
418
419 # Delete the thumbnails
420 $this->repo->quickPurgeBatch( $purgeList );
421 # Clear out the thumbnail directory if empty
422 $this->repo->quickCleanDir( $dir );
423 }
424
430 public function isTransformedLocally() {
431 return false;
432 }
433}
434
436class_alias( ForeignAPIFile::class, 'ForeignAPIFile' );
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgLang
Definition Setup.php:562
if(!defined('MW_SETUP_CALLBACK'))
Definition WebStart.php:81
Base media handler class.
Base class for the output of MediaHandler::doTransform() and File::transform().
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:93
FileRepo LocalRepo ForeignAPIRepo false $repo
Some member variables can be lazy-initialised using __get().
Definition File.php:140
canRender()
Checks if the output of transform() for this file is likely to be valid.
Definition File.php:903
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
Definition File.php:2554
Title string false $title
Definition File.php:143
getName()
Return the name of this file.
Definition File.php:361
Foreign file accessible through api.php requests.
__construct( $title, $repo, $info, $exists=false)
getDescription( $audience=self::FOR_PUBLIC, ?Authority $performer=null)
isTransformedLocally()
The thumbnail is created on the foreign server and fetched over internet.
getDescriptionShortUrl()
Get short description URL for a file based on the foreign API response, or if unavailable,...
static newFromTitle(Title $title, $repo)
getThumbPath( $suffix='')
Only useful if we're locally caching thumbs anyway...
getMetadataArray()
Get the unserialized handler-specific metadata STUB.
purgeCache( $options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
static getProps()
Get the property string for iiprop and aiprop.
getUploader(int $audience=self::FOR_PUBLIC, ?Authority $performer=null)
Get the identity of the file uploader.
A foreign repository for a remote MediaWiki accessible through api.php requests.
Service locator for MediaWiki core services.
Represents a title within MediaWiki.
Definition Title.php:78
getDBkey()
Get the main part with underscores.
Definition Title.php:1031
Value object representing a user's identity.
This interface represents the authority associated with the current execution context,...
Definition Authority.php:37
Interface for objects representing user identity.
const MEDIATYPE_AUDIO
Definition defines.php:33

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant