MediaWiki master
GIFHandler.php
Go to the documentation of this file.
1<?php
27use Wikimedia\RequestTimeout\TimeoutException;
28
38 private const BROKEN_FILE = '0';
39
40 public function getSizeAndMetadata( $state, $filename ) {
41 try {
42 $parsedGIFMetadata = BitmapMetadataHandler::GIF( $filename );
43 } catch ( TimeoutException $e ) {
44 throw $e;
45 } catch ( Exception $e ) {
46 // Broken file?
47 wfDebug( __METHOD__ . ': ' . $e->getMessage() );
48
49 return [ 'metadata' => [ '_error' => self::BROKEN_FILE ] ];
50 }
51
52 return [
53 'width' => $parsedGIFMetadata['width'],
54 'height' => $parsedGIFMetadata['height'],
55 'bits' => $parsedGIFMetadata['bits'],
56 'metadata' => array_diff_key(
57 $parsedGIFMetadata,
58 [ 'width' => true, 'height' => true, 'bits' => true ]
59 )
60 ];
61 }
62
68 public function formatMetadata( $image, $context = false ) {
69 $meta = $this->getCommonMetaArray( $image );
70 if ( !$meta ) {
71 return false;
72 }
73
74 return $this->formatMetadataHelper( $meta, $context );
75 }
76
82 public function getCommonMetaArray( File $image ) {
83 $meta = $image->getMetadataArray();
84 if ( !isset( $meta['metadata'] ) ) {
85 return [];
86 }
87 unset( $meta['metadata']['_MW_GIF_VERSION'] );
88
89 return $meta['metadata'];
90 }
91
98 public function getImageArea( $image ) {
99 $metadata = $image->getMetadataArray();
100 if ( isset( $metadata['frameCount'] ) && $metadata['frameCount'] > 0 ) {
101 return $image->getWidth() * $image->getHeight() * $metadata['frameCount'];
102 }
103 return $image->getWidth() * $image->getHeight();
104 }
105
110 public function isAnimatedImage( $image ) {
111 $metadata = $image->getMetadataArray();
112 if ( isset( $metadata['frameCount'] ) && $metadata['frameCount'] > 1 ) {
113 return true;
114 }
115
116 return false;
117 }
118
124 public function canAnimateThumbnail( $file ) {
125 $maxAnimatedGifArea = MediaWikiServices::getInstance()->getMainConfig()
126 ->get( MainConfigNames::MaxAnimatedGifArea );
127
128 return $this->getImageArea( $file ) <= $maxAnimatedGifArea;
129 }
130
131 public function getMetadataType( $image ) {
132 return 'parsed-gif';
133 }
134
135 public function isFileMetadataValid( $image ) {
136 $data = $image->getMetadataArray();
137 if ( $data === [ '_error' => self::BROKEN_FILE ] ) {
138 // Do not repetitively regenerate metadata on broken file.
139 return self::METADATA_GOOD;
140 }
141
142 if ( !$data || isset( $data['_error'] ) ) {
143 wfDebug( __METHOD__ . " invalid GIF metadata" );
144
145 return self::METADATA_BAD;
146 }
147
148 if ( !isset( $data['metadata']['_MW_GIF_VERSION'] )
149 || $data['metadata']['_MW_GIF_VERSION'] !== GIFMetadataExtractor::VERSION
150 ) {
151 wfDebug( __METHOD__ . " old but compatible GIF metadata" );
152
154 }
155
156 return self::METADATA_GOOD;
157 }
158
163 public function getLongDesc( $image ) {
164 global $wgLang;
165
166 $original = parent::getLongDesc( $image );
167
168 $metadata = $image->getMetadataArray();
169
170 if ( !$metadata || isset( $metadata['_error'] ) || $metadata['frameCount'] <= 0 ) {
171 return $original;
172 }
173
174 /* Preserve original image info string, but strip the last char ')' so we can add even more */
175 $info = [];
176 $info[] = $original;
177
178 if ( $metadata['looped'] ) {
179 $info[] = wfMessage( 'file-info-gif-looped' )->parse();
180 }
181
182 if ( $metadata['frameCount'] > 1 ) {
183 $info[] = wfMessage( 'file-info-gif-frames' )->numParams( $metadata['frameCount'] )->parse();
184 }
185
186 if ( $metadata['duration'] ) {
187 $info[] = $wgLang->formatTimePeriod( $metadata['duration'] );
188 }
189
190 return $wgLang->commaList( $info );
191 }
192
201 public function getLength( $file ) {
202 $metadata = $file->getMetadataArray();
203
204 if ( !$metadata || !isset( $metadata['duration'] ) || !$metadata['duration'] ) {
205 return 0.0;
206 }
207 return (float)$metadata['duration'];
208 }
209}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgLang
Definition Setup.php:538
Generic handler for bitmap images.
static GIF( $filename)
function for gif images.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:74
getMetadataArray()
Get the unserialized handler-specific metadata STUB.
Definition File.php:760
Handler for GIF images.
isFileMetadataValid( $image)
Check if the metadata is valid for this handler.
getImageArea( $image)
getLength( $file)
Return the duration of the GIF file.
getLongDesc( $image)
isAnimatedImage( $image)
canAnimateThumbnail( $file)
We cannot animate thumbnails that are bigger than a particular size.
formatMetadata( $image, $context=false)
getSizeAndMetadata( $state, $filename)
Get image size information and metadata array.
getMetadataType( $image)
Get a string describing the type of metadata, for display purposes.
getCommonMetaArray(File $image)
Return the standard metadata elements for #filemetadata parser func.
const METADATA_COMPATIBLE
formatMetadataHelper( $metadataArray, $context=false)
sorts the visible/invisible field.
const METADATA_GOOD
A class containing constants representing the names of configuration variables.
Service locator for MediaWiki core services.
Interface for objects which can provide a MediaWiki context on request.