BlueSpice MediaWiki master
|
Public Member Functions | |
__construct () | |
getRealMimesFromData ($fileName, $chunk, $proposed) | |
translateMimeType ($type) | |
getMimesFromData ($fileName, $chunk, $proposed) | |
Protected Member Functions | |
getMimeTypeForVersion ($version, $fileName, $chunk, $proposed) | |
sampleData ($version, $chunk) | |
getDataFormat ($version, $type) | |
Protected Attributes | |
$baseTypeTable | |
$addedTypes | |
$registry | |
$versions = [ 'ie05', 'ie06', 'ie07', 'ie07.strict', 'ie07.nohtml' ] | |
$typeTable = [] | |
This class simulates Microsoft Internet Explorer's terribly broken and insecure MIME type detection algorithm. It can be used to check web uploads with an apparently safe type, to see if IE will reinterpret them to produce something dangerous.
It is full of bugs and strange design choices should not under any circumstances be used to determine a MIME type to present to a user or client. (Apple Safari developers, this means you too.)
This class is based on a disassembly of IE 5.0, 6.0 and 7.0. Although I have attempted to ensure that this code works in exactly the same way as Internet Explorer, it does not share any source code, or creative choices such as variable names, thus I (Tim Starling) claim copyright on it.
It may be redistributed without restriction. To aid reuse, this class does not depend on any MediaWiki module.
IEContentAnalyzer::__construct | ( | ) |
constructor
|
protected |
string | $version | |
string | null | $type |
IEContentAnalyzer::getMimesFromData | ( | $fileName, | |
$chunk, | |||
$proposed | |||
) |
Get the untranslated MIME types for all known versions
string | $fileName | the file name (unused at present) |
string | $chunk | the first 256 bytes of the file |
string | $proposed | the MIME type proposed by the server |
|
protected |
Get the MIME type for a given named version
string | $version | |
string | $fileName | |
string | $chunk | |
string | $proposed |
IEContentAnalyzer::getRealMimesFromData | ( | $fileName, | |
$chunk, | |||
$proposed | |||
) |
Get the MIME types from getMimesFromData(), but convert the result from IE's idiosyncratic private types into something other apps will understand.
string | $fileName | the file name (unused at present) |
string | $chunk | the first 256 bytes of the file |
string | $proposed | the MIME type proposed by the server |
|
protected |
Do heuristic checks on the bulk of the data sample. Search for HTML tags.
string | $version | |
string | $chunk |
IEContentAnalyzer::translateMimeType | ( | $type | ) |
Translate a MIME type from IE's idiosyncratic private types into more commonly understood type strings
string | $type |
|
protected |
Changes to the type table in later versions of IE
|
protected |
Relevant data taken from the type table in IE 5
|
protected |
An approximation of the "Content Type" values in HKEY_CLASSES_ROOT in a typical Windows installation.
Used for extension to MIME type mapping if detection fails.
|
protected |
Type table with versions expanded
|
protected |
IE versions which have been analysed to bring you this class, and for which some substantive difference exists. These will appear as keys in the return value of getRealMimesFromData(). The names are chosen to sort correctly.