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.

133 lines
3.6 KiB

13 years ago
<?php
13 years ago
/**
* @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
private $mime_types;
private $ext_types;
13 years ago
/**
* Construtor
13 years ago
*/
public function __construct() {
//Drupal returns the mimetype list as a double assoc array with two entries:
//mimetypes: Integer array of mimetypes
//extensions: Assoc array of extensions
//
//The extension array can be used as a key to get the value in the mimetypes
//array.
//
//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
}
/**
* function: getType
* description: An alias to get_mimetype,
* for backwards-compatibility with our old mimetype class.
13 years ago
*
* @param type $filename
* @return type
*/
function getType($filename) {
return $this->getMimetype($filename);
13 years ago
}
/**
* function: get_mimetype
* description: returns a mimetype associated with the
* file extension of $filename
*
* @param type $filename
* @param type $debug
* @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 not found, add a warning
//to the watch dog and use the system command to get a value
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
}
/**
* function: get_extension
* description: returns *one* valid file extension for a given $mime_type
*
* @param type $mime_type
* @param type $debug
* @return type
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');
13 years ago
}
return $this->ext_types[$type];
13 years ago
}
else{
//return bin by default... this could cause errors if handled incorrectly
//and probably 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
}
}
}