2013-04-25 10:51:44 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
|
2013-05-17 10:00:32 +00:00
|
|
|
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
|
2013-04-25 10:51:44 +00:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2013-05-29 10:33:24 +00:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2013-05-29 11:11:43 +00:00
|
|
|
class Image extends Provider {
|
2014-11-28 08:16:35 +00:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2013-05-29 11:03:33 +00:00
|
|
|
public function getMimeType() {
|
2014-11-23 18:11:03 +00:00
|
|
|
return '/image\/(?!tiff$)(?!svg.*).*/';
|
2013-04-25 10:51:44 +00:00
|
|
|
}
|
2013-05-17 17:08:16 +00:00
|
|
|
|
2014-11-28 08:16:35 +00:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2013-05-29 11:03:33 +00:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-05-28 08:21:02 +00:00
|
|
|
//get fileinfo
|
2013-07-30 10:29:12 +00:00
|
|
|
$fileInfo = $fileview->getFileInfo($path);
|
|
|
|
if(!$fileInfo) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-28 08:21:02 +00:00
|
|
|
|
2015-01-18 23:22:55 +00:00
|
|
|
$maxSizeForImages = \OC::$server->getConfig()->getSystemValue('preview_max_filesize_image', 50);
|
|
|
|
$size = $fileInfo->getSize();
|
|
|
|
|
|
|
|
if ($maxSizeForImages !== -1 && $size > ($maxSizeForImages * 1024 * 1024)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-12 23:36:42 +00:00
|
|
|
$image = new \OC_Image();
|
2014-05-12 09:27:39 +00:00
|
|
|
|
2013-07-30 10:29:12 +00:00
|
|
|
if($fileInfo['encrypted'] === true) {
|
2014-05-12 09:27:39 +00:00
|
|
|
$fileName = $fileview->toTmpFile($path);
|
|
|
|
} else {
|
|
|
|
$fileName = $fileview->getLocalFile($path);
|
2013-05-28 08:21:02 +00:00
|
|
|
}
|
2014-05-12 09:27:39 +00:00
|
|
|
$image->loadFromFile($fileName);
|
2014-07-09 21:07:58 +00:00
|
|
|
$image->fixOrientation();
|
2013-05-28 08:21:02 +00:00
|
|
|
|
2013-06-11 08:56:16 +00:00
|
|
|
return $image->valid() ? $image : false;
|
2013-04-25 10:51:44 +00:00
|
|
|
}
|
2014-04-29 15:07:10 +00:00
|
|
|
|
2013-04-25 10:51:44 +00:00
|
|
|
}
|