56 $this->mExists = $exists;
67 $data =
$repo->fetchImageQuery( [
69 'iiprop' => self::getProps(),
70 'prop' =>
'imageinfo',
71 'iimetadataversion' => MediaHandler::getMetadataVersion(),
74 'iiextmetadatamultilang' => 1,
77 $info =
$repo->getImageInfo( $data );
80 $lastRedirect = count( $data[
'query'][
'redirects'] ?? [] ) - 1;
81 if ( $lastRedirect >= 0 ) {
83 $newtitle = Title::newFromText( $data[
'query'][
'redirects'][$lastRedirect][
'to'] );
84 $img =
new self( $newtitle,
$repo, $info, true );
101 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
117 return $this->mExists;
135 return parent::transform( $params, $flags );
140 $otherParams = $this->handler->makeParamString( $params );
141 $width = $params[
'width'] ?? -1;
142 $height = $params[
'height'] ?? -1;
145 if ( $width > 0 || $height > 0 ) {
147 $thumbUrl = $this->repo->getThumbUrlFromCache(
157 if ( $thumbUrl ===
false ) {
160 return $this->repo->getThumbError(
169 return $this->handler->getTransform( $this,
'bogus', $thumbUrl, $params );
179 return (
int)( $this->mInfo[
'width'] ?? 0 );
187 return (
int)( $this->mInfo[
'height'] ?? 0 );
194 if ( isset( $this->mInfo[
'metadata'] ) ) {
195 return serialize( self::parseMetadata( $this->mInfo[
'metadata'] ) );
202 if ( isset( $this->mInfo[
'metadata'] ) ) {
214 return $this->mInfo[
'extmetadata'] ??
null;
222 if ( !is_array( $metadata ) ) {
223 return [
'_error' => $metadata ];
225 '@phan-var array[] $metadata';
227 foreach ( $metadata as $meta ) {
228 $ret[$meta[
'name']] = self::parseMetadataValue( $meta[
'value'] );
238 private static function parseMetadataValue( $metadata ) {
239 if ( !is_array( $metadata ) ) {
242 '@phan-var array[] $metadata';
244 foreach ( $metadata as $meta ) {
245 $ret[$meta[
'name']] = self::parseMetadataValue( $meta[
'value'] );
255 return isset( $this->mInfo[
'size'] ) ? intval( $this->mInfo[
'size'] ) :
null;
262 return isset( $this->mInfo[
'url'] ) ? strval( $this->mInfo[
'url'] ) :
null;
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 ) {
285 if ( isset( $this->mInfo[
'user'] ) ) {
286 return UserIdentityValue::newExternal( $this->getRepoName(), $this->mInfo[
'user'] );
297 return isset( $this->mInfo[
'comment'] ) ? strval( $this->mInfo[
'comment'] ) :
null;
304 return isset( $this->mInfo[
'sha1'] )
305 ? \Wikimedia\base_convert( strval( $this->mInfo[
'sha1'] ), 16, 36, 31 )
314 isset( $this->mInfo[
'timestamp'] )
315 ? strval( $this->mInfo[
'timestamp'] )
324 if ( !isset( $this->mInfo[
'mime'] ) ) {
325 $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
326 $this->mInfo[
'mime'] = $magic->getMimeTypeFromExtensionOrNull( $this->getExtension() );
329 return $this->mInfo[
'mime'];
336 if ( isset( $this->mInfo[
'mediatype'] ) ) {
337 return $this->mInfo[
'mediatype'];
339 $magic = MediaWikiServices::getInstance()->getMimeAnalyzer();
341 return $magic->getMediaType(
null, $this->getMimeType() );
348 return $this->mInfo[
'descriptionurl'] ??
false;
357 if ( !$this->repo->canCacheThumbs() ) {
361 $path = $this->repo->getZonePath(
'thumb' ) .
'/' . $this->getHashPath();
363 $path .= $suffix .
'/';
372 $dir = $this->getThumbPath( $this->getName() );
373 $iter = $this->repo->getBackend()->getFileList( [
'dir' => $dir ] );
377 foreach ( $iter as $file ) {
386 $this->purgeThumbnails( $options );
387 $this->purgeDescriptionPage();
390 private function purgeDescriptionPage() {
391 $services = MediaWikiServices::getInstance();
392 $langCode = $services->getContentLanguageCode()->toString();
395 $key = $this->repo->getLocalCacheKey(
'file-remote-description', $langCode, md5( $this->getName() ) );
396 $services->getMainWANObjectCache()->delete( $key );
403 $key = $this->repo->getLocalCacheKey(
'file-thumb-url', sha1( $this->getName() ) );
404 MediaWikiServices::getInstance()->getMainWANObjectCache()->delete( $key );
406 $files = $this->getThumbnails();
408 $handler = $this->getHandler();
410 $handler->filterThumbnailPurgeList( $files, $options );
413 $dir = $this->getThumbPath( $this->getName() );
415 foreach ( $files as $file ) {
416 $purgeList[] =
"{$dir}{$file}";
419 # Delete the thumbnails
420 $this->repo->quickPurgeBatch( $purgeList );
421 # Clear out the thumbnail directory if empty
422 $this->repo->quickCleanDir( $dir );
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
if(!defined('MW_SETUP_CALLBACK'))