2013-04-25 14:51:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
|
2013-05-17 14:00:32 +04:00
|
|
|
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
|
2013-04-25 14:51:44 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2013-05-29 14:33:24 +04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2013-05-29 15:11:43 +04:00
|
|
|
class Unknown extends Provider {
|
2013-04-25 14:51:44 +04:00
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getMimeType() {
|
2013-04-25 14:51:44 +04:00
|
|
|
return '/.*/';
|
|
|
|
}
|
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-06-12 18:18:16 +04:00
|
|
|
$mimetype = $fileview->getMimeType($path);
|
|
|
|
if(substr_count($mimetype, '/')) {
|
|
|
|
list($type, $subtype) = explode('/', $mimetype);
|
|
|
|
}
|
|
|
|
|
|
|
|
$iconsroot = \OC::$SERVERROOT . '/core/img/filetypes/';
|
|
|
|
|
|
|
|
$icons = array($mimetype, $type, 'text');
|
|
|
|
foreach($icons as $icon) {
|
|
|
|
$icon = str_replace('/', '-', $icon);
|
|
|
|
|
|
|
|
$iconpath = $iconsroot . $icon . '.png';
|
|
|
|
|
|
|
|
if(file_exists($iconpath)) {
|
|
|
|
return new \OC_Image($iconpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2013-05-17 21:08:16 +04:00
|
|
|
}
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|
|
|
|
|
2013-06-13 11:52:39 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\Unknown');
|