wiki.techinc.nl/includes/MimeMagic.php

705 lines
20 KiB
PHP
Raw Normal View History

2005-05-21 07:46:17 +00:00
<?php
/** Module defining helper functions for detecting and dealing with mime types.
*
* @package MediaWiki
*/
/** Defines a set of well known mime types
* This is used as a fallback to mime.types files.
2006-01-07 13:09:30 +00:00
* An extensive list of well known mime types is provided by
2005-05-21 07:46:17 +00:00
* the file mime.types in the includes directory.
*/
define('MM_WELL_KNOWN_MIME_TYPES',<<<END_STRING
application/ogg ogg ogm
application/pdf pdf
application/x-javascript js
application/x-shockwave-flash swf
audio/midi mid midi kar
audio/mpeg mpga mpa mp2 mp3
audio/x-aiff aif aiff aifc
audio/x-wav wav
audio/ogg ogg
image/x-bmp bmp
image/gif gif
image/jpeg jpeg jpg jpe
image/png png
image/svg+xml svg
image/tiff tiff tif
image/vnd.djvu djvu
2005-05-21 07:46:17 +00:00
text/plain txt
2006-01-07 13:09:30 +00:00
text/html html htm
2005-05-21 07:46:17 +00:00
video/ogg ogm ogg
video/mpeg mpg mpeg
END_STRING
);
/** Defines a set of well known mime info entries
* This is used as a fallback to mime.info files.
2006-01-07 13:09:30 +00:00
* An extensive list of well known mime types is provided by
2005-05-21 07:46:17 +00:00
* the file mime.info in the includes directory.
*/
define('MM_WELL_KNOWN_MIME_INFO', <<<END_STRING
application/pdf [OFFICE]
text/javascript application/x-javascript [EXECUTABLE]
application/x-shockwave-flash [MULTIMEDIA]
audio/midi [AUDIO]
audio/x-aiff [AUDIO]
audio/x-wav [AUDIO]
audio/mp3 audio/mpeg [AUDIO]
application/ogg audio/ogg video/ogg [MULTIMEDIA]
image/x-bmp image/bmp [BITMAP]
image/gif [BITMAP]
image/jpeg [BITMAP]
image/png [BITMAP]
image/svg image/svg+xml [DRAWING]
image/tiff [BITMAP]
image/vnd.djvu [BITMAP]
2005-05-21 07:46:17 +00:00
text/plain [TEXT]
text/html [TEXT]
video/ogg [VIDEO]
video/mpeg [VIDEO]
unknown/unknown application/octet-stream application/x-empty [UNKNOWN]
END_STRING
);
2006-01-07 13:09:30 +00:00
#note: because this file is possibly included by a function,
2005-05-21 07:46:17 +00:00
#we need to access the global scope explicitely!
global $wgLoadFileinfoExtension;
2006-01-07 13:09:30 +00:00
if ($wgLoadFileinfoExtension) {
2005-05-21 07:46:17 +00:00
if(!extension_loaded('fileinfo')) dl('fileinfo.' . PHP_SHLIB_SUFFIX);
}
2006-01-07 13:09:30 +00:00
/** Implements functions related to mime types such as detection and mapping to
2005-05-21 07:46:17 +00:00
* file extension,
*
* Instances of this class are stateles, there only needs to be one global instance
2006-01-07 13:09:30 +00:00
* of MimeMagic. Please use wfGetMimeMagic to get that instance.
2005-07-05 21:22:25 +00:00
* @package MediaWiki
2005-05-21 07:46:17 +00:00
*/
class MimeMagic {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/**
* Mapping of media types to arrays of mime types.
* This is used by findMediaType and getMediaType, respectively
*/
2006-01-07 13:09:30 +00:00
var $mMediaTypes= NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** Map of mime type aliases
*/
var $mMimeTypeAliases= NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** map of mime types to file extensions (as a space seprarated list)
*/
2006-01-07 13:09:30 +00:00
var $mMimeToExt= NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** map of file extensions types to mime types (as a space seprarated list)
*/
2006-01-07 13:09:30 +00:00
var $mExtToMime= NULL;
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
/** Initializes the MimeMagic object. This is called by wfGetMimeMagic when instantiation
2005-05-21 07:46:17 +00:00
* the global MimeMagic singleton object.
*
* This constructor parses the mime.types and mime.info files and build internal mappings.
*/
function MimeMagic() {
/*
* --- load mime.types ---
*/
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
global $wgMimeTypeFile;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$types= MM_WELL_KNOWN_MIME_TYPES;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($wgMimeTypeFile) {
if (is_file($wgMimeTypeFile) and is_readable($wgMimeTypeFile)) {
wfDebug("MimeMagic::MimeMagic: loading mime types from $wgMimeTypeFile\n");
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$types.= "\n";
$types.= file_get_contents($wgMimeTypeFile);
}
else wfDebug("MimeMagic::MimeMagic: can't load mime types from $wgMimeTypeFile\n");
}
else wfDebug("MimeMagic::MimeMagic: no mime types file defined, using build-ins only.\n");
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$types= str_replace(array("\r\n","\n\r","\n\n","\r\r","\r"),"\n",$types);
$types= str_replace("\t"," ",$types);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$this->mMimeToExt= array();
$this->mToMime= array();
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$lines= explode("\n",$types);
foreach ($lines as $s) {
$s= trim($s);
if (empty($s)) continue;
if (strpos($s,'#')===0) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$s= strtolower($s);
$i= strpos($s,' ');
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($i===false) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#print "processing MIME line $s<br>";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$mime= substr($s,0,$i);
$ext= trim(substr($s,$i+1));
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (empty($ext)) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (@$this->mMimeToExt[$mime]) $this->mMimeToExt[$mime] .= ' '.$ext;
else $this->mMimeToExt[$mime]= $ext;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$extensions= explode(' ',$ext);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
foreach ($extensions as $e) {
$e= trim($e);
if (empty($e)) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (@$this->mExtToMime[$e]) $this->mExtToMime[$e] .= ' '.$mime;
else $this->mExtToMime[$e]= $mime;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/*
* --- load mime.info ---
*/
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
global $wgMimeInfoFile;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$info= MM_WELL_KNOWN_MIME_INFO;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($wgMimeInfoFile) {
if (is_file($wgMimeInfoFile) and is_readable($wgMimeInfoFile)) {
wfDebug("MimeMagic::MimeMagic: loading mime info from $wgMimeInfoFile\n");
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$info.= "\n";
$info.= file_get_contents($wgMimeInfoFile);
}
else wfDebug("MimeMagic::MimeMagic: can't load mime info from $wgMimeInfoFile\n");
}
else wfDebug("MimeMagic::MimeMagic: no mime info file defined, using build-ins only.\n");
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$info= str_replace(array("\r\n","\n\r","\n\n","\r\r","\r"),"\n",$info);
$info= str_replace("\t"," ",$info);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$this->mMimeTypeAliases= array();
$this->mMediaTypes= array();
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$lines= explode("\n",$info);
foreach ($lines as $s) {
$s= trim($s);
if (empty($s)) continue;
if (strpos($s,'#')===0) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$s= strtolower($s);
$i= strpos($s,' ');
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($i===false) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#print "processing MIME INFO line $s<br>";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$match= array();
if (preg_match('!\[\s*(\w+)\s*\]!',$s,$match)) {
$s= preg_replace('!\[\s*(\w+)\s*\]!','',$s);
$mtype= trim(strtoupper($match[1]));
}
else $mtype= MEDIATYPE_UNKNOWN;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= explode(' ',$s);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (!isset($this->mMediaTypes[$mtype])) $this->mMediaTypes[$mtype]= array();
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
foreach ($m as $mime) {
$mime= trim($mime);
if (empty($mime)) continue;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$this->mMediaTypes[$mtype][]= $mime;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (sizeof($m)>1) {
$main= $m[0];
for ($i=1; $i<sizeof($m); $i+= 1) {
$mime= $m[$i];
$this->mMimeTypeAliases[$mime]= $main;
}
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** returns a list of file extensions for a given mime type
* as a space separated string.
*/
function getExtensionsForType($mime) {
$mime= strtolower($mime);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$r= @$this->mMimeToExt[$mime];
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (@!$r and isset($this->mMimeTypeAliases[$mime])) {
$mime= $this->mMimeTypeAliases[$mime];
$r= @$this->mMimeToExt[$mime];
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return $r;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** returns a list of mime types for a given file extension
* as a space separated string.
*/
function getTypesForExtension($ext) {
$ext= strtolower($ext);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$r= @$this->mExtToMime[$ext];
return $r;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** returns a single mime type for a given file extension.
* This is always the first type from the list returned by getTypesForExtension($ext).
*/
function guessTypesForExtension($ext) {
$m= $this->getTypesForExtension( $ext );
if( is_null($m) ) return NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= trim( $m );
$m= preg_replace('/\s.*$/','',$m);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return $m;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** tests if the extension matches the given mime type.
2006-01-07 13:09:30 +00:00
* returns true if a match was found, NULL if the mime type is unknown,
2005-05-21 07:46:17 +00:00
* and false if the mime type is known but no matches where found.
*/
function isMatchingExtension($extension,$mime) {
$ext= $this->getExtensionsForType($mime);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (!$ext) {
return NULL; //unknown
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$ext= explode(' ',$ext);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$extension= strtolower($extension);
if (in_array($extension,$ext)) {
return true;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return false;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** returns true if the mime type is known to represent
* an image format supported by the PHP GD library.
*/
function isPHPImageType( $mime ) {
#as defined by imagegetsize and image_type_to_mime
2006-01-07 13:09:30 +00:00
static $types = array(
'image/gif', 'image/jpeg', 'image/png',
2005-05-21 07:46:17 +00:00
'image/x-bmp', 'image/xbm', 'image/tiff',
2006-01-07 13:09:30 +00:00
'image/jp2', 'image/jpeg2000', 'image/iff',
2005-05-21 07:46:17 +00:00
'image/xbm', 'image/x-xbitmap',
2006-01-07 13:09:30 +00:00
'image/vnd.wap.wbmp', 'image/vnd.xiff',
2005-05-21 07:46:17 +00:00
'image/x-photoshop',
'application/x-shockwave-flash',
2006-01-07 13:09:30 +00:00
);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return in_array( $mime, $types );
}
2006-01-07 13:31:29 +00:00
/**
* Returns true if the extension represents a type which can
* be reliably detected from its content. Use this to determine
* whether strict content checks should be applied to reject
* invalid uploads; if we can't identify the type we won't
* be able to say if it's invalid.
*
* @todo Be more accurate when using fancy mime detector plugins;
* right now this is the bare minimum getimagesize() list.
* @return bool
*/
function isRecognizableExtension( $extension ) {
static $types = array(
'gif', 'jpeg', 'jpg', 'png', 'swf', 'psd',
'bmp', 'tiff', 'tif', 'jpc', 'jp2',
'jpx', 'jb2', 'swc', 'iff', 'wbmp',
'xbm', 'djvu'
);
return in_array( strtolower( $extension ), $types );
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** mime type detection. This uses detectMimeType to detect the mim type of the file,
* but applies additional checks to determine some well known file formats that may be missed
* or misinterpreter by the default mime detection (namely xml based formats like XHTML or SVG).
*
* @param string $file The file to check
* @param bool $useExt switch for allowing to use the file extension to guess the mime type. true by default.
*
* @return string the mime type of $file
*/
function guessMimeType( $file, $useExt=true ) {
$fname = 'MimeMagic::guessMimeType';
$mime= $this->detectMimeType($file,$useExt);
2006-01-07 13:31:29 +00:00
2006-01-03 02:14:55 +00:00
// Read a chunk of the file
$f = fopen( $file, "rt" );
if( !$f ) return "unknown/unknown";
$head = fread( $f, 1024 );
fclose( $f );
2006-01-07 13:31:29 +00:00
2006-01-03 02:14:55 +00:00
$sub4 = substr( $head, 0, 4 );
if ( $sub4 == "\x01\x00\x09\x00" || $sub4 == "\xd7\xcd\xc6\x9a" ) {
// WMF kill kill kill
// Note that WMF may have a bare header, no magic number.
// The former of the above two checks is theoretically prone to false positives
$mime = "application/x-msmetafile";
}
2006-01-07 13:31:29 +00:00
2006-01-03 02:14:55 +00:00
if (strpos($mime,"text/")===0 || $mime==="application/xml") {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$xml_type= NULL;
$script_type= NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/*
* look for XML formats (XHTML and SVG)
*/
if ($mime==="text/sgml" ||
$mime==="text/plain" ||
$mime==="text/html" ||
$mime==="text/xml" ||
$mime==="application/xml") {
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
if (substr($head,0,5)=="<?xml") $xml_type= "ASCII";
elseif (substr($head,0,8)=="\xef\xbb\xbf<?xml") $xml_type= "UTF-8";
elseif (substr($head,0,10)=="\xfe\xff\x00<\x00?\x00x\x00m\x00l") $xml_type= "UTF-16BE";
elseif (substr($head,0,10)=="\xff\xfe<\x00?\x00x\x00m\x00l\x00") $xml_type= "UTF-16LE";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($xml_type) {
if ($xml_type!=="UTF-8" && $xml_type!=="ASCII") $head= iconv($xml_type,"ASCII//IGNORE",$head);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$match= array();
$doctype= "";
$tag= "";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (preg_match('%<!DOCTYPE\s+[\w-]+\s+PUBLIC\s+["'."'".'"](.*?)["'."'".'"].*>%sim',$head,$match)) $doctype= $match[1];
if (preg_match('%<(\w+).*>%sim',$head,$match)) $tag= $match[1];
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#print "<br>ANALYSING $file ($mime): doctype= $doctype; tag= $tag<br>";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (strpos($doctype,"-//W3C//DTD SVG")===0) $mime= "image/svg";
elseif ($tag==="svg") $mime= "image/svg";
elseif (strpos($doctype,"-//W3C//DTD XHTML")===0) $mime= "text/html";
elseif ($tag==="html") $mime= "text/html";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$test_more= false;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/*
* look for shell scripts
*/
if (!$xml_type) {
$script_type= NULL;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#detect by shebang
2006-01-07 13:09:30 +00:00
if (substr($head,0,2)=="#!") $script_type= "ASCII";
elseif (substr($head,0,5)=="\xef\xbb\xbf#!") $script_type= "UTF-8";
elseif (substr($head,0,7)=="\xfe\xff\x00#\x00!") $script_type= "UTF-16BE";
elseif (substr($head,0,7)=="\xff\xfe#\x00!") $script_type= "UTF-16LE";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($script_type) {
if ($script_type!=="UTF-8" && $script_type!=="ASCII") $head= iconv($script_type,"ASCII//IGNORE",$head);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$match= array();
$prog= "";
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (preg_match('%/?([^\s]+/)(w+)%sim',$head,$match)) $script= $match[2];
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$mime= "application/x-$prog";
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/*
* look for PHP
*/
if( !$xml_type && !$script_type ) {
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
if( ( strpos( $head, '<?php' ) !== false ) ||
2005-05-21 07:46:17 +00:00
( strpos( $head, '<? ' ) !== false ) ||
( strpos( $head, "<?\n" ) !== false ) ||
( strpos( $head, "<?\t" ) !== false ) ||
( strpos( $head, "<?=" ) !== false ) ||
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
( strpos( $head, "<\x00?\x00p\x00h\x00p" ) !== false ) ||
2005-05-21 07:46:17 +00:00
( strpos( $head, "<\x00?\x00 " ) !== false ) ||
( strpos( $head, "<\x00?\x00\n" ) !== false ) ||
( strpos( $head, "<\x00?\x00\t" ) !== false ) ||
( strpos( $head, "<\x00?\x00=" ) !== false ) ) {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$mime= "application/x-php";
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (isset($this->mMimeTypeAliases[$mime])) $mime= $this->mMimeTypeAliases[$mime];
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
wfDebug("$fname: final mime type of $file: $mime\n");
return $mime;
}
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
/** Internal mime type detection, please use guessMimeType() for application code instead.
2005-05-21 07:46:17 +00:00
* Detection is done using an external program, if $wgMimeDetectorCommand is set.
2006-01-07 13:09:30 +00:00
* Otherwise, the fileinfo extension and mime_content_type are tried (in this order), if they are available.
* If the dections fails and $useExt is true, the mime type is guessed from the file extension, using guessTypesForExtension.
2005-05-21 07:46:17 +00:00
* If the mime type is still unknown, getimagesize is used to detect the mime type if the file is an image.
* If no mime type can be determined, this function returns "unknown/unknown".
*
* @param string $file The file to check
* @param bool $useExt switch for allowing to use the file extension to guess the mime type. true by default.
*
* @return string the mime type of $file
* @access private
2005-05-21 07:46:17 +00:00
*/
function detectMimeType( $file, $useExt=true ) {
$fname = 'MimeMagic::detectMimeType';
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
global $wgMimeDetectorCommand;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= NULL;
if ($wgMimeDetectorCommand) {
$fn= wfEscapeShellArg($file);
$m= `$wgMimeDetectorCommand $fn`;
}
else if (function_exists("finfo_open") && function_exists("finfo_file")) {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
# This required the fileinfo extension by PECL,
# see http://pecl.php.net/package/fileinfo
# This must be compiled into PHP
#
2006-01-07 13:09:30 +00:00
# finfo is the official replacement for the deprecated
2005-05-21 07:46:17 +00:00
# mime_content_type function, see below.
#
# If you may need to load the fileinfo extension at runtime, set
# $wgLoadFileinfoExtension in LocalSettings.php
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$mime_magic_resource = finfo_open(FILEINFO_MIME); /* return mime type ala mimetype extension */
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($mime_magic_resource) {
$m= finfo_file($mime_magic_resource, $file);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
finfo_close($mime_magic_resource);
}
else wfDebug("$fname: finfo_open failed on ".FILEINFO_MIME."!\n");
}
2006-01-07 13:09:30 +00:00
else if (function_exists("mime_content_type")) {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
# NOTE: this function is available since PHP 4.3.0, but only if
# PHP was compiled with --with-mime-magic or, before 4.3.2, with --enable-mime-magic.
#
# On Winodws, you must set mime_magic.magicfile in php.ini to point to the mime.magic file bundeled with PHP;
# sometimes, this may even be needed under linus/unix.
#
# Also note that this has been DEPRECATED in favor of the fileinfo extension by PECL, see above.
# see http://www.php.net/manual/en/ref.mime-magic.php for details.
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= mime_content_type($file);
if ( $m == 'text/plain' ) {
// mime_content_type sometimes considers DJVU files to be text/plain.
$deja = new DjVuImage( $file );
if( $deja->isValid() ) {
wfDebug("$fname: (re)detected $file as image/vnd.djvu\n");
$m = 'image/vnd.djvu';
}
}
2005-05-21 07:46:17 +00:00
}
else wfDebug("$fname: no magic mime detector found!\n");
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
if ($m) {
2005-05-21 07:46:17 +00:00
#normalize
$m= preg_replace('![;, ].*$!','',$m); #strip charset, etc
$m= trim($m);
$m= strtolower($m);
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (strpos($m,'unknown')!==false) $m= NULL;
else {
wfDebug("$fname: magic mime type of $file: $m\n");
return $m;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#if still not known, use getimagesize to find out the type of image
#TODO: skip things that do not have a well-known image extension? Would that be safe?
wfSuppressWarnings();
$gis = getimagesize( $file );
wfRestoreWarnings();
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$notAnImage= false;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($gis && is_array($gis) && $gis[2]) {
switch ($gis[2]) {
case IMAGETYPE_GIF: $m= "image/gif"; break;
case IMAGETYPE_JPEG: $m= "image/jpeg"; break;
case IMAGETYPE_PNG: $m= "image/png"; break;
case IMAGETYPE_SWF: $m= "application/x-shockwave-flash"; break;
case IMAGETYPE_PSD: $m= "application/photoshop"; break;
case IMAGETYPE_BMP: $m= "image/bmp"; break;
case IMAGETYPE_TIFF_II: $m= "image/tiff"; break;
case IMAGETYPE_TIFF_MM: $m= "image/tiff"; break;
case IMAGETYPE_JPC: $m= "image"; break;
case IMAGETYPE_JP2: $m= "image/jpeg2000"; break;
case IMAGETYPE_JPX: $m= "image/jpeg2000"; break;
case IMAGETYPE_JB2: $m= "image"; break;
case IMAGETYPE_SWC: $m= "application/x-shockwave-flash"; break;
case IMAGETYPE_IFF: $m= "image/vnd.xiff"; break;
case IMAGETYPE_WBMP: $m= "image/vnd.wap.wbmp"; break;
case IMAGETYPE_XBM: $m= "image/x-xbitmap"; break;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($m) {
wfDebug("$fname: image mime type of $file: $m\n");
return $m;
}
else $notAnImage= true;
} else {
// Also test DjVu
$deja = new DjVuImage( $file );
if( $deja->isValid() ) {
wfDebug("$fname: detected $file as image/vnd.djvu\n");
return 'image/vnd.djvu';
}
2005-05-21 07:46:17 +00:00
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#if desired, look at extension as a fallback.
if ($useExt) {
$i = strrpos( $file, '.' );
$e= strtolower( $i ? substr( $file, $i + 1 ) : '' );
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= $this->guessTypesForExtension($e);
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
#TODO: if $notAnImage is set, do not trust the file extension if
# the results is one of the image types that should have been recognized
2005-05-21 07:46:17 +00:00
# by getimagesize
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if ($m) {
wfDebug("$fname: extension mime type of $file: $m\n");
return $m;
}
}
2006-01-07 13:31:29 +00:00
#unknown type
2005-05-21 07:46:17 +00:00
wfDebug("$fname: failed to guess mime type for $file!\n");
return "unknown/unknown";
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/**
* Determine the media type code for a file, using its mime type, name and possibly
* its contents.
*
2006-01-07 13:09:30 +00:00
* This function relies on the findMediaType(), mapping extensions and mime
2005-05-21 07:46:17 +00:00
* types to media types.
*
2006-01-07 13:09:30 +00:00
* @todo analyse file if need be
2005-05-21 07:46:17 +00:00
* @todo look at multiple extension, separately and together.
*
2006-01-07 13:09:30 +00:00
* @param string $path full path to the image file, in case we have to look at the contents
2005-05-21 07:46:17 +00:00
* (if null, only the mime type is used to determine the media type code).
* @param string $mime mime type. If null it will be guessed using guessMimeType.
2006-01-07 13:09:30 +00:00
*
2005-05-21 07:46:17 +00:00
* @return (int?string?) a value to be used with the MEDIATYPE_xxx constants.
*/
function getMediaType($path=NULL,$mime=NULL) {
if( !$mime && !$path ) return MEDIATYPE_UNKNOWN;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#if mime type is unknown, guess it
if( !$mime ) $mime= $this->guessMimeType($path,false);
#special code for ogg - detect if it's video (theora),
#else label it as sound.
if( $mime=="application/ogg" && file_exists($path) ) {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
// Read a chunk of the file
$f = fopen( $path, "rt" );
if( !$f ) return MEDIATYPE_UNKNOWN;
$head = fread( $f, 256 );
fclose( $f );
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$head= strtolower( $head );
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#This is an UGLY HACK, file should be parsed correctly
if( strpos($head,'theora')!==false ) return MEDIATYPE_VIDEO;
elseif( strpos($head,'vorbis')!==false ) return MEDIATYPE_AUDIO;
elseif( strpos($head,'flac')!==false ) return MEDIATYPE_AUDIO;
elseif( strpos($head,'speex')!==false ) return MEDIATYPE_AUDIO;
else return MEDIATYPE_MULTIMEDIA;
2006-01-07 13:31:29 +00:00
}
2005-05-21 07:46:17 +00:00
#check for entry for full mime type
if( $mime ) {
$type= $this->findMediaType($mime);
if( $type!==MEDIATYPE_UNKNOWN ) return $type;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#check for entry for file extension
$e= NULL;
if( $path ) {
$i = strrpos( $path, '.' );
$e= strtolower( $i ? substr( $path, $i + 1 ) : '' );
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#TODO: look at multi-extension if this fails, parse from full path
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$type= $this->findMediaType('.'.$e);
if( $type!==MEDIATYPE_UNKNOWN ) return $type;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
#check major mime type
if( $mime ) {
$i= strpos($mime,'/');
if( $i !== false ) {
$major= substr($mime,0,$i);
$type= $this->findMediaType($major);
if( $type!==MEDIATYPE_UNKNOWN ) return $type;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if( !$type ) $type= MEDIATYPE_UNKNOWN;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return $type;
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
/** returns a media code matching the given mime type or file extension.
2006-01-07 13:09:30 +00:00
* File extensions are represented by a string starting with a dot (.) to
2005-05-21 07:46:17 +00:00
* distinguish them from mime types.
*
* This funktion relies on the mapping defined by $this->mMediaTypes
* @access private
2005-05-21 07:46:17 +00:00
*/
function findMediaType($extMime) {
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
if (strpos($extMime,'.')===0) { #if it's an extension, look up the mime types
$m= $this->getTypesForExtension(substr($extMime,1));
if (!$m) return MEDIATYPE_UNKNOWN;
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= explode(' ',$m);
}
else { #normalize mime type
if (isset($this->mMimeTypeAliases[$extMime])) {
$extMime= $this->mMimeTypeAliases[$extMime];
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
$m= array($extMime);
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
foreach ($m as $mime) {
foreach ($this->mMediaTypes as $type => $codes) {
if (in_array($mime,$codes,true)) return $type;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
return MEDIATYPE_UNKNOWN;
}
}
?>