2007-04-20 12:31:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Media-handling base classes and generic functionality
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base media handler class
|
2007-04-24 06:53:31 +00:00
|
|
|
*
|
|
|
|
|
* @addtogroup Media
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract class MediaHandler {
|
|
|
|
|
const TRANSFORM_LATER = 1;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Instance cache
|
|
|
|
|
*/
|
|
|
|
|
static $handlers = array();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a MediaHandler for a given MIME type from the instance cache
|
|
|
|
|
*/
|
|
|
|
|
static function getHandler( $type ) {
|
|
|
|
|
global $wgMediaHandlers;
|
|
|
|
|
if ( !isset( $wgMediaHandlers[$type] ) ) {
|
2007-04-22 17:34:09 +00:00
|
|
|
wfDebug( __METHOD__ . ": no handler found for $type.\n");
|
2007-04-20 12:31:36 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$class = $wgMediaHandlers[$type];
|
|
|
|
|
if ( !isset( self::$handlers[$class] ) ) {
|
|
|
|
|
self::$handlers[$class] = new $class;
|
|
|
|
|
if ( !self::$handlers[$class]->isEnabled() ) {
|
|
|
|
|
self::$handlers[$class] = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return self::$handlers[$class];
|
|
|
|
|
}
|
|
|
|
|
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
/**
|
|
|
|
|
* Get an associative array mapping magic word IDs to parameter names.
|
|
|
|
|
* Will be used by the parser to identify parameters.
|
|
|
|
|
*/
|
|
|
|
|
abstract function getParamMap();
|
|
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
abstract function validateParam( $name, $value );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Merge a parameter array into a string appropriate for inclusion in filenames
|
|
|
|
|
*/
|
|
|
|
|
abstract function makeParamString( $params );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse a param string made with makeParamString back into an array
|
|
|
|
|
*/
|
|
|
|
|
abstract function parseParamString( $str );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
|
|
* can't be determined.
|
|
|
|
|
*
|
|
|
|
|
* @param Image $image The image object, or false if there isn't one
|
|
|
|
|
* @param string $fileName The filename
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
abstract function getImageSize( $image, $path );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get handler-specific metadata which will be saved in the img_metadata field.
|
|
|
|
|
*
|
|
|
|
|
* @param Image $image The image object, or false if there isn't one
|
|
|
|
|
* @param string $fileName The filename
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
function getMetadata( $image, $path ) { return ''; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a string describing the type of metadata, for display purposes.
|
|
|
|
|
*/
|
|
|
|
|
function getMetadataType( $image ) { return false; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if the metadata string is valid for this handler.
|
|
|
|
|
* If it returns false, Image will reload the metadata from the file and update the database
|
|
|
|
|
*/
|
|
|
|
|
function isMetadataValid( $image, $metadata ) { return true; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a MediaTransformOutput object representing the transformed output. Does not
|
|
|
|
|
* actually do the transform.
|
|
|
|
|
*
|
|
|
|
|
* @param Image $image The image object
|
|
|
|
|
* @param string $dstPath Filesystem destination path
|
|
|
|
|
* @param string $dstUrl Destination URL to use in output HTML
|
|
|
|
|
* @param array $params Arbitrary set of parameters validated by $this->validateParam()
|
|
|
|
|
*/
|
|
|
|
|
function getTransform( $image, $dstPath, $dstUrl, $params ) {
|
|
|
|
|
return $this->doTransform( $image, $dstPath, $dstUrl, $params, self::TRANSFORM_LATER );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a MediaTransformOutput object representing the transformed output. Does the
|
|
|
|
|
* transform unless $flags contains self::TRANSFORM_LATER.
|
|
|
|
|
*
|
|
|
|
|
* @param Image $image The image object
|
|
|
|
|
* @param string $dstPath Filesystem destination path
|
|
|
|
|
* @param string $dstUrl Destination URL to use in output HTML
|
|
|
|
|
* @param array $params Arbitrary set of parameters validated by $this->validateParam()
|
|
|
|
|
* @param integer $flags A bitfield, may contain self::TRANSFORM_LATER
|
|
|
|
|
*/
|
|
|
|
|
abstract function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the thumbnail extension and MIME type for a given source MIME type
|
|
|
|
|
* @return array thumbnail extension and MIME type
|
|
|
|
|
*/
|
|
|
|
|
function getThumbType( $ext, $mime ) {
|
|
|
|
|
return array( $ext, $mime );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* True if the handled types can be transformed
|
|
|
|
|
*/
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function canRender( $file ) { return true; }
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* True if handled types cannot be displayed directly in a browser
|
|
|
|
|
* but can be rendered
|
|
|
|
|
*/
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function mustRender( $file ) { return false; }
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* True if the type has multi-page capabilities
|
|
|
|
|
*/
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function isMultiPage( $file ) { return false; }
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* Page count for a multi-page document, false if unsupported or unknown
|
|
|
|
|
*/
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function pageCount( $file ) { return false; }
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* False if the handler is disabled for all files
|
|
|
|
|
*/
|
|
|
|
|
function isEnabled() { return true; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get an associative array of page dimensions
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
function getPageDimensions( $image, $page ) {
|
2007-05-30 21:02:32 +00:00
|
|
|
$gis = $this->getImageSize( $image, $image->getPath() );
|
2007-04-20 12:31:36 +00:00
|
|
|
return array(
|
|
|
|
|
'width' => $gis[0],
|
|
|
|
|
'height' => $gis[1]
|
|
|
|
|
);
|
|
|
|
|
}
|
2007-07-28 01:15:35 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2007-07-28 01:15:35 +00:00
|
|
|
function formatMetadata( $image, $metadata ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
|
2007-08-25 22:25:17 +00:00
|
|
|
/**
|
|
|
|
|
* @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.
|
|
|
|
|
*/
|
2007-07-28 01:15:35 +00:00
|
|
|
protected static function addMeta( &$array, $visibility, $type, $id, $value, $param = false ) {
|
|
|
|
|
$array[$visibility][] = array(
|
|
|
|
|
'id' => "$type-$id",
|
|
|
|
|
'name' => wfMsg( "$type-$id", $param ),
|
2007-08-25 22:25:17 +00:00
|
|
|
'value' => $value
|
2007-07-28 01:15:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function getShortDesc( $file ) {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
$nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
|
|
|
|
|
$wgLang->formatNum( $file->getSize() ) ) . ')';
|
2007-08-21 04:03:33 +00:00
|
|
|
return "$nbytes";
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getLongDesc( $file ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
return wfMsg( 'file-info', $sk->formatSize( $file->getSize() ), $file->getMimeType() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDimensionsString() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Modify the parser object post-transform
|
|
|
|
|
*/
|
|
|
|
|
function parserTransformHook( $parser, $file ) {}
|
2007-09-04 15:13:55 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Media handler abstract base class for images
|
2007-04-24 06:53:31 +00:00
|
|
|
*
|
|
|
|
|
* @addtogroup Media
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract class ImageHandler extends MediaHandler {
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
function canRender( $file ) {
|
|
|
|
|
if ( $file->getWidth() && $file->getHeight() ) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getParamMap() {
|
|
|
|
|
return array( 'img_width' => 'width' );
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
function validateParam( $name, $value ) {
|
|
|
|
|
if ( in_array( $name, array( 'width', 'height' ) ) ) {
|
|
|
|
|
if ( $value <= 0 ) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function makeParamString( $params ) {
|
|
|
|
|
if ( isset( $params['physicalWidth'] ) ) {
|
|
|
|
|
$width = $params['physicalWidth'];
|
2007-05-04 15:05:42 +00:00
|
|
|
} elseif ( isset( $params['width'] ) ) {
|
2007-04-20 12:31:36 +00:00
|
|
|
$width = $params['width'];
|
2007-05-03 01:05:51 +00:00
|
|
|
} else {
|
2007-05-04 15:05:42 +00:00
|
|
|
throw new MWException( 'No width specified to '.__METHOD__ );
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|
2007-04-27 09:42:58 +00:00
|
|
|
# Removed for ProofreadPage
|
|
|
|
|
#$width = intval( $width );
|
2007-04-20 12:31:36 +00:00
|
|
|
return "{$width}px";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function parseParamString( $str ) {
|
|
|
|
|
$m = false;
|
|
|
|
|
if ( preg_match( '/^(\d+)px$/', $str, $m ) ) {
|
|
|
|
|
return array( 'width' => $m[1] );
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getScriptParams( $params ) {
|
|
|
|
|
return array( 'width' => $params['width'] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function normaliseParams( $image, &$params ) {
|
|
|
|
|
$mimeType = $image->getMimeType();
|
|
|
|
|
|
|
|
|
|
if ( !isset( $params['width'] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if ( !isset( $params['page'] ) ) {
|
|
|
|
|
$params['page'] = 1;
|
|
|
|
|
}
|
|
|
|
|
$srcWidth = $image->getWidth( $params['page'] );
|
|
|
|
|
$srcHeight = $image->getHeight( $params['page'] );
|
|
|
|
|
if ( isset( $params['height'] ) && $params['height'] != -1 ) {
|
|
|
|
|
if ( $params['width'] * $srcHeight > $params['height'] * $srcWidth ) {
|
|
|
|
|
$params['width'] = wfFitBoxWidth( $srcWidth, $srcHeight, $params['height'] );
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-05-30 21:02:32 +00:00
|
|
|
$params['height'] = File::scaleHeight( $srcWidth, $srcHeight, $params['width'] );
|
2007-04-20 12:31:36 +00:00
|
|
|
if ( !$this->validateThumbParams( $params['width'], $params['height'], $srcWidth, $srcHeight, $mimeType ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a transform output object without actually doing the transform
|
|
|
|
|
*/
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight, $mimeType ) {
|
|
|
|
|
$width = intval( $width );
|
|
|
|
|
|
|
|
|
|
# Sanity check $width
|
|
|
|
|
if( $width <= 0) {
|
|
|
|
|
wfDebug( __METHOD__.": Invalid destination width: $width\n" );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if ( $srcWidth <= 0 ) {
|
|
|
|
|
wfDebug( __METHOD__.": Invalid source width: $srcWidth\n" );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-30 21:02:32 +00:00
|
|
|
$height = File::scaleHeight( $srcWidth, $srcHeight, $width );
|
2007-04-20 12:31:36 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getScriptedTransform( $image, $script, $params ) {
|
|
|
|
|
if ( !$this->normaliseParams( $image, $params ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$url = $script . '&' . wfArrayToCGI( $this->getScriptParams( $params ) );
|
2007-08-31 02:51:23 +00:00
|
|
|
$page = isset( $params['page'] ) ? $params['page'] : false;
|
|
|
|
|
return new ThumbnailImage( $image, $url, $params['width'], $params['height'], $page );
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getImageSize( $image, $path ) {
|
|
|
|
|
wfSuppressWarnings();
|
|
|
|
|
$gis = getimagesize( $path );
|
|
|
|
|
wfRestoreWarnings();
|
|
|
|
|
return $gis;
|
|
|
|
|
}
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
|
|
|
|
|
function getShortDesc( $file ) {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
$nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
|
|
|
|
|
$wgLang->formatNum( $file->getSize() ) ) . ')';
|
2007-10-30 11:57:39 +00:00
|
|
|
$widthheight = wfMsgHtml( 'widthheight', $wgLang->formatNum( $file->getWidth() ) ,$wgLang->formatNum( $file->getHeight() ) );
|
|
|
|
|
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
return "$widthheight ($nbytes)";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getLongDesc( $file ) {
|
|
|
|
|
global $wgLang;
|
2007-10-30 11:57:39 +00:00
|
|
|
return wfMsgHtml('file-info-size', $wgLang->formatNum( $file->getWidth() ), $wgLang->formatNum( $file->getHeight() ),
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
$wgLang->formatSize( $file->getSize() ), $file->getMimeType() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDimensionsString( $file ) {
|
2007-10-30 11:57:39 +00:00
|
|
|
global $wgLang;
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
$pages = $file->pageCount();
|
|
|
|
|
if ( $pages > 1 ) {
|
2007-10-30 11:57:39 +00:00
|
|
|
return wfMsg( 'widthheightpage', $wgLang->formatNum( $file->getWidth() ), $wgLang->formatNum( $file->getHeight() ), $wgLang->formatNum( $pages ) );
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
} else {
|
2007-10-30 11:57:39 +00:00
|
|
|
return wfMsg( 'widthheight', $wgLang->formatNum( $file->getWidth() ), $wgLang->formatNum( $file->getHeight() ) );
|
Basic integrated audio/video support, with Ogg implementation.
* JavaScript video player based loosely on Greg Maxwell's player
* Image page text snippet customisation
* Abstraction of transform parameters in the parser. Introduced Linker::makeImageLink2().
* Made canRender(), mustRender() depend on file, not just on handler. Moved width=0, height=0 checking to ImageHandler::canRender(), since audio streams have width=height=0 but should be rendered.
Also:
* Automatic upgrade for oldimage rows on image page view, allows media handler selection based on oi_*_mime
* oi_*_mime unconditionally referenced, REQUIRES SCHEMA UPGRADE
* Don't destroy file info for missing files on upgrade
* Simple, centralised extension message file handling
* Made MessageCache::loadAllMessages non-static, optimised for repeated-call case due to abuse in User.php
* Support for lightweight parser output hooks, with callback whitelist for security
* Moved Linker::formatSize() to Language, to join the new formatTimePeriod() and formatBitrate()
* Introduced MagicWordArray, regex capture trick requires that magic word IDs DO NOT CONTAIN HYPHENS.
2007-08-15 10:50:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|