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);
|
|
|
|
|
2013-08-15 15:25:45 +04:00
|
|
|
//don't create previews of empty text files
|
2013-08-14 23:20:03 +04:00
|
|
|
if(trim($content) === '') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-28 13:29:01 +04:00
|
|
|
$lines = preg_split("/\r\n|\n|\r/", $content);
|
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
$fontSize = 5; //5px
|
|
|
|
$lineSize = ceil($fontSize * 1.25);
|
2013-05-28 13:29:01 +04:00
|
|
|
|
|
|
|
$image = imagecreate($maxX, $maxY);
|
2013-07-30 14:29:12 +04:00
|
|
|
imagecolorallocate($image, 255, 255, 255);
|
|
|
|
$textColor = imagecolorallocate($image, 0, 0, 0);
|
2013-05-28 13:29:01 +04:00
|
|
|
|
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;
|
2013-07-30 14:29:12 +04:00
|
|
|
$y = (int) ($index * $lineSize) - $fontSize;
|
2013-05-28 13:29:01 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
imagestring($image, 1, $x, $y, $line, $textColor);
|
2013-05-28 13:29:01 +04:00
|
|
|
|
2013-07-30 14:29:12 +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-06-11 12:56:16 +04:00
|
|
|
return $image->valid() ? $image : false;
|
2013-05-28 13:29:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 16:46:20 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\TXT');
|
2013-05-29 15:09:38 +04:00
|
|
|
|
|
|
|
class PHP extends TXT {
|
|
|
|
|
|
|
|
public function getMimeType() {
|
|
|
|
return '/application\/x-php/';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-29 16:46:20 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\PHP');
|
2013-05-30 13:12:12 +04:00
|
|
|
|
|
|
|
class JavaScript extends TXT {
|
|
|
|
|
|
|
|
public function getMimeType() {
|
|
|
|
return '/application\/javascript/';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-29 16:46:20 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\JavaScript');
|