Drupal modules for browsing and managing Fedora-based digital repositories.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.8 KiB

13 years ago
<?php
/**
* @file
* Replacement for the original islandora MimeClass.
* Does essentially the same thing, just using the built in drupal 7
* mime system.
13 years ago
*
* A nice added bonus is that this new class will put a note in watchdog when
* it encounters a filetype it doesnt know.
13 years ago
*/
class MimeDetect {
13 years ago
const DEFAULT_MIMETYPE = 'application/octet-stream';
const DEFAULT_EXTENSION = 'bin';
protected $mimeTypes;
protected $extTypes;
13 years ago
/**
* Construtor.
13 years ago
*/
public function __construct() {
// Mimetype list returned as a double assoc array with two entries:
// Mimetypes: Integer array of mimetypes
// Extensions: Assoc array of extensions
//
// Extension array can be used as a key to get mimetypes
// Example if $extensions['png'] == 5, then
// $mimetypes[5] = 'image/png'
// We want to combine this into 1 array for easy access.
$temp = file_mimetype_mapping();
$temp_mime_types = $temp['mimetypes'];
$temp_mime_ext = $temp['extensions'];
// Free the memory in temp since we don't need it anymore.
unset($temp);
// Combine the two arrays into one.
foreach ($temp_mime_ext as $key => $val) {
$this->mime_types[$key] = $temp_mime_types[$val];
13 years ago
}
// Flip the mime_type array to make the ext array.
$this->ext_types = array_flip($this->mime_types);
13 years ago
}
/**
* For backwards-compatibility with our old mimetype class.
*
* @param string $filename
* Filename to convert to mimetype.
13 years ago
*
* @return data
* Returns a string with the mimetype for the file.
*/
public function getType($filename) {
return $this->getMimetype($filename);
13 years ago
}
/**
* Returns a mimetype associated with the file extension of $filename.
*
* @param string $filename
* The filename we want the mime type of.
*
* @param bool $debug
* Enable or disable debug output mode.
*
* @return string
* Mimetype associated with the file extension of $filename.
13 years ago
*/
public function getMimetype($filename, $debug = FALSE) {
// The file extension will be the last index in the exploded string.
$ext = @end(explode('.', $filename));
$ext = strtolower($ext);
13 years ago
// Check the array for a predetermined mime type.
// If type not found, add a warning to watchdog.
if (!empty($this->mime_types[$ext])) {
if (TRUE === $debug) {
$return_type = $this->mime_types[$ext];
return array('mime_type' => $return_type, 'method' => 'from_array');
13 years ago
}
return $this->mime_types[$ext];
13 years ago
}
else {
// This file was not in the drupal mime system.
// Add a line to the watchdog informing us of this incident.
$err_msg = 'Found a file extension not covered in the drupal mime func:';
watchdog('MimeClass', $err_msg . $ext);
13 years ago
}
// By default return application octet stream.
13 years ago
if (TRUE == $debug) {
return array('mime_type' => 'application/octet-stream', 'method' => 'last_resort');
13 years ago
}
return 'application/octet-stream';
13 years ago
}
/**
* Returns *one* valid file extension for a given $mime_type.
*
* @param string $type
* String containing the mimetype
*
* @param bool $debug
* Toggle debug mode on/off
*
* @return string
* Return the file extension
13 years ago
*/
public function getExtension($type, $debug = FALSE) {
if (!empty($this->ext_types[$type])) {
if (TRUE == $debug) {
return array('extension' => $this->ext_types[$type], 'method' => 'from_array');
}
return $this->ext_types[$type];
13 years ago
}
else {
// Return bin by default. This could cause errors.
// Function should return false or -1 or something to be handled.
// Client side.
if (TRUE == $debug) {
return array('extension' => 'bin', 'method' => 'last_resort');
13 years ago
}
return 'bin';
13 years ago
}
}
}