2013-04-25 06:51:44 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author josh4trunks <joshruehlig@gmail.com>
|
2015-06-25 05:43:55 -04:00
|
|
|
* @author Olivier Paroz <github@oparoz.com>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04: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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
2013-04-25 06:51:44 -04:00
|
|
|
*/
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2013-05-29 06:33:24 -04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
|
2019-06-04 09:25:25 -04:00
|
|
|
use OCP\Files\File;
|
|
|
|
|
use OCP\IImage;
|
|
|
|
|
|
|
|
|
|
abstract class Image extends ProviderV2 {
|
2013-05-17 13:08:16 -04:00
|
|
|
|
2014-11-28 03:16:35 -05:00
|
|
|
/**
|
|
|
|
|
* {@inheritDoc}
|
|
|
|
|
*/
|
2019-06-04 09:25:25 -04:00
|
|
|
public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage {
|
2015-01-18 18:22:55 -05:00
|
|
|
$maxSizeForImages = \OC::$server->getConfig()->getSystemValue('preview_max_filesize_image', 50);
|
2019-06-04 09:25:25 -04:00
|
|
|
$size = $file->getSize();
|
2015-01-18 18:22:55 -05:00
|
|
|
|
|
|
|
|
if ($maxSizeForImages !== -1 && $size > ($maxSizeForImages * 1024 * 1024)) {
|
2019-06-04 09:25:25 -04:00
|
|
|
return null;
|
2015-01-18 18:22:55 -05:00
|
|
|
}
|
|
|
|
|
|
2013-11-12 18:36:42 -05:00
|
|
|
$image = new \OC_Image();
|
2014-05-12 05:27:39 -04:00
|
|
|
|
2019-06-04 09:25:25 -04:00
|
|
|
$fileName = $this->getLocalFile($file);
|
|
|
|
|
|
2014-05-12 05:27:39 -04:00
|
|
|
$image->loadFromFile($fileName);
|
2016-04-11 08:04:57 -04:00
|
|
|
$image->fixOrientation();
|
2019-06-04 09:25:25 -04:00
|
|
|
|
|
|
|
|
$this->cleanTmpFiles();
|
|
|
|
|
|
2015-06-06 10:21:36 -04:00
|
|
|
if ($image->valid()) {
|
|
|
|
|
$image->scaleDownToFit($maxX, $maxY);
|
2013-05-28 04:21:02 -04:00
|
|
|
|
2015-06-06 10:21:36 -04:00
|
|
|
return $image;
|
|
|
|
|
}
|
2019-06-04 09:25:25 -04:00
|
|
|
return null;
|
2013-04-25 06:51:44 -04:00
|
|
|
}
|
|
|
|
|
}
|