nextcloud/lib/preview/unknown.php

43 lines
1,015 B
PHP
Raw Normal View History

2013-04-25 06:51:44 -04:00
<?php
/**
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
2013-05-17 06:00:32 -04:00
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
2013-04-25 06: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 06:33:24 -04:00
namespace OC\Preview;
2013-05-29 07:11:43 -04:00
class Unknown extends Provider {
2013-04-25 06:51:44 -04:00
2013-05-29 07:03:33 -04:00
public function getMimeType() {
2013-04-25 06:51:44 -04:00
return '/.*/';
}
2013-05-29 07:03:33 -04:00
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
2013-06-12 10:18:16 -04:00
$mimetype = $fileview->getMimeType($path);
if(substr_count($mimetype, '/')) {
list($type, $subtype) = explode('/', $mimetype);
}
$iconsroot = \OC::$SERVERROOT . '/core/img/filetypes/';
2013-07-11 06:28:41 -04:00
if(isset($type)){
$icons = array($mimetype, $type, 'text');
}else{
$icons = array($mimetype, 'text');
}
2013-06-12 10:18:16 -04:00
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 13:08:16 -04:00
}
2013-04-25 06:51:44 -04:00
}
\OC\Preview::registerProvider('OC\Preview\Unknown');