added a file to fix wrong recognised mime-types

This commit is contained in:
Georg Ehrke 2012-01-12 18:26:13 +01:00
parent 9e105d9bd7
commit a0ff21a232
2 changed files with 20 additions and 1 deletions

View File

@ -132,6 +132,13 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function getMimeType($fspath){
if($this->is_readable($fspath)){
$mimeType='application/octet-stream';
if ($mimeType=='application/octet-stream') {
self::$mimetypes = include('mimetypes.fixlist.php');
$extention=strtolower(strrchr(basename($fspath), "."));
$extention=substr($extention,1);//remove leading .
$mimeType=(isset(self::$mimetypes[$extention]))?self::$mimetypes[$extention]:'application/octet-stream';
}
if (@is_dir($this->datadir.$fspath)) {
// directories are easy
return "httpd/unix-directory";
@ -158,7 +165,7 @@ class OC_Filestorage_Local extends OC_Filestorage{
}
if ($mimeType=='application/octet-stream') {
// Fallback solution: (try to guess the type by the file extension
if(!self::$mimetypes){
if(!self::$mimetypes || self::$mimetypes == include('mimetypes.list.php')){
self::$mimetypes=include('mimetypes.list.php');
}
$extention=strtolower(strrchr(basename($fspath), "."));

12
lib/mimetypes.fixlist.php Normal file
View File

@ -0,0 +1,12 @@
<?php
return array(
'ics'=>'text/calendar',
'ical'=>'text/calendar',
'js'=>'application/javascript',
'odt'=>'application/vnd.oasis.opendocument.text',
'ods'=>'application/vnd.oasis.opendocument.spreadsheet',
'odg'=>'application/vnd.oasis.opendocument.graphics',
'odp'=>'application/vnd.oasis.opendocument.presentation',
'pl'=>'text/x-script.perl',
'py'=>'text/x-script.phyton',
);