MediaWiki  master
MimeAnalyzer Class Reference

Implements functions related to MIME types such as detection and mapping to file extension. More...

Inheritance diagram for MimeAnalyzer:
Collaboration diagram for MimeAnalyzer:

Public Member Functions

 __construct (array $params)
 
 addExtraInfo (string $info)
 Adds to the list mapping MIME to media type. More...
 
 addExtraTypes (string $types)
 Adds to the list mapping MIME to file extensions. More...
 
 detectZipTypeFromFile ( $handle)
 Detect application-specific file type of a given ZIP file. More...
 
 getExtensionFromMimeTypeOrNull (string $mime)
 Returns a single file extension for a given MIME type or null if unknown. More...
 
 getExtensionsForType ( $mime)
 Returns a list of file extensions for a given MIME type as a space separated string or null if the MIME type was unrecognized. More...
 
 getExtensionsFromMimeType (string $mime)
 Returns an array of file extensions associated with a given MIME type. More...
 
 getMediaType (string $path=null, string $mime=null)
 Determine the media type code for a file, using its MIME type, name and possibly its contents. More...
 
 getMediaTypes ()
 Returns an array of media types (MEDIATYPE_xxx constants) More...
 
 getMimeTypeFromExtensionOrNull (string $ext)
 Returns a single MIME type for a given file extension or null if unknown. More...
 
 getMimeTypesFromExtension (string $ext)
 Returns an array of MIME types associated with a given file extension. More...
 
 getTypesForExtension ( $ext)
 Returns a list of MIME types for a given file extension as a space separated string or null if the extension was unrecognized. More...
 
 guessMimeType (string $file, $ext=true)
 MIME type detection. More...
 
 guessTypesForExtension ( $ext)
 Returns a single file extension for a given MIME type or null if unknown. More...
 
 improveTypeFromExtension (string $mime, string $ext)
 Improves a MIME type using the file extension. More...
 
 isMatchingExtension (string $extension, string $mime)
 Tests if the extension matches the given MIME type. More...
 
 isPHPImageType (string $mime)
 Returns true if the MIME type is known to represent an image format supported by the PHP GD library. More...
 
 isRecognizableExtension (string $extension)
 Returns true if the extension represents a type which can be reliably detected from its content. More...
 
 setLogger (LoggerInterface $logger)
 

Public Attributes

array $mExtToMime = []
 Map of file extensions types to MIME types (as a space separated list) More...
 

Protected Member Functions

 loadFiles ()
 
 parseMimeInfo (string $rawMimeInfo)
 
 parseMimeTypes (string $rawMimeTypes)
 

Protected Attributes

callable $detectCallback
 
callable $extCallback
 
array< string, string[]> $extToMimes = []
 Map of file extensions to MIME types. More...
 
callable $guessCallback
 
string $infoFile
 
callable $initCallback
 
array $mediaTypes = null
 Mapping of media types to arrays of MIME types. More...
 
array< string, string[]> $mimeToExts = []
 Map of MIME types to file extensions. More...
 
array $mimeTypeAliases = null
 Map of MIME type aliases. More...
 
string $typeFile
 
string $xmlTypes
 

Detailed Description

Implements functions related to MIME types such as detection and mapping to file extension.

Since
1.28

Definition at line 34 of file MimeAnalyzer.php.

Constructor & Destructor Documentation

◆ __construct()

MimeAnalyzer::__construct ( array  $params)
Parameters
array$paramsConfiguration map, includes:
  • typeFile: path to file with the list of known MIME types
  • infoFile: path to file with the MIME type info
  • xmlTypes: map of root element names to XML MIME types
  • initCallback: initialization callback that is passed this object [optional]
  • detectCallback: alternative to finfo that returns the mime type for a file. For example, the callback can return the output of "file -bi". [optional]
  • guessCallback: callback to improve the guessed MIME type using the file data. This is intended for fixing mistakes in fileinfo or "detectCallback". [optional]
  • extCallback: callback to improve the guessed MIME type using the extension. [optional]
  • logger: PSR-3 logger [optional]
Note
Constructing these instances is expensive due to file reads. A service or singleton pattern should be used to avoid creating instances again and again.

Definition at line 87 of file MimeAnalyzer.php.

References loadFiles().

Member Function Documentation

◆ addExtraInfo()

MimeAnalyzer::addExtraInfo ( string  $info)

Adds to the list mapping MIME to media type.

As an extension author, you are encouraged to submit patches to MediaWiki's core to add new MIME info to MimeMap.php.

Parameters
string$info

Definition at line 261 of file MimeAnalyzer.php.

◆ addExtraTypes()

MimeAnalyzer::addExtraTypes ( string  $types)

