22use Psr\Log\LoggerAwareInterface;
23use Psr\Log\LoggerInterface;
30class MimeAnalyzer
implements LoggerAwareInterface {
38 protected $initCallback;
40 protected $detectCallback;
42 protected $guessCallback;
44 protected $extCallback;
46 protected $mediaTypes =
null;
48 protected $mimeTypeAliases =
null;
50 protected $mimetoExt =
null;
53 public $mExtToMime =
null;
56 protected $IEAnalyzer;
59 private $extraTypes =
'';
61 private $extraInfo =
'';
85 protected static $wellKnownTypes = <<<EOT
86application/ogg ogx ogg ogm ogv oga spx opus
88application/vnd.oasis.opendocument.chart odc
89application/vnd.oasis.opendocument.chart-
template otc
90application/vnd.oasis.opendocument.database odb
91application/vnd.oasis.opendocument.formula odf
92application/vnd.oasis.opendocument.formula-
template otf
93application/vnd.oasis.opendocument.graphics odg
94application/vnd.oasis.opendocument.graphics-
template otg
95application/vnd.oasis.opendocument.image odi
96application/vnd.oasis.opendocument.image-
template oti
97application/vnd.oasis.opendocument.presentation odp
98application/vnd.oasis.opendocument.presentation-
template otp
99application/vnd.oasis.opendocument.spreadsheet ods
100application/vnd.oasis.opendocument.spreadsheet-
template ots
101application/vnd.oasis.opendocument.text odt
102application/vnd.oasis.opendocument.text-master otm
103application/vnd.oasis.opendocument.text-
template ott
104application/vnd.oasis.opendocument.text-web oth
105application/javascript js
106application/x-shockwave-flash swf
107audio/midi mid midi kar
108audio/mpeg mpga mpa mp2 mp3
109audio/x-aiff aif aiff aifc
111audio/ogg oga spx ogg opus
112audio/opus opus ogg oga ogg spx
115image/jpeg jpeg jpg jpe
123image/x-portable-pixmap ppm
137 protected static $wellKnownInfo = <<<EOT
138application/pdf [OFFICE]
139application/vnd.oasis.opendocument.chart [OFFICE]
140application/vnd.oasis.opendocument.chart-
template [OFFICE]
141application/vnd.oasis.opendocument.database [OFFICE]
142application/vnd.oasis.opendocument.formula [OFFICE]
143application/vnd.oasis.opendocument.formula-
template [OFFICE]
144application/vnd.oasis.opendocument.graphics [OFFICE]
145application/vnd.oasis.opendocument.graphics-
template [OFFICE]
146application/vnd.oasis.opendocument.image [OFFICE]
147application/vnd.oasis.opendocument.image-
template [OFFICE]
148application/vnd.oasis.opendocument.presentation [OFFICE]
149application/vnd.oasis.opendocument.presentation-
template [OFFICE]
150application/vnd.oasis.opendocument.spreadsheet [OFFICE]
151application/vnd.oasis.opendocument.spreadsheet-
template [OFFICE]
152application/vnd.oasis.opendocument.text [OFFICE]
153application/vnd.oasis.opendocument.text-
template [OFFICE]
154application/vnd.oasis.opendocument.text-master [OFFICE]
155application/vnd.oasis.opendocument.text-web [OFFICE]
156application/javascript text/javascript application/x-javascript [EXECUTABLE]
157application/x-shockwave-flash [MULTIMEDIA]
161audio/mp3 audio/mpeg [AUDIO]
162application/ogg audio/ogg video/ogg [MULTIMEDIA]
163image/x-bmp image/x-ms-bmp image/bmp [BITMAP]
167image/svg+xml [DRAWING]
169image/vnd.djvu [BITMAP]
171image/x-portable-pixmap [BITMAP]
176unknown/unknown application/octet-stream application/x-empty [UNKNOWN]
195 $this->typeFile =
$params[
'typeFile'];
196 $this->infoFile =
$params[
'infoFile'];
197 $this->xmlTypes =
$params[
'xmlTypes'];
198 $this->initCallback =
$params[
'initCallback'] ??
null;
199 $this->detectCallback =
$params[
'detectCallback'] ??
null;
200 $this->guessCallback =
$params[
'guessCallback'] ??
null;
201 $this->extCallback =
$params[
'extCallback'] ??
null;
202 $this->logger =
$params[
'logger'] ?? new \Psr\Log\NullLogger();
207 protected function loadFiles() {
212 # Allow media handling extensions adding MIME-types and MIME-info
213 if ( $this->initCallback ) {
214 call_user_func( $this->initCallback, $this );
217 $types = self::$wellKnownTypes;
219 $mimeTypeFile = $this->typeFile;
220 if ( $mimeTypeFile ) {
221 if ( is_file( $mimeTypeFile ) && is_readable( $mimeTypeFile ) ) {
222 $this->logger->info( __METHOD__ .
": loading mime types from $mimeTypeFile\n" );
224 $types .= file_get_contents( $mimeTypeFile );
226 $this->logger->info( __METHOD__ .
": can't load mime types from $mimeTypeFile\n" );
229 $this->logger->info( __METHOD__ .
230 ": no mime types file defined, using built-ins only.\n" );
233 $types .=
"\n" . $this->extraTypes;
235 $types = str_replace( [
"\r\n",
"\n\r",
"\n\n",
"\r\r",
"\r" ],
"\n", $types );
236 $types = str_replace(
"\t",
" ", $types );
238 $this->mimetoExt = [];
239 $this->mExtToMime = [];
241 $lines = explode(
"\n", $types );
247 if ( strpos(
$s,
'#' ) === 0 ) {
251 $s = strtolower(
$s );
252 $i = strpos(
$s,
' ' );
254 if ( $i ===
false ) {
259 $ext = trim( substr(
$s, $i + 1 ) );
261 if ( empty(
$ext ) ) {
265 if ( !empty( $this->mimetoExt[
$mime] ) ) {
271 $extensions = explode(
' ',
$ext );
273 foreach ( $extensions as
$e ) {
279 if ( !empty( $this->mExtToMime[
$e] ) ) {
280 $this->mExtToMime[
$e] .=
' ' .
$mime;
291 $mimeInfoFile = $this->infoFile;
293 $info = self::$wellKnownInfo;
295 if ( $mimeInfoFile ) {
296 if ( is_file( $mimeInfoFile ) && is_readable( $mimeInfoFile ) ) {
297 $this->logger->info( __METHOD__ .
": loading mime info from $mimeInfoFile\n" );
299 $info .= file_get_contents( $mimeInfoFile );
301 $this->logger->info( __METHOD__ .
": can't load mime info from $mimeInfoFile\n" );
304 $this->logger->info( __METHOD__ .
305 ": no mime info file defined, using built-ins only.\n" );
308 $info .=
"\n" . $this->extraInfo;
310 $info = str_replace( [
"\r\n",
"\n\r",
"\n\n",
"\r\r",
"\r" ],
"\n", $info );
311 $info = str_replace(
"\t",
" ", $info );
313 $this->mimeTypeAliases = [];
314 $this->mediaTypes = [];
316 $lines = explode(
"\n", $info );
322 if ( strpos(
$s,
'#' ) === 0 ) {
326 $s = strtolower(
$s );
327 $i = strpos(
$s,
' ' );
329 if ( $i ===
false ) {
333 # print "processing MIME INFO line $s<br>";
336 if ( preg_match(
'!\[\s*(\w+)\s*\]!',
$s, $match ) ) {
337 $s = preg_replace(
'!\[\s*(\w+)\s*\]!',
'',
$s );
338 $mtype = trim( strtoupper( $match[1] ) );
343 $m = explode(
' ',
$s );
345 if ( !isset( $this->mediaTypes[$mtype] ) ) {
346 $this->mediaTypes[$mtype] = [];
349 foreach ( $m as
$mime ) {
351 if ( empty(
$mime ) ) {
355 $this->mediaTypes[$mtype][] =
$mime;
358 if ( count( $m ) > 1 ) {
360 $mCount = count( $m );
361 for ( $i = 1; $i < $mCount; $i += 1 ) {
363 $this->mimeTypeAliases[
$mime] = $main;
369 public function setLogger( LoggerInterface $logger ) {
370 $this->logger = $logger;
380 $this->extraTypes .=
"\n" . $types;
389 public function addExtraInfo( $info ) {
390 $this->extraInfo .=
"\n" . $info;
401 public function getExtensionsForType(
$mime ) {
405 if ( isset( $this->mimetoExt[
$mime] ) ) {
406 return $this->mimetoExt[
$mime];
410 if ( isset( $this->mimeTypeAliases[
$mime] ) ) {
412 if ( isset( $this->mimetoExt[
$mime] ) ) {
413 return $this->mimetoExt[
$mime];
427 public function getTypesForExtension(
$ext ) {
430 $r = $this->mExtToMime[
$ext] ??
null;
441 public function guessTypesForExtension(
$ext ) {
442 $m = $this->getTypesForExtension(
$ext );
443 if ( is_null( $m ) ) {
449 $m = preg_replace(
'/\s.*$/',
'', $m );
463 public function isMatchingExtension( $extension,
$mime ) {
464 $ext = $this->getExtensionsForType(
$mime );
472 $extension = strtolower( $extension );
473 return in_array( $extension,
$ext );
484 public function isPHPImageType(
$mime ) {
487 'image/gif',
'image/jpeg',
'image/png',
488 'image/x-bmp',
'image/xbm',
'image/tiff',
489 'image/jp2',
'image/jpeg2000',
'image/iff',
490 'image/xbm',
'image/x-xbitmap',
491 'image/vnd.wap.wbmp',
'image/vnd.xiff',
493 'application/x-shockwave-flash',
496 return in_array(
$mime, $types );
511 function isRecognizableExtension( $extension ) {
514 'gif',
'jpeg',
'jpg',
'png',
'swf',
'psd',
515 'bmp',
'tiff',
'tif',
'jpc',
'jp2',
516 'jpx',
'jb2',
'swc',
'iff',
'wbmp',
520 'djvu',
'ogx',
'ogg',
'ogv',
'oga',
'spx',
'opus',
521 'mid',
'pdf',
'wmf',
'xcf',
'webm',
'mkv',
'mka',
530 return in_array( strtolower( $extension ), $types );
544 public function improveTypeFromExtension(
$mime,
$ext ) {
545 if (
$mime ===
'unknown/unknown' ) {
546 if ( $this->isRecognizableExtension(
$ext ) ) {
547 $this->logger->info( __METHOD__ .
': refusing to guess mime type for .' .
548 "$ext file, we should have recognized it\n" );
552 $mime = $this->guessTypesForExtension(
$ext );
554 } elseif (
$mime ===
'application/x-opc+zip' ) {
555 if ( $this->isMatchingExtension(
$ext,
$mime ) ) {
558 $mime = $this->guessTypesForExtension(
$ext );
560 $this->logger->info( __METHOD__ .
561 ": refusing to guess better type for $mime file, " .
562 ".$ext is not a known OPC extension.\n" );
563 $mime =
'application/zip';
565 } elseif (
$mime ===
'text/plain' && $this->findMediaType(
".$ext" ) ===
MEDIATYPE_TEXT ) {
570 $mime = $this->guessTypesForExtension(
$ext );
573 # Media handling extensions can improve the MIME detected
574 $callback = $this->extCallback;
579 if ( isset( $this->mimeTypeAliases[
$mime] ) ) {
583 $this->logger->info( __METHOD__ .
": improved mime type for .$ext: $mime\n" );
601 public function guessMimeType( $file,
$ext =
true ) {
603 $this->logger->info( __METHOD__ .
604 ": WARNING: use of the \$ext parameter is deprecated. " .
605 "Use improveTypeFromExtension(\$mime, \$ext) instead.\n" );
608 $mime = $this->doGuessMimeType( $file,
$ext );
611 $this->logger->info( __METHOD__ .
612 ": internal type detection failed for $file (.$ext)...\n" );
613 $mime = $this->detectMimeType( $file,
$ext );
616 if ( isset( $this->mimeTypeAliases[
$mime] ) ) {
620 $this->logger->info( __METHOD__ .
": guessed mime type of $file: $mime\n" );
634 private function doGuessMimeType( $file,
$ext ) {
636 Wikimedia\suppressWarnings();
637 $f = fopen( $file,
'rb' );
638 Wikimedia\restoreWarnings();
641 return 'unknown/unknown';
644 $fsize = filesize( $file );
645 if ( $fsize ===
false ) {
646 return 'unknown/unknown';
649 $head = fread( $f, 1024 );
650 $tailLength = min( 65558, $fsize );
651 if ( fseek( $f, -1 * $tailLength, SEEK_END ) === -1 ) {
652 throw new UnexpectedValueException(
653 "Seeking $tailLength bytes from EOF failed in " . __METHOD__ );
655 $tail = $tailLength ? fread( $f, $tailLength ) :
'';
658 $this->logger->info( __METHOD__ .
659 ": analyzing head and tail of $file for magic numbers.\n" );
664 'MThd' =>
'audio/midi',
665 'OggS' =>
'application/ogg',
666 'ID3' =>
'audio/mpeg',
667 "\xff\xfb" =>
'audio/mpeg',
668 "\xff\xf3" =>
'audio/mpeg',
669 "\xff\xe3" =>
'audio/mpeg',
673 "\x01\x00\x09\x00" =>
'application/x-msmetafile',
674 "\xd7\xcd\xc6\x9a" =>
'application/x-msmetafile',
675 '%PDF' =>
'application/pdf',
676 'gimp xcf' =>
'image/x-xcf',
679 'MZ' =>
'application/octet-stream',
680 "\xca\xfe\xba\xbe" =>
'application/octet-stream',
681 "\x7fELF" =>
'application/octet-stream',
684 foreach ( $headers as $magic => $candidate ) {
685 if ( strncmp( $head, $magic, strlen( $magic ) ) == 0 ) {
686 $this->logger->info( __METHOD__ .
687 ": magic header in $file recognized as $candidate\n" );
693 if ( strncmp( $head, pack(
"C4", 0x1a, 0x45, 0xdf, 0xa3 ), 4 ) == 0 ) {
694 $doctype = strpos( $head,
"\x42\x82" );
697 $data = substr( $head, $doctype + 3, 8 );
698 if ( strncmp( $data,
"matroska", 8 ) == 0 ) {
699 $this->logger->info( __METHOD__ .
": recognized file as video/x-matroska\n" );
700 return "video/x-matroska";
701 } elseif ( strncmp( $data,
"webm", 4 ) == 0 ) {
703 $videotrack = strpos( $head,
"\x86\x85V_VP" );
707 $this->logger->info( __METHOD__ .
": recognized file as video/webm\n" );
711 $this->logger->info( __METHOD__ .
": recognized file as audio/webm\n" );
715 $this->logger->info( __METHOD__ .
": unknown EBML file\n" );
716 return "unknown/unknown";
720 if ( strncmp( $head,
"RIFF", 4 ) == 0 &&
721 strncmp( substr( $head, 8, 7 ),
"WEBPVP8", 7 ) == 0
723 $this->logger->info( __METHOD__ .
": recognized file as image/webp\n" );
739 if ( ( strpos( $head,
'<?php' ) !==
false ) ||
740 ( strpos( $head,
"<\x00?\x00p\x00h\x00p" ) !==
false ) ||
741 ( strpos( $head,
"<\x00?\x00 " ) !==
false ) ||
742 ( strpos( $head,
"<\x00?\x00\n" ) !==
false ) ||
743 ( strpos( $head,
"<\x00?\x00\t" ) !==
false ) ||
744 ( strpos( $head,
"<\x00?\x00=" ) !==
false )
746 $this->logger->info( __METHOD__ .
": recognized $file as application/x-php\n" );
747 return 'application/x-php';
753 Wikimedia\suppressWarnings();
755 Wikimedia\restoreWarnings();
756 if ( $xml->wellFormed ) {
757 $xmlTypes = $this->xmlTypes;
758 if ( isset( $xmlTypes[$xml->getRootElement()] ) ) {
759 return $xmlTypes[$xml->getRootElement()];
761 return 'application/xml';
771 if ( substr( $head, 0, 2 ) ==
"#!" ) {
772 $script_type =
"ASCII";
773 } elseif ( substr( $head, 0, 5 ) ==
"\xef\xbb\xbf#!" ) {
774 $script_type =
"UTF-8";
775 } elseif ( substr( $head, 0, 7 ) ==
"\xfe\xff\x00#\x00!" ) {
776 $script_type =
"UTF-16BE";
777 } elseif ( substr( $head, 0, 7 ) ==
"\xff\xfe#\x00!" ) {
778 $script_type =
"UTF-16LE";
781 if ( $script_type ) {
782 if ( $script_type !==
"UTF-8" && $script_type !==
"ASCII" ) {
784 $pack = [
'UTF-16BE' =>
'n*',
'UTF-16LE' =>
'v*' ];
785 $chars = unpack( $pack[$script_type], substr( $head, 2 ) );
787 foreach ( $chars as $codepoint ) {
788 if ( $codepoint < 128 ) {
789 $head .= chr( $codepoint );
798 if ( preg_match(
'%/?([^\s]+/)(\w+)%', $head, $match ) ) {
799 $mime =
"application/x-{$match[2]}";
800 $this->logger->info( __METHOD__ .
": shell script recognized as $mime\n" );
806 if ( strpos( $tail,
"PK\x05\x06" ) !==
false ) {
807 $this->logger->info( __METHOD__ .
": ZIP header present in $file\n" );
808 return $this->detectZipType( $head, $tail,
$ext );
814 stripos( $head,
'SOLID ' ) === 0 &&
815 preg_match(
'/\RENDSOLID .*$/i', $tail ) ) {
817 return 'application/sla';
818 } elseif ( $fsize > 84 ) {
820 $triangles = substr( $head, 80, 4 );
821 $triangles = unpack(
'V', $triangles );
822 $triangles = reset( $triangles );
823 if ( $triangles !==
false && $fsize === 84 + ( $triangles * 50 ) ) {
824 return 'application/sla';
828 Wikimedia\suppressWarnings();
829 $gis = getimagesize( $file );
830 Wikimedia\restoreWarnings();
832 if ( $gis && isset( $gis[
'mime'] ) ) {
833 $mime = $gis[
'mime'];
834 $this->logger->info( __METHOD__ .
": getimagesize detected $file as $mime\n" );
838 # Media handling extensions can guess the MIME by content
839 # It's intentionally here so that if core is wrong about a type (false positive),
840 # people will hopefully nag and submit patches :)
842 # Some strings by reference for performance - assuming well-behaved hooks
843 $callback = $this->guessCallback;
845 $callback( $this, $head, $tail, $file,
$mime );
864 function detectZipType(
$header, $tail =
null,
$ext =
false ) {
865 if (
$ext ) { # TODO:
remove $ext param
866 $this->logger->info( __METHOD__ .
867 ": WARNING: use of the \$ext parameter is deprecated. " .
868 "Use improveTypeFromExtension(\$mime, \$ext) instead.\n" );
871 $mime =
'application/zip';
881 'presentation-template',
883 'spreadsheet-template',
891 $types =
'(?:' . implode(
'|', $opendocTypes ) .
')';
892 $opendocRegex =
"/^mimetype(application\/vnd\.oasis\.opendocument\.$types)/";
894 $openxmlRegex =
"/^\[Content_Types\].xml/";
898 $this->logger->info( __METHOD__ .
": detected $mime from ZIP archive\n" );
899 } elseif ( preg_match( $openxmlRegex, substr(
$header, 30 ) ) ) {
900 $mime =
"application/x-opc+zip";
901 # TODO: remove the block below, as soon as improveTypeFromExtension is used everywhere
902 if (
$ext !==
true &&
$ext !==
false ) {
907 if ( $this->isMatchingExtension(
$ext,
$mime ) ) {
911 $mime = $this->guessTypesForExtension(
$ext );
913 $mime =
"application/zip";
916 $this->logger->info( __METHOD__ .
917 ": detected an Open Packaging Conventions archive: $mime\n" );
918 } elseif ( substr(
$header, 0, 8 ) ==
"\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1" &&
919 ( $headerpos = strpos( $tail,
"PK\x03\x04" ) ) !==
false &&
920 preg_match( $openxmlRegex, substr( $tail, $headerpos + 30 ) ) ) {
921 if ( substr(
$header, 512, 4 ) ==
"\xEC\xA5\xC1\x00" ) {
922 $mime =
"application/msword";
924 switch ( substr(
$header, 512, 6 ) ) {
925 case "\xEC\xA5\xC1\x00\x0E\x00":
926 case "\xEC\xA5\xC1\x00\x1C\x00":
927 case "\xEC\xA5\xC1\x00\x43\x00":
928 $mime =
"application/vnd.ms-powerpoint";
930 case "\xFD\xFF\xFF\xFF\x10\x00":
931 case "\xFD\xFF\xFF\xFF\x1F\x00":
932 case "\xFD\xFF\xFF\xFF\x22\x00":
933 case "\xFD\xFF\xFF\xFF\x23\x00":
934 case "\xFD\xFF\xFF\xFF\x28\x00":
935 case "\xFD\xFF\xFF\xFF\x29\x00":
936 case "\xFD\xFF\xFF\xFF\x10\x02":
937 case "\xFD\xFF\xFF\xFF\x1F\x02":
938 case "\xFD\xFF\xFF\xFF\x22\x02":
939 case "\xFD\xFF\xFF\xFF\x23\x02":
940 case "\xFD\xFF\xFF\xFF\x28\x02":
941 case "\xFD\xFF\xFF\xFF\x29\x02":
942 $mime =
"application/vnd.msexcel";
946 $this->logger->info( __METHOD__ .
947 ": detected a MS Office document with OPC trailer\n" );
949 $this->logger->info( __METHOD__ .
": unable to identify type of ZIP archive\n" );
971 private function detectMimeType( $file,
$ext =
true ) {
974 $this->logger->info( __METHOD__ .
975 ": WARNING: use of the \$ext parameter is deprecated. "
976 .
"Use improveTypeFromExtension(\$mime, \$ext) instead.\n" );
979 $callback = $this->detectCallback;
982 $m = $callback( $file );
984 $m = mime_content_type( $file );
989 $m = preg_replace(
'![;, ].*$!',
'', $m ); # strip charset, etc
991 $m = strtolower( $m );
993 if ( strpos( $m,
'unknown' ) !==
false ) {
996 $this->logger->info( __METHOD__ .
": magic mime type of $file: $m\n" );
1002 if (
$ext ===
true ) {
1003 $i = strrpos( $file,
'.' );
1004 $ext = strtolower( $i ? substr( $file, $i + 1 ) :
'' );
1007 if ( $this->isRecognizableExtension(
$ext ) ) {
1008 $this->logger->info( __METHOD__ .
": refusing to guess mime type for .$ext file, "
1009 .
"we should have recognized it\n" );
1011 $m = $this->guessTypesForExtension(
$ext );
1013 $this->logger->info( __METHOD__ .
": extension mime type of $file: $m\n" );
1020 $this->logger->info( __METHOD__ .
": failed to guess mime type for $file!\n" );
1021 return 'unknown/unknown';
1040 function getMediaType( $path =
null,
$mime =
null ) {
1041 if ( !
$mime && !$path ) {
1047 $mime = $this->guessMimeType( $path,
false );
1052 if (
$mime ==
'application/ogg' && file_exists( $path ) ) {
1054 $f = fopen( $path,
"rt" );
1058 $head = fread( $f, 256 );
1061 $head = str_replace(
'ffmpeg2theora',
'', strtolower( $head ) );
1064 if ( strpos( $head,
'theora' ) !==
false ) {
1066 } elseif ( strpos( $head,
'vorbis' ) !==
false ) {
1068 } elseif ( strpos( $head,
'flac' ) !==
false ) {
1070 } elseif ( strpos( $head,
'speex' ) !==
false ) {
1072 } elseif ( strpos( $head,
'opus' ) !==
false ) {
1090 $i = strrpos( $path,
'.' );
1091 $e = strtolower( $i ? substr( $path, $i + 1 ) :
'' );
1094 $type = $this->findMediaType(
'.' .
$e );
1102 $i = strpos(
$mime,
'/' );
1103 if ( $i !==
false ) {
1104 $major = substr(
$mime, 0, $i );
1105 $type = $this->findMediaType( $major );
1129 function findMediaType( $extMime ) {
1130 if ( strpos( $extMime,
'.' ) === 0 ) {
1132 $m = $this->getTypesForExtension( substr( $extMime, 1 ) );
1137 $m = explode(
' ', $m );
1140 if ( isset( $this->mimeTypeAliases[$extMime] ) ) {
1141 $extMime = $this->mimeTypeAliases[$extMime];
1147 foreach ( $m as
$mime ) {
1148 foreach ( $this->mediaTypes as
$type => $codes ) {
1149 if ( in_array(
$mime, $codes,
true ) ) {
1163 public function getMediaTypes() {
1164 return array_keys( $this->mediaTypes );
1176 public function getIEMimeTypes( $fileName, $chunk, $proposed ) {
1177 $ca = $this->getIEContentAnalyzer();
1178 return $ca->getRealMimesFromData( $fileName, $chunk, $proposed );
1186 protected function getIEContentAnalyzer() {
1187 if ( is_null( $this->IEAnalyzer ) ) {
1190 return $this->IEAnalyzer;
This class simulates Microsoft Internet Explorer's terribly broken and insecure MIME type detection a...
for adding new MIME info to the list Use $mimeMagic addExtraTypes( $stringOfTypes)
returning false will NOT prevent logging $e
This document describes how event hooks work in the Renameuser extension For a more comprehensive guide to navigate to your root MediaWiki directory and read docs hooks txt
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
const MEDIATYPE_MULTIMEDIA
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext