blob: 6e1dc06c1bca7f310b1c063026d90c92ca0cbcea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
/**
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Preview;
class Unknown extends Provider {
public function getMimeType() {
return '/.*/';
}
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
$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;
}
}
\OC\Preview::registerProvider('OC\Preview\Unknown');
|