Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / media / GIFHandler.php
blobdc56414670e002b0291223892508d5637e1c97af
1 <?php
2 /**
3 * Handler for GIF images.
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
20 * @file
21 * @ingroup Media
24 use MediaWiki\Context\IContextSource;
25 use MediaWiki\MainConfigNames;
26 use MediaWiki\MediaWikiServices;
27 use Wikimedia\RequestTimeout\TimeoutException;
29 /**
30 * Handler for GIF images.
32 * @ingroup Media
34 class GIFHandler extends BitmapHandler {
35 /**
36 * Value to store in img_metadata if there was error extracting metadata
38 private const BROKEN_FILE = '0';
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() );
49 return [ 'metadata' => [ '_error' => self::BROKEN_FILE ] ];
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 ]
63 /**
64 * @param File $image
65 * @param IContextSource|false $context
66 * @return array[]|false
68 public function formatMetadata( $image, $context = false ) {
69 $meta = $this->getCommonMetaArray( $image );
70 if ( !$meta ) {
71 return false;
74 return $this->formatMetadataHelper( $meta, $context );
77 /**
78 * Return the standard metadata elements for #filemetadata parser func.
79 * @param File $image
80 * @return array
82 public function getCommonMetaArray( File $image ) {
83 $meta = $image->getMetadataArray();
84 if ( !isset( $meta['metadata'] ) ) {
85 return [];
87 unset( $meta['metadata']['_MW_GIF_VERSION'] );
89 return $meta['metadata'];
92 /**
93 * @todo Add unit tests
95 * @param File $image
96 * @return int
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'];
103 return $image->getWidth() * $image->getHeight();
107 * @param File $image
108 * @return bool
110 public function isAnimatedImage( $image ) {
111 $metadata = $image->getMetadataArray();
112 if ( isset( $metadata['frameCount'] ) && $metadata['frameCount'] > 1 ) {
113 return true;
116 return false;
120 * We cannot animate thumbnails that are bigger than a particular size
121 * @param File $file
122 * @return bool
124 public function canAnimateThumbnail( $file ) {
125 $maxAnimatedGifArea = MediaWikiServices::getInstance()->getMainConfig()
126 ->get( MainConfigNames::MaxAnimatedGifArea );
128 return $this->getImageArea( $file ) <= $maxAnimatedGifArea;
131 public function getMetadataType( $image ) {
132 return 'parsed-gif';
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;
142 if ( !$data || isset( $data['_error'] ) ) {
143 wfDebug( __METHOD__ . " invalid GIF metadata" );
145 return self::METADATA_BAD;
148 if ( !isset( $data['metadata']['_MW_GIF_VERSION'] )
149 || $data['metadata']['_MW_GIF_VERSION'] !== GIFMetadataExtractor::VERSION
151 wfDebug( __METHOD__ . " old but compatible GIF metadata" );
153 return self::METADATA_COMPATIBLE;
156 return self::METADATA_GOOD;
160 * @param File $image
161 * @return string
163 public function getLongDesc( $image ) {
164 global $wgLang;
166 $original = parent::getLongDesc( $image );
168 $metadata = $image->getMetadataArray();
170 if ( !$metadata || isset( $metadata['_error'] ) || $metadata['frameCount'] <= 0 ) {
171 return $original;
174 /* Preserve original image info string, but strip the last char ')' so we can add even more */
175 $info = [];
176 $info[] = $original;
178 if ( $metadata['looped'] ) {
179 $info[] = wfMessage( 'file-info-gif-looped' )->parse();
182 if ( $metadata['frameCount'] > 1 ) {
183 $info[] = wfMessage( 'file-info-gif-frames' )->numParams( $metadata['frameCount'] )->parse();
186 if ( $metadata['duration'] ) {
187 $info[] = $wgLang->formatTimePeriod( $metadata['duration'] );
190 return $wgLang->commaList( $info );
194 * Return the duration of the GIF file.
196 * Shown in the &query=imageinfo&iiprop=size api query.
198 * @param File $file
199 * @return float The duration of the file.
201 public function getLength( $file ) {
202 $metadata = $file->getMetadataArray();
204 if ( !$metadata || !isset( $metadata['duration'] ) || !$metadata['duration'] ) {
205 return 0.0;
207 return (float)$metadata['duration'];