Adds to the list mapping MIME to file extensions.

As an extension author, you are encouraged to submit patches to MediaWiki's core to add new MIME types to MimeMap.php.

Parameters
string$types

Definition at line 249 of file MimeAnalyzer.php.

◆ detectZipTypeFromFile()

MimeAnalyzer::detectZipTypeFromFile (   $handle)

Detect application-specific file type of a given ZIP file.

If it can't tell, return 'application/zip'.

Definition at line 800 of file MimeAnalyzer.php.

References ZipDirectoryReader\readHandle().

◆ getExtensionFromMimeTypeOrNull()

MimeAnalyzer::getExtensionFromMimeTypeOrNull ( string  $mime)

Returns a single file extension for a given MIME type or null if unknown.

This is always the first type from the list returned by getExtensionsFromMimeType($mime).

Since
1.35
Parameters
string$mime
Returns
string|null

Definition at line 356 of file MimeAnalyzer.php.

◆ getExtensionsForType()

MimeAnalyzer::getExtensionsForType (   $mime)

Returns a list of file extensions for a given MIME type as a space separated string or null if the MIME type was unrecognized.

Resolves MIME type aliases.

Deprecated:
since 1.35 Use getExtensionsFromMimeType() instead.
Parameters
string$mime
Returns
string|null

Definition at line 274 of file MimeAnalyzer.php.

References $mime.

◆ getExtensionsFromMimeType()

MimeAnalyzer::getExtensionsFromMimeType ( string  $mime)

Returns an array of file extensions associated with a given MIME type.

The returned array is empty if the MIME type was unrecognized. Resolves MIME type aliases.

Since
1.35
Parameters
string$mime
Returns
string[]

Definition at line 288 of file MimeAnalyzer.php.

References $mime.

◆ getMediaType()

MimeAnalyzer::getMediaType ( string  $path = null,
string  $mime = null 
)

Determine the media type code for a file, using its MIME type, name and possibly its contents.

This function relies on the findMediaType(), mapping extensions and MIME types to media types.

Todo:

analyse file if need be

look at multiple extension, separately and together.

Parameters
string | null$pathFull path to the image file, in case we have to look at the contents (if null, only the MIME type is used to determine the media type code).
string | null$mimeMIME type. If null it will be guessed using guessMimeType.
Returns
string A value to be used with the MEDIATYPE_xxx constants.

Definition at line 947 of file MimeAnalyzer.php.

References MEDIATYPE_UNKNOWN.

◆ getMediaTypes()

MimeAnalyzer::getMediaTypes ( )

Returns an array of media types (MEDIATYPE_xxx constants)

Returns
string[]

Definition at line 1068 of file MimeAnalyzer.php.

Referenced by MediaWiki\Specials\SpecialNewFiles\__construct().

◆ getMimeTypeFromExtensionOrNull()

MimeAnalyzer::getMimeTypeFromExtensionOrNull ( string  $ext)

Returns a single MIME type for a given file extension or null if unknown.

This is always the first type from the list returned by getMimeTypesFromExtension($ext).

Since
1.35
Parameters
string$ext
Returns
string|null

Definition at line 318 of file MimeAnalyzer.php.

◆ getMimeTypesFromExtension()

MimeAnalyzer::getMimeTypesFromExtension ( string  $ext)

Returns an array of MIME types associated with a given file extension.

The returned array is empty if the file extension is not associated with any MIME types.

Since
1.35
Parameters
string$ext
Returns
string[]

Definition at line 305 of file MimeAnalyzer.php.

◆ getTypesForExtension()

MimeAnalyzer::getTypesForExtension (   $ext)

Returns a list of MIME types for a given file extension as a space separated string or null if the extension was unrecognized.

Deprecated:
since 1.35 Use getMimeTypesFromExtension() instead.
Parameters
string$ext
Returns
string|null

Definition at line 343 of file MimeAnalyzer.php.

References $ext.

◆ guessMimeType()

MimeAnalyzer::guessMimeType ( string  $file,
  $ext = true 
)

MIME type detection.

This uses detectMimeType to detect the MIME type of the file, but applies additional checks to determine some well known file formats that may be missed or misinterpreted by the default MIME detection (namely XML based formats like XHTML or SVG, as well as ZIP based formats like OPC/ODF files).

Parameters
string$fileThe file to check
string | bool$extThe file extension, or true (default) to extract it from the filename. Set it to false to ignore the extension. DEPRECATED! Set to false, use improveTypeFromExtension($mime, $ext) later to improve MIME type.
Returns
string The MIME type of $file

Definition at line 509 of file MimeAnalyzer.php.

◆ guessTypesForExtension()

