only text/plain is now used to generate text previews
blacklist implementation remove because no longer needed
This commit is contained in:
parent
26c0007a5f
commit
51e6565aab
1 changed files with 10 additions and 11 deletions
|
@ -9,20 +9,19 @@ namespace OC\Preview;
|
||||||
|
|
||||||
class TXT extends Provider {
|
class TXT extends Provider {
|
||||||
|
|
||||||
private static $blacklist = array(
|
|
||||||
'text/calendar',
|
|
||||||
'text/vcard',
|
|
||||||
);
|
|
||||||
|
|
||||||
public function getMimeType() {
|
public function getMimeType() {
|
||||||
return '/text\/.*/';
|
return '/text\/plain/';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $path
|
||||||
|
* @param int $maxX
|
||||||
|
* @param int $maxY
|
||||||
|
* @param boolean $scalingup
|
||||||
|
* @param \OC\Files\View $fileview
|
||||||
|
* @return bool|\OC_Image
|
||||||
|
*/
|
||||||
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
||||||
$mimetype = $fileview->getMimeType($path);
|
|
||||||
if(in_array($mimetype, self::$blacklist)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$content = $fileview->fopen($path, 'r');
|
$content = $fileview->fopen($path, 'r');
|
||||||
$content = stream_get_contents($content);
|
$content = stream_get_contents($content);
|
||||||
|
|
Loading…
Reference in a new issue