2013-05-28 13:29:01 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-05-29 14:33:24 +04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2013-05-29 15:11:43 +04:00
|
|
|
class TXT extends Provider {
|
2013-05-28 13:29:01 +04:00
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getMimeType() {
|
2013-05-28 13:29:01 +04:00
|
|
|
return '/text\/.*/';
|
|
|
|
}
|
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-05-28 13:29:01 +04:00
|
|
|
$content = $fileview->fopen($path, 'r');
|
|
|
|
$content = stream_get_contents($content);
|
|
|
|
|
|
|
|
$lines = preg_split("/\r\n|\n|\r/", $content);
|
|
|
|
$numoflines = count($lines);
|
|
|
|
|
|
|
|
$fontsize = 5; //5px
|
|
|
|
$linesize = ceil($fontsize * 1.25);
|
|
|
|
|
|
|
|
$image = imagecreate($maxX, $maxY);
|
|
|
|
$imagecolor = imagecolorallocate($image, 255, 255, 255);
|
|
|
|
$textcolor = imagecolorallocate($image, 0, 0, 0);
|
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
foreach($lines as $index => $line) {
|
2013-05-28 13:29:01 +04:00
|
|
|
$index = $index + 1;
|
|
|
|
|
|
|
|
$x = (int) 1;
|
|
|
|
$y = (int) ($index * $linesize) - $fontsize;
|
|
|
|
|
|
|
|
imagestring($image, 1, $x, $y, $line, $textcolor);
|
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
if(($index * $linesize) >= $maxY) {
|
2013-05-28 13:29:01 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$image = new \OC_Image($image);
|
2013-05-28 13:31:48 +04:00
|
|
|
|
2013-05-28 13:29:01 +04:00
|
|
|
if (!$image->valid()) return false;
|
|
|
|
|
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-29 15:09:38 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\TXT');
|
|
|
|
|
|
|
|
class PHP extends TXT {
|
|
|
|
|
|
|
|
public function getMimeType() {
|
|
|
|
return '/application\/x-php/';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC\Preview::registerProvider('OC\Preview\PHP');
|