Simplify things by using wfMessage() instead of wfMsg() et al.
[lhc/web/wiklou.git] / includes / media / Generic.php
index fb8f257..5cd5a20 100644 (file)
@@ -24,6 +24,8 @@ abstract class MediaHandler {
        /**
         * Get a MediaHandler for a given MIME type from the instance cache
         *
+        * @param $type string
+        *
         * @return MediaHandler
         */
        static function getHandler( $type ) {
@@ -52,16 +54,23 @@ abstract class MediaHandler {
         * Validate a thumbnail parameter at parse time.
         * Return true to accept the parameter, and false to reject it.
         * If you return false, the parser will do something quiet and forgiving.
+        *
+        * @param $name
+        * @param $value
         */
        abstract function validateParam( $name, $value );
 
        /**
         * Merge a parameter array into a string appropriate for inclusion in filenames
+        *
+        * @param $params array
         */
        abstract function makeParamString( $params );
 
        /**
         * Parse a param string made with makeParamString back into an array
+        *
+        * @param $str string
         */
        abstract function parseParamString( $str );
 
@@ -69,6 +78,8 @@ abstract class MediaHandler {
         * Changes the parameter array as necessary, ready for transformation.
         * Should be idempotent.
         * Returns false if the parameters are unacceptable and the transform should fail
+        * @param $image
+        * @param $params
         */
        abstract function normaliseParams( $image, &$params );
 
@@ -137,6 +148,8 @@ abstract class MediaHandler {
 
        /**
         * Get a string describing the type of metadata, for display purposes.
+        *
+        * @return string
         */
        function getMetadataType( $image ) { return false; }
 
@@ -148,7 +161,7 @@ abstract class MediaHandler {
         * MediaHanlder::METADATA_COMPATIBLE if metadata is old but backwards
         * compatible (which may or may not trigger a metadata reload).
         */
-       function isMetadataValid( $image, $metadata ) { 
+       function isMetadataValid( $image, $metadata ) {
                return self::METADATA_GOOD;
        }
 
@@ -187,6 +200,8 @@ abstract class MediaHandler {
         * @param $dstUrl String: destination URL to use in output HTML
         * @param $params Array: arbitrary set of parameters validated by $this->validateParam()
         * @param $flags Integer: a bitfield, may contain self::TRANSFORM_LATER
+        *
+        * @return MediaTransformOutput
         */
        abstract function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 );
 
@@ -197,14 +212,14 @@ abstract class MediaHandler {
        function getThumbType( $ext, $mime, $params = null ) {
                $magic = MimeMagic::singleton();
                if ( !$ext || $magic->isMatchingExtension( $ext, $mime ) === false ) {
-                       // The extension is not valid for this mime type and we do 
+                       // The extension is not valid for this mime type and we do
                        // recognize the mime type
                        $extensions = $magic->getExtensionsForType( $mime );
                        if ( $extensions ) {
                                return array( strtok( $extensions, ' ' ), $mime );
                        }
                }
-               
+
                // The extension is correct (true) or the mime type is unknown to
                // MediaWiki (null)
                return array( $ext, $mime );
@@ -344,12 +359,12 @@ abstract class MediaHandler {
        /**
         * This is used to generate an array element for each metadata value
         * That array is then used to generate the table of metadata values
-        * on the image page 
+        * on the image page
         *
         * @param &$array Array An array containing elements for each type of visibility
         * and each of those elements being an array of metadata items. This function adds
         * a value to that array.
-        * @param $visibility string ('visible' or 'collapsed') if this value is hidden
+        * @param $visbility string ('visible' or 'collapsed') if this value is hidden
         * by default.
         * @param $type String type of metadata tag (currently always 'exif')
         * @param $id String the name of the metadata tag (like 'artist' for example).
@@ -365,17 +380,17 @@ abstract class MediaHandler {
         * Note, everything here is passed through the parser later on (!)
         */
        protected static function addMeta( &$array, $visibility, $type, $id, $value, $param = false ) {
-               $msgName = "$type-$id";
-               if ( wfEmptyMsg( $msgName ) ) {
+               $msg = wfMessage( "$type-$id", $param );
+               if ( $msg->exists() ) {
+                       $name = $msg->text();
+               } else {
                        // This is for future compatibility when using instant commons.
-                       // So as to not display as ugly a name if a new metadata 
+                       // So as to not display as ugly a name if a new metadata
                        // property is defined that we don't know about
                        // (not a major issue since such a property would be collapsed
                        // by default).
                        wfDebug( __METHOD__ . ' Unknown metadata name: ' . $id . "\n" );
                        $name = wfEscapeWikiText( $id );
-               } else {
-                       $name = wfMsg( $msgName, $param );
                }
                $array[$visibility][] = array(
                        'id' => "$type-$id",
@@ -389,10 +404,7 @@ abstract class MediaHandler {
         * @return string
         */
        function getShortDesc( $file ) {
-               global $wgLang;
-               $nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $file->getSize() ) );
-               return "$nbytes";
+               return wfMessage( 'nbytes' )->numParams( $file->getSize() )->escaped();
        }
 
        /**
@@ -400,11 +412,9 @@ abstract class MediaHandler {
         * @return string
         */
        function getLongDesc( $file ) {
-               global $wgUser;
-               $sk = $wgUser->getSkin();
-               return wfMsgExt( 'file-info', 'parseinline',
-                       $sk->formatSize( $file->getSize() ),
-                       $file->getMimeType() );
+               global $wgLang;
+               return wfMessage( 'file-info', $wgLang->formatSize( $file->getSize() ),
+                       $file->getMimeType() )->parse();
        }
 
        /**
@@ -412,10 +422,7 @@ abstract class MediaHandler {
         * @return string
         */
        static function getGeneralShortDesc( $file ) {
-               global $wgLang;
-               $nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $file->getSize() ) );
-               return "$nbytes";
+               return wfMessage( 'nbytes' )->numParams( $file->getSize() )->escaped();
        }
 
        /**
@@ -423,11 +430,27 @@ abstract class MediaHandler {
         * @return string
         */
        static function getGeneralLongDesc( $file ) {
-               global $wgUser;
-               $sk = $wgUser->getSkin();
-               return wfMsgExt( 'file-info', 'parseinline',
-                       $sk->formatSize( $file->getSize() ),
-                       $file->getMimeType() );
+               global $wgLang;
+               return wfMessage( 'file-info', $wgLang->formatSize( $file->getSize() ),
+                       $file->getMimeType() )->parse();
+       }
+
+       /**
+        * Calculate the largest thumbnail width for a given original file size
+        * such that the thumbnail's height is at most $maxHeight.
+        * @param $boxWidth Integer Width of the thumbnail box.
+        * @param $boxHeight Integer Height of the thumbnail box.
+        * @param $maxHeight Integer Maximum height expected for the thumbnail.
+        * @return Integer.
+        */
+       public static function fitBoxWidth( $boxWidth, $boxHeight, $maxHeight ) {
+               $idealWidth = $boxWidth * $maxHeight / $boxHeight;
+               $roundedUp = ceil( $idealWidth );
+               if( round( $roundedUp * $boxHeight / $boxWidth ) > $maxHeight ) {
+                       return floor( $idealWidth );
+               } else {
+                       return $roundedUp;
+               }
        }
 
        function getDimensionsString( $file ) {
@@ -442,10 +465,10 @@ abstract class MediaHandler {
        /**
         * File validation hook called on upload.
         *
-        * If the file at the given local path is not valid, or its MIME type does not 
+        * If the file at the given local path is not valid, or its MIME type does not
         * match the handler class, a Status object should be returned containing
         * relevant errors.
-        * 
+        *
         * @param $fileName The local path to the file.
         * @return Status object
         */
@@ -465,10 +488,17 @@ abstract class MediaHandler {
                if( file_exists( $dstPath ) ) {
                        $thumbstat = stat( $dstPath );
                        if( $thumbstat['size'] == 0 || $retval != 0 ) {
-                               wfDebugLog( 'thumbnail',
-                                       sprintf( 'Removing bad %d-byte thumbnail "%s"',
-                                               $thumbstat['size'], $dstPath ) );
-                               unlink( $dstPath );
+                               $result = unlink( $dstPath );
+
+                               if ( $result ) {
+                                       wfDebugLog( 'thumbnail',
+                                               sprintf( 'Removing bad %d-byte thumbnail "%s". unlink() succeeded',
+                                                       $thumbstat['size'], $dstPath ) );
+                               } else {
+                                       wfDebugLog( 'thumbnail',
+                                               sprintf( 'Removing bad %d-byte thumbnail "%s". unlink() failed',
+                                                       $thumbstat['size'], $dstPath ) );
+                               }
                                return true;
                        }
                }
@@ -559,13 +589,44 @@ abstract class ImageHandler extends MediaHandler {
 
                $srcWidth = $image->getWidth( $params['page'] );
                $srcHeight = $image->getHeight( $params['page'] );
+
                if ( isset( $params['height'] ) && $params['height'] != -1 ) {
+                       # Height & width were both set
                        if ( $params['width'] * $srcHeight > $params['height'] * $srcWidth ) {
-                               $params['width'] = wfFitBoxWidth( $srcWidth, $srcHeight, $params['height'] );
+                               # Height is the relative smaller dimension, so scale width accordingly
+                               $params['width'] = self::fitBoxWidth( $srcWidth, $srcHeight, $params['height'] );
+
+                               if ( $params['width'] == 0 ) {
+                                       # Very small image, so we need to rely on client side scaling :(
+                                       $params['width'] = 1;
+                               }
+
+                               $params['physicalWidth'] = $params['width'];
+                       } else {
+                               # Height was crap, unset it so that it will be calculated later
+                               unset( $params['height'] );
                        }
                }
-               $params['height'] = File::scaleHeight( $srcWidth, $srcHeight, $params['width'] );
-               if ( !$this->validateThumbParams( $params['width'], $params['height'], $srcWidth, $srcHeight, $mimeType ) ) {
+
+               if ( !isset( $params['physicalWidth'] ) ) {
+                       # Passed all validations, so set the physicalWidth
+                       $params['physicalWidth'] = $params['width'];
+               }
+
+               # Because thumbs are only referred to by width, the height always needs
+               # to be scaled by the width to keep the thumbnail sizes consistent,
+               # even if it was set inside the if block above
+               $params['physicalHeight'] = File::scaleHeight( $srcWidth, $srcHeight,
+                       $params['physicalWidth'] );
+
+               # Set the height if it was not validated in the if block higher up
+               if ( !isset( $params['height'] ) || $params['height'] == -1 ) {
+                       $params['height'] = $params['physicalHeight'];
+               }
+
+
+               if ( !$this->validateThumbParams( $params['physicalWidth'],
+                               $params['physicalHeight'], $srcWidth, $srcHeight, $mimeType ) ) {
                        return false;
                }
                return true;
@@ -602,6 +663,10 @@ abstract class ImageHandler extends MediaHandler {
                }
 
                $height = File::scaleHeight( $srcWidth, $srcHeight, $width );
+               if ( $height == 0 ) {
+                       # Force height to be at least 1 pixel
+                       $height = 1;
+               }
                return true;
        }
 
@@ -639,10 +704,8 @@ abstract class ImageHandler extends MediaHandler {
         * @return string
         */
        function getShortDesc( $file ) {
-               global $wgLang;
-               $nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $file->getSize() ) );
-               $widthheight = wfMsgHtml( 'widthheight', $wgLang->formatNum( $file->getWidth() ) ,$wgLang->formatNum( $file->getHeight() ) );
+               $nbytes = wfMessage( 'nbytes' )->numParams( $file->getSize() )->escaped();
+               $widthheight = wfMessage( 'widthheight' )->numParams( $file->getWidth(), $file->getHeight() )->escaped();
 
                return "$widthheight ($nbytes)";
        }
@@ -655,18 +718,13 @@ abstract class ImageHandler extends MediaHandler {
                global $wgLang;
                $pages = $file->pageCount();
                if ( $pages === false || $pages <= 1 ) {
-                       $msg = wfMsgExt('file-info-size', 'parseinline',
-                               $wgLang->formatNum( $file->getWidth() ),
-                               $wgLang->formatNum( $file->getHeight() ),
-                               $wgLang->formatSize( $file->getSize() ),
-                               $file->getMimeType() );
+                       $msg = wfMessage( 'file-info-size' )->numParams( $file->getWidth(),
+                               $file->getHeight() )->params( $wgLang->formatSize( $file->getSize() ),
+                               $file->getMimeType() )->parse();
                } else {
-                       $msg = wfMsgExt('file-info-size-pages', 'parseinline',
-                               $wgLang->formatNum( $file->getWidth() ),
-                               $wgLang->formatNum( $file->getHeight() ),
-                               $wgLang->formatSize( $file->getSize() ),
-                               $file->getMimeType(),
-                               $wgLang->formatNum( $pages ) );
+                       $msg = wfMessage( 'file-info-size-pages' )->numParams( $file->getWidth(),
+                               $file->getHeight() )->params( $wgLang->formatSize( $file->getSize() ),
+                               $file->getMimeType() )->numParams( $pages )->parse();
                }
                return $msg;
        }
@@ -676,16 +734,11 @@ abstract class ImageHandler extends MediaHandler {
         * @return string
         */
        function getDimensionsString( $file ) {
-               global $wgLang;
                $pages = $file->pageCount();
-               $width = $wgLang->formatNum( $file->getWidth() );
-               $height = $wgLang->formatNum( $file->getHeight() );
-               $pagesFmt = $wgLang->formatNum( $pages );
-
                if ( $pages > 1 ) {
-                       return wfMsgExt( 'widthheightpage', 'parsemag', $width, $height, $pagesFmt );
+                       return wfMessage( 'widthheightpage' )->numParams( $file->getWidth(), $file->getHeight(), $pages )->text();
                } else {
-                       return wfMsg( 'widthheight', $width, $height );
+                       return wfMessage( 'widthheight' )->numParams( $file->getWidth(), $file->getHeight() )->text();
                }
        }
 }