New hook getOtherBlockLogLink, called in Special:IPBlockList to show links to block...
[lhc/web/wiklou.git] / includes / media / Generic.php
index c21ad79..b1c6394 100644 (file)
@@ -1,13 +1,14 @@
 <?php
-
 /**
  * Media-handling base classes and generic functionality
+ * @file
+ * @ingroup Media
  */
 
 /**
  * Base media handler class
  *
- * @addtogroup Media
+ * @ingroup Media
  */
 abstract class MediaHandler {
        const TRANSFORM_LATER = 1;
@@ -36,8 +37,14 @@ abstract class MediaHandler {
                return self::$handlers[$class];
        }
 
+       /**
+        * Get an associative array mapping magic word IDs to parameter names.
+        * Will be used by the parser to identify parameters.
+        */
+       abstract function getParamMap();
+
        /*
-        * Validate a thumbnail parameter at parse time. 
+        * 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.
         */
@@ -54,14 +61,14 @@ abstract class MediaHandler {
        abstract function parseParamString( $str );
 
        /**
-        * Changes the parameter array as necessary, ready for transformation. 
+        * Changes the parameter array as necessary, ready for transformation.
         * Should be idempotent.
         * Returns false if the parameters are unacceptable and the transform should fail
         */
        abstract function normaliseParams( $image, &$params );
 
        /**
-        * Get an image size array like that returned by getimagesize(), or false if it 
+        * Get an image size array like that returned by getimagesize(), or false if it
         * can't be determined.
         *
         * @param Image $image The image object, or false if there isn't one
@@ -90,8 +97,21 @@ abstract class MediaHandler {
         */
        function isMetadataValid( $image, $metadata ) { return true; }
 
+
+       /**
+        * Get a MediaTransformOutput object representing an alternate of the transformed
+        * output which will call an intermediary thumbnail assist script.
+        *
+        * Used when the repository has a thumbnailScriptUrl option configured.
+        *
+        * Return false to fall back to the regular getTransform().
+        */
+       function getScriptedTransform( $image, $script, $params ) {
+               return false;
+       }
+
        /**
-        * Get a MediaTransformOutput object representing the transformed output. Does not 
+        * Get a MediaTransformOutput object representing the transformed output. Does not
         * actually do the transform.
         *
         * @param Image $image The image object
@@ -104,7 +124,7 @@ abstract class MediaHandler {
        }
 
        /**
-        * Get a MediaTransformOutput object representing the transformed output. Does the 
+        * Get a MediaTransformOutput object representing the transformed output. Does the
         * transform unless $flags contains self::TRANSFORM_LATER.
         *
         * @param Image $image The image object
@@ -121,25 +141,25 @@ abstract class MediaHandler {
         */
        function getThumbType( $ext, $mime ) {
                return array( $ext, $mime );
-       }       
+       }
 
        /**
         * True if the handled types can be transformed
         */
-       function canRender() { return true; }
+       function canRender( $file ) { return true; }
        /**
-        * True if handled types cannot be displayed directly in a browser 
+        * True if handled types cannot be displayed directly in a browser
         * but can be rendered
         */
-       function mustRender() { return false; }
+       function mustRender( $file ) { return false; }
        /**
         * True if the type has multi-page capabilities
         */
-       function isMultiPage() { return false; }
+       function isMultiPage( $file ) { return false; }
        /**
         * Page count for a multi-page document, false if unsupported or unknown
         */
-       function pageCount() { return false; }
+       function pageCount( $file ) { return false; }
        /**
         * False if the handler is disabled for all files
         */
@@ -147,7 +167,7 @@ abstract class MediaHandler {
 
        /**
         * Get an associative array of page dimensions
-        * Currently "width" and "height" are understood, but this might be 
+        * Currently "width" and "height" are understood, but this might be
         * expanded in the future.
         * Returns false if unknown or if the document is not multi-page.
         */
@@ -158,14 +178,141 @@ abstract class MediaHandler {
                        'height' => $gis[1]
                );
        }
+
+       /**
+        * Generic getter for text layer.
+        * Currently overloaded by PDF and DjVu handlers
+        */
+       function getPageText( $image, $page ) {
+               return false;
+       }
+
+       /**
+        * Get an array structure that looks like this:
+        *
+        * array(
+        *    'visible' => array(
+        *       'Human-readable name' => 'Human readable value',
+        *       ...
+        *    ),
+        *    'collapsed' => array(
+        *       'Human-readable name' => 'Human readable value',
+        *       ...
+        *    )
+        * )
+        * The UI will format this into a table where the visible fields are always
+        * visible, and the collapsed fields are optionally visible.
+        *
+        * The function should return false if there is no metadata to display.
+        */
+
+       /**
+        * FIXME: I don't really like this interface, it's not very flexible
+        * I think the media handler should generate HTML instead. It can do
+        * all the formatting according to some standard. That makes it possible
+        * to do things like visual indication of grouped and chained streams
+        * in ogg container files.
+        */
+       function formatMetadata( $image ) {
+               return false;
+       }
+
+       /**
+        * @fixme document this!
+        * 'value' thingy goes into a wikitext table; it used to be escaped but
+        * that was incompatible with previous practice of customized display
+        * with wikitext formatting via messages such as 'exif-model-value'.
+        * So the escaping is taken back out, but generally this seems a confusing
+        * interface.
+        */
+       protected static function addMeta( &$array, $visibility, $type, $id, $value, $param = false ) {
+               $array[$visibility][] = array(
+                       'id' => "$type-$id",
+                       'name' => wfMsg( "$type-$id", $param ),
+                       'value' => $value
+               );
+       }
+
+       function getShortDesc( $file ) {
+               global $wgLang;
+               $nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
+                       $wgLang->formatNum( $file->getSize() ) ) . ')';
+               return "$nbytes";
+       }
+
+       function getLongDesc( $file ) {
+               global $wgUser;
+               $sk = $wgUser->getSkin();
+               return wfMsgExt( 'file-info', 'parseinline',
+                       $sk->formatSize( $file->getSize() ),
+                       $file->getMimeType() );
+       }
+       
+       static function getGeneralShortDesc( $file ) {
+               global $wgLang;
+               $nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
+                       $wgLang->formatNum( $file->getSize() ) ) . ')';
+               return "$nbytes";
+       }
+
+       static function getGeneralLongDesc( $file ) {
+               global $wgUser;
+               $sk = $wgUser->getSkin();
+               return wfMsgExt( 'file-info', 'parseinline',
+                       $sk->formatSize( $file->getSize() ),
+                       $file->getMimeType() );
+       }
+
+       function getDimensionsString( $file ) {
+               return '';
+       }
+
+       /**
+        * Modify the parser object post-transform
+        */
+       function parserTransformHook( $parser, $file ) {}
+
+       /**
+        * Check for zero-sized thumbnails. These can be generated when
+        * no disk space is available or some other error occurs
+        *
+        * @param $dstPath The location of the suspect file
+        * @param $retval Return value of some shell process, file will be deleted if this is non-zero
+        * @return true if removed, false otherwise
+        */
+       function removeBadFile( $dstPath, $retval = 0 ) {
+               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 );
+                               return true;
+                       }
+               }
+               return false;
+       }
 }
 
 /**
  * Media handler abstract base class for images
  *
- * @addtogroup Media
+ * @ingroup Media
  */
 abstract class ImageHandler extends MediaHandler {
+       function canRender( $file ) {
+               if ( $file->getWidth() && $file->getHeight() ) {
+                       return true;
+               } else {
+                       return false;
+               }
+       }
+
+       function getParamMap() {
+               return array( 'img_width' => 'width' );
+       }
+
        function validateParam( $name, $value ) {
                if ( in_array( $name, array( 'width', 'height' ) ) ) {
                        if ( $value <= 0 ) {
@@ -233,13 +380,13 @@ abstract class ImageHandler extends MediaHandler {
        function getTransform( $image, $dstPath, $dstUrl, $params ) {
                return $this->doTransform( $image, $dstPath, $dstUrl, $params, self::TRANSFORM_LATER );
        }
-       
+
        /**
         * Validate thumbnail parameters and fill in the correct height
         *
         * @param integer &$width Specified width (input/output)
         * @param integer &$height Height (output only)
-        * @return false to indicate that an error should be returned to the user. 
+        * @return false to indicate that an error should be returned to the user.
         */
        function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight, $mimeType ) {
                $width = intval( $width );
@@ -263,29 +410,11 @@ abstract class ImageHandler extends MediaHandler {
                        return false;
                }
                $url = $script . '&' . wfArrayToCGI( $this->getScriptParams( $params ) );
-               return new ThumbnailImage( $url, $params['width'], $params['height'] );
-       }
+               $page = isset( $params['page'] ) ? $params['page'] : false;
 
-       /**
-        * Check for zero-sized thumbnails. These can be generated when
-        * no disk space is available or some other error occurs
-        *
-        * @param $dstPath The location of the suspect file
-        * @param $retval Return value of some shell process, file will be deleted if this is non-zero
-        * @return true if removed, false otherwise
-        */
-       function removeBadFile( $dstPath, $retval = 0 ) {
-               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 );
-                               return true;
-                       }
+               if( $image->mustRender() || $params['width'] < $image->getWidth() ) {
+                       return new ThumbnailImage( $image, $url, $params['width'], $params['height'], $page );
                }
-               return false;
        }
 
        function getImageSize( $image, $path ) {
@@ -294,6 +423,36 @@ abstract class ImageHandler extends MediaHandler {
                wfRestoreWarnings();
                return $gis;
        }
-}
 
-?>
+       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() ) );
+
+               return "$widthheight ($nbytes)";
+       }
+
+       function getLongDesc( $file ) {
+               global $wgLang;
+               return wfMsgExt('file-info-size', 'parseinline',
+                       $wgLang->formatNum( $file->getWidth() ),
+                       $wgLang->formatNum( $file->getHeight() ),
+                       $wgLang->formatSize( $file->getSize() ),
+                       $file->getMimeType() );
+       }
+
+       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 );
+               } else {
+                       return wfMsg( 'widthheight', $width, $height );
+               }
+       }
+}