2007-04-20 12:31:36 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Media-handling base classes and generic functionality
|
2010-08-15 17:27:41 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @file
|
|
|
|
|
* @ingroup Media
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base media handler class
|
2007-04-24 06:53:31 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Media
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract class MediaHandler {
|
|
|
|
|
const TRANSFORM_LATER = 1;
|
2011-04-16 01:23:15 +00:00
|
|
|
const METADATA_GOOD = true;
|
|
|
|
|
const METADATA_BAD = false;
|
|
|
|
|
const METADATA_COMPATIBLE = 2; // for old but backwards compatible.
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* Instance cache
|
|
|
|
|
*/
|
|
|
|
|
static $handlers = array();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a MediaHandler for a given MIME type from the instance cache
|
2011-02-18 23:56:08 +00:00
|
|
|
*
|
2011-05-28 18:59:42 +00:00
|
|
|
* @param $type string
|
|
|
|
|
*
|
2011-02-18 23:56:08 +00:00
|
|
|
* @return MediaHandler
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
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();
|
|
|
|
|
|
2011-05-21 19:35:16 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Validate a thumbnail parameter at parse time.
|
2007-04-20 12:31:36 +00:00
|
|
|
* Return true to accept the parameter, and false to reject it.
|
|
|
|
|
* If you return false, the parser will do something quiet and forgiving.
|
2011-05-28 18:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @param $name
|
|
|
|
|
* @param $value
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract function validateParam( $name, $value );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Merge a parameter array into a string appropriate for inclusion in filenames
|
2011-05-28 18:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @param $params array
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract function makeParamString( $params );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse a param string made with makeParamString back into an array
|
2011-05-28 18:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @param $str string
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract function parseParamString( $str );
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Changes the parameter array as necessary, ready for transformation.
|
2007-04-20 12:31:36 +00:00
|
|
|
* Should be idempotent.
|
|
|
|
|
* Returns false if the parameters are unacceptable and the transform should fail
|
2011-05-28 18:59:42 +00:00
|
|
|
* @param $image
|
|
|
|
|
* @param $params
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract function normaliseParams( $image, &$params );
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get an image size array like that returned by getimagesize(), or false if it
|
2007-04-20 12:31:36 +00:00
|
|
|
* can't be determined.
|
|
|
|
|
*
|
2010-02-13 17:09:52 +00:00
|
|
|
* @param $image File: the image object, or false if there isn't one
|
2010-06-11 20:39:43 +00:00
|
|
|
* @param $path String: the filename
|
2010-02-13 17:09:52 +00:00
|
|
|
* @return Array
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract function getImageSize( $image, $path );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get handler-specific metadata which will be saved in the img_metadata field.
|
|
|
|
|
*
|
2011-03-06 08:15:49 +00:00
|
|
|
* @param $image File: the image object, or false if there isn't one.
|
|
|
|
|
* Warning, File::getPropsFromPath might pass an (object)array() instead (!)
|
2010-02-13 17:09:52 +00:00
|
|
|
* @param $path String: the filename
|
|
|
|
|
* @return String
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
function getMetadata( $image, $path ) { return ''; }
|
|
|
|
|
|
2011-04-16 01:23:15 +00:00
|
|
|
/**
|
|
|
|
|
* Get metadata version.
|
|
|
|
|
*
|
|
|
|
|
* This is not used for validating metadata, this is used for the api when returning
|
|
|
|
|
* metadata, since api content formats should stay the same over time, and so things
|
|
|
|
|
* using ForiegnApiRepo can keep backwards compatibility
|
|
|
|
|
*
|
|
|
|
|
* All core media handlers share a common version number, and extensions can
|
|
|
|
|
* use the GetMetadataVersion hook to append to the array (they should append a unique
|
|
|
|
|
* string so not to get confusing). If there was a media handler named 'foo' with metadata
|
|
|
|
|
* version 3 it might add to the end of the array the element 'foo=3'. if the core metadata
|
|
|
|
|
* version is 2, the end version string would look like '2;foo=3'.
|
|
|
|
|
*
|
|
|
|
|
* @return string version string
|
|
|
|
|
*/
|
|
|
|
|
static function getMetadataVersion () {
|
|
|
|
|
$version = Array( '2' ); // core metadata version
|
|
|
|
|
wfRunHooks('GetMetadataVersion', Array(&$version));
|
|
|
|
|
return implode( ';', $version);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert metadata version.
|
|
|
|
|
*
|
|
|
|
|
* By default just returns $metadata, but can be used to allow
|
|
|
|
|
* media handlers to convert between metadata versions.
|
|
|
|
|
*
|
|
|
|
|
* @param $metadata Mixed String or Array metadata array (serialized if string)
|
|
|
|
|
* @param $version Integer target version
|
|
|
|
|
* @return Array serialized metadata in specified version, or $metadata on fail.
|
|
|
|
|
*/
|
|
|
|
|
function convertMetadataVersion( $metadata, $version = 1 ) {
|
|
|
|
|
if ( !is_array( $metadata ) ) {
|
2011-04-16 11:17:14 +00:00
|
|
|
|
2011-04-16 01:23:15 +00:00
|
|
|
//unserialize to keep return parameter consistent.
|
|
|
|
|
wfSuppressWarnings();
|
2011-04-16 11:17:14 +00:00
|
|
|
$ret = unserialize( $metadata );
|
2011-04-16 01:23:15 +00:00
|
|
|
wfRestoreWarnings();
|
2011-04-16 11:17:14 +00:00
|
|
|
return $ret;
|
2011-04-16 01:23:15 +00:00
|
|
|
}
|
|
|
|
|
return $metadata;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* Get a string describing the type of metadata, for display purposes.
|
2011-05-28 18:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @return string
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
function getMetadataType( $image ) { return false; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if the metadata string is valid for this handler.
|
2011-04-16 01:23:15 +00:00
|
|
|
* If it returns MediaHandler::METADATA_BAD (or false), Image
|
|
|
|
|
* will reload the metadata from the file and update the database.
|
|
|
|
|
* MediaHandler::METADATA_GOOD for if the metadata is a-ok,
|
|
|
|
|
* MediaHanlder::METADATA_COMPATIBLE if metadata is old but backwards
|
|
|
|
|
* compatible (which may or may not trigger a metadata reload).
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
2011-06-26 19:16:04 +00:00
|
|
|
function isMetadataValid( $image, $metadata ) {
|
2011-04-16 01:23:15 +00:00
|
|
|
return self::METADATA_GOOD;
|
|
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
|
2008-01-22 03:31:10 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get a MediaTransformOutput object representing the transformed output. Does not
|
2007-04-20 12:31:36 +00:00
|
|
|
* actually do the transform.
|
|
|
|
|
*
|
2010-02-13 17:09:52 +00:00
|
|
|
* @param $image File: the image object
|
|
|
|
|
* @param $dstPath String: filesystem destination path
|
|
|
|
|
* @param $dstUrl String: Destination URL to use in output HTML
|
|
|
|
|
* @param $params Array: Arbitrary set of parameters validated by $this->validateParam()
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
function getTransform( $image, $dstPath, $dstUrl, $params ) {
|
|
|
|
|
return $this->doTransform( $image, $dstPath, $dstUrl, $params, self::TRANSFORM_LATER );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get a MediaTransformOutput object representing the transformed output. Does the
|
2007-04-20 12:31:36 +00:00
|
|
|
* transform unless $flags contains self::TRANSFORM_LATER.
|
|
|
|
|
*
|
2010-02-13 17:09:52 +00:00
|
|
|
* @param $image File: the image object
|
|
|
|
|
* @param $dstPath String: filesystem destination path
|
|
|
|
|
* @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
|
2011-09-07 12:00:58 +00:00
|
|
|
*
|
|
|
|
|
* @return MediaTransformOutput
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
*/
|
2010-06-22 16:01:54 +00:00
|
|
|
function getThumbType( $ext, $mime, $params = null ) {
|
2011-02-06 19:20:57 +00:00
|
|
|
$magic = MimeMagic::singleton();
|
|
|
|
|
if ( !$ext || $magic->isMatchingExtension( $ext, $mime ) === false ) {
|
2011-06-26 19:16:04 +00:00
|
|
|
// The extension is not valid for this mime type and we do
|
2011-02-06 19:20:57 +00:00
|
|
|
// recognize the mime type
|
|
|
|
|
$extensions = $magic->getExtensionsForType( $mime );
|
|
|
|
|
if ( $extensions ) {
|
|
|
|
|
return array( strtok( $extensions, ' ' ), $mime );
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-06-26 19:16:04 +00:00
|
|
|
|
2011-02-06 19:20:57 +00:00
|
|
|
// The extension is correct (true) or the mime type is unknown to
|
|
|
|
|
// MediaWiki (null)
|
2007-04-20 12:31:36 +00:00
|
|
|
return array( $ext, $mime );
|
2008-04-14 07:45:50 +00:00
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* True if handled types cannot be displayed directly in a browser
|
2007-04-20 12:31:36 +00:00
|
|
|
* 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; }
|
2010-10-31 21:49:25 +00:00
|
|
|
/**
|
|
|
|
|
* The material is vectorized and thus scaling is lossless
|
|
|
|
|
*/
|
|
|
|
|
function isVectorized( $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
|
2008-04-14 07:45:50 +00:00
|
|
|
* Currently "width" and "height" are understood, but this might be
|
2007-04-20 12:31:36 +00:00
|
|
|
* expanded in the future.
|
|
|
|
|
* Returns false if unknown or if the document is not multi-page.
|
2011-02-18 23:34:24 +00:00
|
|
|
*
|
|
|
|
|
* @param $image File
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2009-09-23 12:28:19 +00:00
|
|
|
/**
|
|
|
|
|
* Generic getter for text layer.
|
|
|
|
|
* Currently overloaded by PDF and DjVu handlers
|
|
|
|
|
*/
|
|
|
|
|
function getPageText( $image, $page ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
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',
|
|
|
|
|
* ...
|
|
|
|
|
* )
|
|
|
|
|
* )
|
2008-04-14 07:45:50 +00:00
|
|
|
* The UI will format this into a table where the visible fields are always
|
2007-07-28 01:15:35 +00:00
|
|
|
* 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
|
|
|
|
|
|
|
|
/**
|
2011-05-17 22:03:20 +00:00
|
|
|
* @todo FIXME: I don't really like this interface, it's not very flexible
|
2008-04-14 07:45:50 +00:00
|
|
|
* I think the media handler should generate HTML instead. It can do
|
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
|
|
|
* 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.
|
|
|
|
|
*/
|
2008-01-15 15:02:36 +00:00
|
|
|
function formatMetadata( $image ) {
|
2007-07-28 01:15:35 +00:00
|
|
|
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
|
|
|
|
2011-04-16 01:23:15 +00:00
|
|
|
/** sorts the visible/invisible field.
|
|
|
|
|
* Split off from ImageHandler::formatMetadata, as used by more than
|
|
|
|
|
* one type of handler.
|
|
|
|
|
*
|
|
|
|
|
* This is used by the media handlers that use the FormatMetadata class
|
|
|
|
|
*
|
|
|
|
|
* @param $metadataArray Array metadata array
|
|
|
|
|
* @return array for use displaying metadata.
|
|
|
|
|
*/
|
|
|
|
|
function formatMetadataHelper( $metadataArray ) {
|
|
|
|
|
$result = array(
|
|
|
|
|
'visible' => array(),
|
|
|
|
|
'collapsed' => array()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$formatted = FormatMetadata::getFormattedData( $metadataArray );
|
|
|
|
|
// Sort fields into visible and collapsed
|
|
|
|
|
$visibleFields = $this->visibleMetadataFields();
|
|
|
|
|
foreach ( $formatted as $name => $value ) {
|
|
|
|
|
$tag = strtolower( $name );
|
|
|
|
|
self::addMeta( $result,
|
|
|
|
|
in_array( $tag, $visibleFields ) ? 'visible' : 'collapsed',
|
|
|
|
|
'exif',
|
|
|
|
|
$tag,
|
|
|
|
|
$value
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a list of metadata items which should be displayed when
|
|
|
|
|
* the metadata table is collapsed.
|
|
|
|
|
*
|
|
|
|
|
* @return array of strings
|
2011-04-20 23:15:13 +00:00
|
|
|
* @access protected
|
2011-04-16 01:23:15 +00:00
|
|
|
*/
|
|
|
|
|
function visibleMetadataFields() {
|
|
|
|
|
$fields = array();
|
|
|
|
|
$lines = explode( "\n", wfMsgForContent( 'metadata-fields' ) );
|
|
|
|
|
foreach( $lines as $line ) {
|
|
|
|
|
$matches = array();
|
|
|
|
|
if( preg_match( '/^\\*\s*(.*?)\s*$/', $line, $matches ) ) {
|
|
|
|
|
$fields[] = $matches[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$fields = array_map( 'strtolower', $fields );
|
|
|
|
|
return $fields;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-25 22:25:17 +00:00
|
|
|
/**
|
2011-04-16 01:23:15 +00:00
|
|
|
* This is used to generate an array element for each metadata value
|
|
|
|
|
* That array is then used to generate the table of metadata values
|
2011-06-26 19:16:04 +00:00
|
|
|
* on the image page
|
2011-04-16 01:23:15 +00:00
|
|
|
*
|
|
|
|
|
* @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.
|
2011-06-26 19:16:04 +00:00
|
|
|
* @param $visbility string ('visible' or 'collapsed') if this value is hidden
|
2011-04-16 01:23:15 +00:00
|
|
|
* 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).
|
|
|
|
|
* its name in the table displayed is the message "$type-$id" (Ex exif-artist ).
|
|
|
|
|
* @param $value String thingy goes into a wikitext table; it used to be escaped but
|
|
|
|
|
* that was incompatible with previous practise of customized display
|
2007-08-25 22:25:17 +00:00
|
|
|
* with wikitext formatting via messages such as 'exif-model-value'.
|
|
|
|
|
* So the escaping is taken back out, but generally this seems a confusing
|
|
|
|
|
* interface.
|
2011-04-16 01:23:15 +00:00
|
|
|
* @param $param String value to pass to the message for the name of the field
|
|
|
|
|
* as $1. Currently this parameter doesn't seem to ever be used.
|
|
|
|
|
*
|
|
|
|
|
* Note, everything here is passed through the parser later on (!)
|
2007-08-25 22:25:17 +00:00
|
|
|
*/
|
2007-07-28 01:15:35 +00:00
|
|
|
protected static function addMeta( &$array, $visibility, $type, $id, $value, $param = false ) {
|
2011-04-16 01:23:15 +00:00
|
|
|
$msgName = "$type-$id";
|
|
|
|
|
if ( wfEmptyMsg( $msgName ) ) {
|
|
|
|
|
// This is for future compatibility when using instant commons.
|
2011-06-26 19:16:04 +00:00
|
|
|
// So as to not display as ugly a name if a new metadata
|
2011-04-16 01:23:15 +00:00
|
|
|
// 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 );
|
|
|
|
|
}
|
2007-07-28 01:15:35 +00:00
|
|
|
$array[$visibility][] = array(
|
|
|
|
|
'id' => "$type-$id",
|
2011-04-16 01:23:15 +00:00
|
|
|
'name' => $name,
|
2007-08-25 22:25:17 +00:00
|
|
|
'value' => $value
|
2007-07-28 01:15:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
2008-12-15 22:22:21 +00:00
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-04-26 18:16:43 +00:00
|
|
|
function getShortDesc( $file ) {
|
2008-12-15 22:22:21 +00:00
|
|
|
global $wgLang;
|
2011-01-10 22:18:08 +00:00
|
|
|
$nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
|
|
|
|
|
$wgLang->formatNum( $file->getSize() ) );
|
2008-12-15 22:22:21 +00:00
|
|
|
return "$nbytes";
|
2008-12-15 21:38:04 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-12-15 21:38:04 +00:00
|
|
|
function getLongDesc( $file ) {
|
2011-07-01 09:03:15 +00:00
|
|
|
global $wgLang;
|
2008-12-15 22:22:21 +00:00
|
|
|
return wfMsgExt( 'file-info', 'parseinline',
|
2011-07-01 09:03:15 +00:00
|
|
|
$wgLang->formatSize( $file->getSize() ),
|
2008-12-15 22:22:21 +00:00
|
|
|
$file->getMimeType() );
|
|
|
|
|
}
|
2011-02-18 23:34:24 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-12-15 22:22:21 +00:00
|
|
|
static function getGeneralShortDesc( $file ) {
|
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
|
|
|
global $wgLang;
|
2011-01-10 22:18:08 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-12-15 22:22:21 +00:00
|
|
|
static function getGeneralLongDesc( $file ) {
|
2011-07-01 09:03:15 +00:00
|
|
|
global $wgLang;
|
2008-07-16 08:48:53 +00:00
|
|
|
return wfMsgExt( 'file-info', 'parseinline',
|
2011-07-01 09:03:15 +00:00
|
|
|
$wgLang->formatSize( $file->getSize() ),
|
2008-07-16 08:48:53 +00:00
|
|
|
$file->getMimeType() );
|
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
|
|
|
}
|
|
|
|
|
|
2011-07-28 00:07:08 +00:00
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-15 15:02:36 +00:00
|
|
|
function getDimensionsString( $file ) {
|
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 '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Modify the parser object post-transform
|
|
|
|
|
*/
|
|
|
|
|
function parserTransformHook( $parser, $file ) {}
|
2007-09-04 15:13:55 +00:00
|
|
|
|
2010-08-31 14:08:45 +00:00
|
|
|
/**
|
2010-09-07 10:38:19 +00:00
|
|
|
* File validation hook called on upload.
|
2010-08-31 14:08:45 +00:00
|
|
|
*
|
2011-06-26 19:16:04 +00:00
|
|
|
* If the file at the given local path is not valid, or its MIME type does not
|
2010-09-07 10:38:19 +00:00
|
|
|
* match the handler class, a Status object should be returned containing
|
|
|
|
|
* relevant errors.
|
2011-06-26 19:16:04 +00:00
|
|
|
*
|
2010-09-07 10:38:19 +00:00
|
|
|
* @param $fileName The local path to the file.
|
|
|
|
|
* @return Status object
|
2010-08-31 14:08:45 +00:00
|
|
|
*/
|
2010-09-07 10:38:19 +00:00
|
|
|
function verifyUpload( $fileName ) {
|
|
|
|
|
return Status::newGood();
|
2010-08-31 14:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
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 ) {
|
2011-08-19 23:06:54 +00:00
|
|
|
$result = unlink( $dstPath );
|
2011-08-21 15:24:44 +00:00
|
|
|
|
|
|
|
|
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 ) );
|
|
|
|
|
}
|
2007-09-04 15:13:55 +00:00
|
|
|
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
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Media
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
abstract class ImageHandler extends MediaHandler {
|
2011-02-18 23:34:24 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
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 ) {
|
2011-02-18 23:34:24 +00:00
|
|
|
return ( $file->getWidth() && $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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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'] );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $image File
|
|
|
|
|
* @param $params
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
2007-04-20 12:31:36 +00:00
|
|
|
function normaliseParams( $image, &$params ) {
|
|
|
|
|
$mimeType = $image->getMimeType();
|
|
|
|
|
|
|
|
|
|
if ( !isset( $params['width'] ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-06-29 08:40:23 +00:00
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
if ( !isset( $params['page'] ) ) {
|
|
|
|
|
$params['page'] = 1;
|
2010-06-29 08:40:23 +00:00
|
|
|
} else {
|
|
|
|
|
if ( $params['page'] > $image->pageCount() ) {
|
|
|
|
|
$params['page'] = $image->pageCount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $params['page'] < 1 ) {
|
|
|
|
|
$params['page'] = 1;
|
|
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|
2010-06-29 08:40:23 +00:00
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
$srcWidth = $image->getWidth( $params['page'] );
|
|
|
|
|
$srcHeight = $image->getHeight( $params['page'] );
|
2011-08-19 23:06:54 +00:00
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
if ( isset( $params['height'] ) && $params['height'] != -1 ) {
|
2011-07-15 19:03:40 +00:00
|
|
|
# Height & width were both set
|
2007-04-20 12:31:36 +00:00
|
|
|
if ( $params['width'] * $srcHeight > $params['height'] * $srcWidth ) {
|
2011-07-15 19:03:40 +00:00
|
|
|
# Height is the relative smaller dimension, so scale width accordingly
|
2011-07-28 00:07:08 +00:00
|
|
|
$params['width'] = self::fitBoxWidth( $srcWidth, $srcHeight, $params['height'] );
|
2011-08-19 23:06:54 +00:00
|
|
|
|
2011-07-15 19:03:40 +00:00
|
|
|
if ( $params['width'] == 0 ) {
|
|
|
|
|
# Very small image, so we need to rely on client side scaling :(
|
|
|
|
|
$params['width'] = 1;
|
|
|
|
|
}
|
2011-08-19 23:06:54 +00:00
|
|
|
|
2011-07-15 19:03:40 +00:00
|
|
|
$params['physicalWidth'] = $params['width'];
|
|
|
|
|
} else {
|
|
|
|
|
# Height was crap, unset it so that it will be calculated later
|
|
|
|
|
unset( $params['height'] );
|
2007-04-20 12:31:36 +00:00
|
|
|
}
|
|
|
|
|
}
|
2011-08-19 23:06:54 +00:00
|
|
|
|
2011-07-15 19:03:40 +00:00
|
|
|
if ( !isset( $params['physicalWidth'] ) ) {
|
|
|
|
|
# Passed all validations, so set the physicalWidth
|
|
|
|
|
$params['physicalWidth'] = $params['width'];
|
|
|
|
|
}
|
2011-08-19 23:06:54 +00:00
|
|
|
|
2011-07-15 19:03:40 +00:00
|
|
|
# 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
|
2011-08-19 23:06:54 +00:00
|
|
|
$params['physicalHeight'] = File::scaleHeight( $srcWidth, $srcHeight,
|
2011-07-15 19:03:40 +00:00
|
|
|
$params['physicalWidth'] );
|
|
|
|
|
|
2011-08-19 23:06:54 +00:00
|
|
|
# Set the height if it was not validated in the if block higher up
|
2011-07-15 19:03:40 +00:00
|
|
|
if ( !isset( $params['height'] ) || $params['height'] == -1 ) {
|
|
|
|
|
$params['height'] = $params['physicalHeight'];
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-19 23:06:54 +00:00
|
|
|
|
|
|
|
|
if ( !$this->validateThumbParams( $params['physicalWidth'],
|
2011-07-15 19:03:40 +00:00
|
|
|
$params['physicalHeight'], $srcWidth, $srcHeight, $mimeType ) ) {
|
2007-04-20 12:31:36 +00:00
|
|
|
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 );
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-04-20 12:31:36 +00:00
|
|
|
/**
|
|
|
|
|
* Validate thumbnail parameters and fill in the correct height
|
|
|
|
|
*
|
2010-02-13 17:09:52 +00:00
|
|
|
* @param $width Integer: specified width (input/output)
|
|
|
|
|
* @param $height Integer: height (output only)
|
2010-06-11 20:39:43 +00:00
|
|
|
* @param $srcWidth Integer: width of the source image
|
|
|
|
|
* @param $srcHeight Integer: height of the source image
|
|
|
|
|
* @param $mimeType Unused
|
2008-04-14 07:45:50 +00:00
|
|
|
* @return false to indicate that an error should be returned to the user.
|
2007-04-20 12:31:36 +00:00
|
|
|
*/
|
|
|
|
|
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 );
|
2011-07-15 19:03:40 +00:00
|
|
|
if ( $height == 0 ) {
|
|
|
|
|
# Force height to be at least 1 pixel
|
|
|
|
|
$height = 1;
|
|
|
|
|
}
|
2007-04-20 12:31:36 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $image File
|
|
|
|
|
* @param $script
|
|
|
|
|
* @param $params
|
|
|
|
|
* @return bool|ThumbnailImage
|
|
|
|
|
*/
|
2007-04-20 12:31:36 +00:00
|
|
|
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;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-01-22 03:31:10 +00:00
|
|
|
if( $image->mustRender() || $params['width'] < $image->getWidth() ) {
|
|
|
|
|
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
|
|
|
|
2010-05-05 22:37:27 +00:00
|
|
|
function isAnimatedImage( $image ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-04-26 18:16:43 +00:00
|
|
|
function getShortDesc( $file ) {
|
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
|
|
|
global $wgLang;
|
2008-03-14 00:10:48 +00:00
|
|
|
$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)";
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2008-04-26 18:16:43 +00:00
|
|
|
function getLongDesc( $file ) {
|
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
|
|
|
global $wgLang;
|
2011-05-07 19:34:14 +00:00
|
|
|
$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() );
|
|
|
|
|
} 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 ) );
|
|
|
|
|
}
|
|
|
|
|
return $msg;
|
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
|
|
|
}
|
|
|
|
|
|
2011-02-18 23:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* @param $file File
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
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 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();
|
2008-05-10 09:16:58 +00:00
|
|
|
$width = $wgLang->formatNum( $file->getWidth() );
|
|
|
|
|
$height = $wgLang->formatNum( $file->getHeight() );
|
2008-05-10 09:21:37 +00:00
|
|
|
$pagesFmt = $wgLang->formatNum( $pages );
|
2008-05-10 09:16:58 +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
|
|
|
if ( $pages > 1 ) {
|
2008-05-10 09:16:58 +00:00
|
|
|
return wfMsgExt( 'widthheightpage', 'parsemag', $width, $height, $pagesFmt );
|
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 {
|
2008-05-10 09:16:58 +00:00
|
|
|
return wfMsg( 'widthheight', $width, $height );
|
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
|
|
|
}
|