MimeAnalyzer::guessTypesForExtension (   $ext)

Returns a single file extension for a given MIME type or null if unknown.

This is always the first type from the list returned by getExtensionsFromMimeType($mime).

Deprecated:
since 1.35 Use getMimeTypeFromExtensionOrNull() instead.
Parameters
string$ext
Returns
string|null

Definition at line 331 of file MimeAnalyzer.php.

References $ext.

◆ improveTypeFromExtension()

MimeAnalyzer::improveTypeFromExtension ( string  $mime,
string  $ext 
)

Improves a MIME type using the file extension.

Some file formats are very generic, so their MIME type is not very meaningful. A more useful MIME type can be derived by looking at the file extension. Typically, this method would be called on the result of guessMimeType().

XXX: Null-returning behavior is probably an accident and definitely confusing (T253483).

Parameters
string$mimeThe MIME type, typically guessed from a file's content.
string$extThe file extension, as taken from the file name
Returns
string|null The improved MIME type, or null if the MIME type is unknown/unknown and the extension is not recognized.

Definition at line 451 of file MimeAnalyzer.php.

References $ext, and $mime.

◆ isMatchingExtension()

MimeAnalyzer::isMatchingExtension ( string  $extension,
string  $mime 
)

Tests if the extension matches the given MIME type.

Returns true if a match was found, null if the MIME type is unknown, and false if the MIME type is known but no matches where found.

Parameters
string$extension
string$mime
Returns
bool|null

Definition at line 370 of file MimeAnalyzer.php.

◆ isPHPImageType()

MimeAnalyzer::isPHPImageType ( string  $mime)

Returns true if the MIME type is known to represent an image format supported by the PHP GD library.

Deprecated:
since 1.40
Parameters
string$mime
Returns
bool

Definition at line 388 of file MimeAnalyzer.php.

◆ isRecognizableExtension()

MimeAnalyzer::isRecognizableExtension ( string  $extension)

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.
Parameters
string$extension
Returns
bool

Definition at line 416 of file MimeAnalyzer.php.

◆ loadFiles()

MimeAnalyzer::loadFiles ( )
protected

Definition at line 100 of file MimeAnalyzer.php.

Referenced by __construct().

◆ parseMimeInfo()

MimeAnalyzer::parseMimeInfo ( string  $rawMimeInfo)
protected

Definition at line 183 of file MimeAnalyzer.php.

◆ parseMimeTypes()

MimeAnalyzer::parseMimeTypes ( string  $rawMimeTypes)
protected

Definition at line 150 of file MimeAnalyzer.php.

◆ setLogger()

MimeAnalyzer::setLogger ( LoggerInterface  $logger)

Definition at line 237 of file MimeAnalyzer.php.

Member Data Documentation

◆ $detectCallback

callable MimeAnalyzer::$detectCallback
protected

Definition at line 44 of file MimeAnalyzer.php.

◆ $extCallback

callable MimeAnalyzer::$extCallback
protected

Definition at line 48 of file MimeAnalyzer.php.

◆ $extToMimes

array<string,string[]> MimeAnalyzer::$extToMimes = []
protected

Map of file extensions to MIME types.

Definition at line 56 of file MimeAnalyzer.php.

◆ $guessCallback

callable MimeAnalyzer::$guessCallback
protected

Definition at line 46 of file MimeAnalyzer.php.

◆ $infoFile

string MimeAnalyzer::$infoFile
protected

Definition at line 38 of file MimeAnalyzer.php.

◆ $initCallback

callable MimeAnalyzer::$initCallback
protected

Definition at line 42 of file MimeAnalyzer.php.

◆ $mediaTypes

array MimeAnalyzer::$mediaTypes = null
protected

Mapping of media types to arrays of MIME types.

Definition at line 50 of file MimeAnalyzer.php.

◆ $mExtToMime

array MimeAnalyzer::$mExtToMime = []

Map of file extensions types to MIME types (as a space separated list)

Definition at line 59 of file MimeAnalyzer.php.

◆ $mimeToExts

array<string,string[]> MimeAnalyzer::$mimeToExts = []
protected

Map of MIME types to file extensions.

Definition at line 54 of file MimeAnalyzer.php.

◆ $mimeTypeAliases

array MimeAnalyzer::$mimeTypeAliases = null
protected

Map of MIME type aliases.

Definition at line 52 of file MimeAnalyzer.php.

◆ $typeFile

string MimeAnalyzer::$typeFile
protected

Definition at line 36 of file MimeAnalyzer.php.

◆ $xmlTypes

string MimeAnalyzer::$xmlTypes
protected

Definition at line 40 of file MimeAnalyzer.php.


The documentation for this class was generated from the following file: