2013-04-25 14:51:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author josh4trunks <joshruehlig@gmail.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-04-25 14:51:44 +04:00
|
|
|
*/
|
2013-05-29 14:33:24 +04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2015-04-02 11:31:24 +03:00
|
|
|
abstract class Image extends Provider {
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2014-11-28 11:16:35 +03:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-05-28 12:21:02 +04:00
|
|
|
//get fileinfo
|
2013-07-30 14:29:12 +04:00
|
|
|
$fileInfo = $fileview->getFileInfo($path);
|
2015-06-06 17:21:36 +03:00
|
|
|
if (!$fileInfo) {
|
2013-07-30 14:29:12 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-05-28 12:21:02 +04:00
|
|
|
|
2015-01-19 02:22:55 +03: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-13 03:36:42 +04:00
|
|
|
$image = new \OC_Image();
|
2014-05-12 13:27:39 +04:00
|
|
|
|
2015-09-30 15:07:59 +03:00
|
|
|
$useTempFile = $fileInfo->isEncrypted() || !$fileInfo->getStorage()->isLocal();
|
|
|
|
if ($useTempFile) {
|
2014-05-12 13:27:39 +04:00
|
|
|
$fileName = $fileview->toTmpFile($path);
|
|
|
|
} else {
|
|
|
|
$fileName = $fileview->getLocalFile($path);
|
2013-05-28 12:21:02 +04:00
|
|
|
}
|
2014-05-12 13:27:39 +04:00
|
|
|
$image->loadFromFile($fileName);
|
2016-04-11 15:04:57 +03:00
|
|
|
$image->fixOrientation();
|
2015-09-30 15:07:59 +03:00
|
|
|
if ($useTempFile) {
|
|
|
|
unlink($fileName);
|
|
|
|
}
|
2015-06-06 17:21:36 +03:00
|
|
|
if ($image->valid()) {
|
|
|
|
$image->scaleDownToFit($maxX, $maxY);
|
2013-05-28 12:21:02 +04:00
|
|
|
|
2015-06-06 17:21:36 +03:00
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
return false;
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|
2014-04-29 19:07:10 +04:00
|
|
|
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|