2016-08-04 20:41:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2016-10-14 22:21:37 +03:00
|
|
|
|
|
|
|
namespace OC\Preview;
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
use OCP\Files\File;
|
2016-10-07 15:16:38 +03:00
|
|
|
use OCP\Files\IAppData;
|
2016-08-04 20:41:04 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2017-03-19 22:30:46 +03:00
|
|
|
use OCP\Files\NotPermittedException;
|
2016-10-07 15:16:38 +03:00
|
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
|
|
|
use OCP\Files\SimpleFS\ISimpleFolder;
|
2016-08-04 20:41:04 +03:00
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IImage;
|
|
|
|
use OCP\IPreview;
|
|
|
|
use OCP\Preview\IProvider;
|
2016-11-10 16:04:59 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2016-08-04 20:41:04 +03:00
|
|
|
|
2016-10-14 22:21:37 +03:00
|
|
|
class Generator {
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
/** @var IPreview */
|
|
|
|
private $previewManager;
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
2016-10-07 15:16:38 +03:00
|
|
|
/** @var IAppData */
|
|
|
|
private $appData;
|
2016-10-17 22:53:23 +03:00
|
|
|
/** @var GeneratorHelper */
|
|
|
|
private $helper;
|
2016-11-10 16:04:59 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
|
|
|
private $eventDispatcher;
|
2016-08-04 20:41:04 +03:00
|
|
|
|
2016-10-14 20:27:14 +03:00
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param IPreview $previewManager
|
|
|
|
* @param IAppData $appData
|
2016-10-17 22:53:23 +03:00
|
|
|
* @param GeneratorHelper $helper
|
2016-11-10 16:04:59 +03:00
|
|
|
* @param EventDispatcherInterface $eventDispatcher
|
2016-10-14 20:27:14 +03:00
|
|
|
*/
|
2016-08-04 20:41:04 +03:00
|
|
|
public function __construct(
|
|
|
|
IConfig $config,
|
|
|
|
IPreview $previewManager,
|
2016-10-17 22:53:23 +03:00
|
|
|
IAppData $appData,
|
2016-11-10 16:04:59 +03:00
|
|
|
GeneratorHelper $helper,
|
|
|
|
EventDispatcherInterface $eventDispatcher
|
2016-08-04 20:41:04 +03:00
|
|
|
) {
|
|
|
|
$this->config = $config;
|
|
|
|
$this->previewManager = $previewManager;
|
2016-10-07 15:16:38 +03:00
|
|
|
$this->appData = $appData;
|
2016-10-17 22:53:23 +03:00
|
|
|
$this->helper = $helper;
|
2016-11-10 16:04:59 +03:00
|
|
|
$this->eventDispatcher = $eventDispatcher;
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a preview of a file
|
|
|
|
*
|
|
|
|
* The cache is searched first and if nothing usable was found then a preview is
|
|
|
|
* generated by one of the providers
|
|
|
|
*
|
2016-10-16 17:48:11 +03:00
|
|
|
* @param File $file
|
2016-08-04 20:41:04 +03:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
|
|
|
* @param string $mode
|
2016-10-16 21:42:35 +03:00
|
|
|
* @param string $mimeType
|
2016-10-07 15:16:38 +03:00
|
|
|
* @return ISimpleFile
|
2016-08-04 20:41:04 +03:00
|
|
|
* @throws NotFoundException
|
2017-05-02 00:35:47 +03:00
|
|
|
* @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
|
2016-08-04 20:41:04 +03:00
|
|
|
*/
|
2016-10-16 21:42:35 +03:00
|
|
|
public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null) {
|
2016-11-10 16:04:59 +03:00
|
|
|
$this->eventDispatcher->dispatch(
|
|
|
|
IPreview::EVENT,
|
|
|
|
new GenericEvent($file,[
|
|
|
|
'width' => $width,
|
|
|
|
'height' => $height,
|
|
|
|
'crop' => $crop,
|
|
|
|
'mode' => $mode
|
|
|
|
])
|
|
|
|
);
|
|
|
|
|
2016-10-16 21:42:35 +03:00
|
|
|
if ($mimeType === null) {
|
|
|
|
$mimeType = $file->getMimeType();
|
|
|
|
}
|
|
|
|
if (!$this->previewManager->isMimeSupported($mimeType)) {
|
2016-08-04 20:41:04 +03:00
|
|
|
throw new NotFoundException();
|
|
|
|
}
|
|
|
|
|
2016-10-16 17:48:11 +03:00
|
|
|
$previewFolder = $this->getPreviewFolder($file);
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
// Get the max preview and infer the max preview sizes from that
|
2016-10-16 21:42:35 +03:00
|
|
|
$maxPreview = $this->getMaxPreview($previewFolder, $file, $mimeType);
|
2016-08-04 20:41:04 +03:00
|
|
|
list($maxWidth, $maxHeight) = $this->getPreviewSize($maxPreview);
|
|
|
|
|
|
|
|
// Calculate the preview size
|
|
|
|
list($width, $height) = $this->calculateSize($width, $height, $crop, $mode, $maxWidth, $maxHeight);
|
|
|
|
|
2017-03-19 22:23:23 +03:00
|
|
|
// No need to generate a preview that is just the max preview
|
|
|
|
if ($width === $maxWidth && $height === $maxHeight) {
|
|
|
|
return $maxPreview;
|
|
|
|
}
|
|
|
|
|
2016-08-04 20:41:04 +03:00
|
|
|
// Try to get a cached preview. Else generate (and store) one
|
|
|
|
try {
|
|
|
|
$file = $this->getCachedPreview($previewFolder, $width, $height, $crop);
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
$file = $this->generatePreview($previewFolder, $maxPreview, $width, $height, $crop, $maxWidth, $maxHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-10-07 15:16:38 +03:00
|
|
|
* @param ISimpleFolder $previewFolder
|
2016-10-16 17:48:11 +03:00
|
|
|
* @param File $file
|
2016-10-16 21:42:35 +03:00
|
|
|
* @param string $mimeType
|
2016-10-07 15:16:38 +03:00
|
|
|
* @return ISimpleFile
|
2016-08-04 20:41:04 +03:00
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2016-10-16 21:42:35 +03:00
|
|
|
private function getMaxPreview(ISimpleFolder $previewFolder, File $file, $mimeType) {
|
2016-08-04 20:41:04 +03:00
|
|
|
$nodes = $previewFolder->getDirectoryListing();
|
|
|
|
|
|
|
|
foreach ($nodes as $node) {
|
|
|
|
if (strpos($node->getName(), 'max')) {
|
|
|
|
return $node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$previewProviders = $this->previewManager->getProviders();
|
|
|
|
foreach ($previewProviders as $supportedMimeType => $providers) {
|
2016-10-16 21:42:35 +03:00
|
|
|
if (!preg_match($supportedMimeType, $mimeType)) {
|
2016-08-04 20:41:04 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($providers as $provider) {
|
2016-10-17 22:53:23 +03:00
|
|
|
$provider = $this->helper->getProvider($provider);
|
2016-08-04 20:41:04 +03:00
|
|
|
if (!($provider instanceof IProvider)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$maxWidth = (int)$this->config->getSystemValue('preview_max_x', 2048);
|
|
|
|
$maxHeight = (int)$this->config->getSystemValue('preview_max_y', 2048);
|
|
|
|
|
2016-10-17 22:53:23 +03:00
|
|
|
$preview = $this->helper->getThumbnail($provider, $file, $maxWidth, $maxHeight);
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
if (!($preview instanceof IImage)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-03-19 22:30:46 +03:00
|
|
|
$path = (string)$preview->width() . '-' . (string)$preview->height() . '-max.png';
|
|
|
|
try {
|
|
|
|
$file = $previewFolder->newFile($path);
|
|
|
|
$file->putContent($preview->data());
|
|
|
|
} catch (NotPermittedException $e) {
|
|
|
|
throw new NotFoundException();
|
|
|
|
}
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-10-07 15:16:38 +03:00
|
|
|
* @param ISimpleFile $file
|
2016-08-04 20:41:04 +03:00
|
|
|
* @return int[]
|
|
|
|
*/
|
2016-10-07 15:16:38 +03:00
|
|
|
private function getPreviewSize(ISimpleFile $file) {
|
2016-08-04 20:41:04 +03:00
|
|
|
$size = explode('-', $file->getName());
|
|
|
|
return [(int)$size[0], (int)$size[1]];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function generatePath($width, $height, $crop) {
|
2017-03-19 22:30:46 +03:00
|
|
|
$path = (string)$width . '-' . (string)$height;
|
2016-08-04 20:41:04 +03:00
|
|
|
if ($crop) {
|
|
|
|
$path .= '-crop';
|
|
|
|
}
|
|
|
|
$path .= '.png';
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
|
|
|
* @param string $mode
|
|
|
|
* @param int $maxWidth
|
|
|
|
* @param int $maxHeight
|
|
|
|
* @return int[]
|
|
|
|
*/
|
|
|
|
private function calculateSize($width, $height, $crop, $mode, $maxWidth, $maxHeight) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are not cropping we have to make sure the requested image
|
|
|
|
* respects the aspect ratio of the original.
|
|
|
|
*/
|
|
|
|
if (!$crop) {
|
|
|
|
$ratio = $maxHeight / $maxWidth;
|
|
|
|
|
|
|
|
if ($width === -1) {
|
|
|
|
$width = $height / $ratio;
|
|
|
|
}
|
|
|
|
if ($height === -1) {
|
|
|
|
$height = $width * $ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ratioH = $height / $maxHeight;
|
|
|
|
$ratioW = $width / $maxWidth;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill means that the $height and $width are the max
|
|
|
|
* Cover means min.
|
|
|
|
*/
|
2016-10-16 17:48:11 +03:00
|
|
|
if ($mode === IPreview::MODE_FILL) {
|
2016-08-04 20:41:04 +03:00
|
|
|
if ($ratioH > $ratioW) {
|
|
|
|
$height = $width * $ratio;
|
|
|
|
} else {
|
|
|
|
$width = $height / $ratio;
|
|
|
|
}
|
2016-10-16 17:48:11 +03:00
|
|
|
} else if ($mode === IPreview::MODE_COVER) {
|
2016-08-04 20:41:04 +03:00
|
|
|
if ($ratioH > $ratioW) {
|
|
|
|
$width = $height / $ratio;
|
|
|
|
} else {
|
|
|
|
$height = $width * $ratio;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($height !== $maxHeight && $width !== $maxWidth) {
|
|
|
|
/*
|
|
|
|
* Scale to the nearest power of two
|
|
|
|
*/
|
2017-03-19 22:30:46 +03:00
|
|
|
$pow2height = 2 ** ceil(log($height) / log(2));
|
|
|
|
$pow2width = 2 ** ceil(log($width) / log(2));
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
$ratioH = $height / $pow2height;
|
|
|
|
$ratioW = $width / $pow2width;
|
|
|
|
|
|
|
|
if ($ratioH < $ratioW) {
|
|
|
|
$width = $pow2width;
|
2017-03-19 22:30:46 +03:00
|
|
|
$height /= $ratioW;
|
2016-08-04 20:41:04 +03:00
|
|
|
} else {
|
|
|
|
$height = $pow2height;
|
2017-03-19 22:30:46 +03:00
|
|
|
$width /= $ratioH;
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the requested height and width fall within the max
|
|
|
|
* of the preview.
|
|
|
|
*/
|
|
|
|
if ($height > $maxHeight) {
|
|
|
|
$ratio = $height / $maxHeight;
|
|
|
|
$height = $maxHeight;
|
2017-03-19 22:30:46 +03:00
|
|
|
$width /= $ratio;
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
if ($width > $maxWidth) {
|
|
|
|
$ratio = $width / $maxWidth;
|
|
|
|
$width = $maxWidth;
|
2017-03-19 22:30:46 +03:00
|
|
|
$height /= $ratio;
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return [(int)round($width), (int)round($height)];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-10-07 15:16:38 +03:00
|
|
|
* @param ISimpleFolder $previewFolder
|
|
|
|
* @param ISimpleFile $maxPreview
|
2016-08-04 20:41:04 +03:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
2016-10-16 16:47:30 +03:00
|
|
|
* @param int $maxWidth
|
2016-08-04 20:41:04 +03:00
|
|
|
* @param int $maxHeight
|
2016-10-07 15:16:38 +03:00
|
|
|
* @return ISimpleFile
|
2016-08-04 20:41:04 +03:00
|
|
|
* @throws NotFoundException
|
2017-05-02 00:35:47 +03:00
|
|
|
* @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
|
2016-08-04 20:41:04 +03:00
|
|
|
*/
|
2016-10-07 15:16:38 +03:00
|
|
|
private function generatePreview(ISimpleFolder $previewFolder, ISimpleFile $maxPreview, $width, $height, $crop, $maxWidth, $maxHeight) {
|
2016-10-17 22:53:23 +03:00
|
|
|
$preview = $this->helper->getImage($maxPreview);
|
2016-08-04 20:41:04 +03:00
|
|
|
|
2017-05-01 15:03:00 +03:00
|
|
|
if (!$preview->valid()) {
|
|
|
|
throw new \InvalidArgumentException('Failed to generate preview, failed to load image');
|
|
|
|
}
|
|
|
|
|
2016-08-04 20:41:04 +03:00
|
|
|
if ($crop) {
|
|
|
|
if ($height !== $preview->height() && $width !== $preview->width()) {
|
|
|
|
//Resize
|
|
|
|
$widthR = $preview->width() / $width;
|
|
|
|
$heightR = $preview->height() / $height;
|
|
|
|
|
|
|
|
if ($widthR > $heightR) {
|
|
|
|
$scaleH = $height;
|
|
|
|
$scaleW = $maxWidth / $heightR;
|
|
|
|
} else {
|
|
|
|
$scaleH = $maxHeight / $widthR;
|
|
|
|
$scaleW = $width;
|
|
|
|
}
|
|
|
|
$preview->preciseResize(round($scaleW), round($scaleH));
|
|
|
|
}
|
|
|
|
$cropX = floor(abs($width - $preview->width()) * 0.5);
|
|
|
|
$cropY = 0;
|
|
|
|
$preview->crop($cropX, $cropY, $width, $height);
|
|
|
|
} else {
|
|
|
|
$preview->resize(max($width, $height));
|
|
|
|
}
|
|
|
|
|
2017-05-01 15:03:00 +03:00
|
|
|
|
2016-08-04 20:41:04 +03:00
|
|
|
$path = $this->generatePath($width, $height, $crop);
|
2017-03-19 22:30:46 +03:00
|
|
|
try {
|
|
|
|
$file = $previewFolder->newFile($path);
|
|
|
|
$file->putContent($preview->data());
|
|
|
|
} catch (NotPermittedException $e) {
|
|
|
|
throw new NotFoundException();
|
|
|
|
}
|
2016-08-04 20:41:04 +03:00
|
|
|
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-10-07 15:16:38 +03:00
|
|
|
* @param ISimpleFolder $previewFolder
|
2016-08-04 20:41:04 +03:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
2016-10-07 15:16:38 +03:00
|
|
|
* @return ISimpleFile
|
2016-08-04 20:41:04 +03:00
|
|
|
*
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2016-10-07 15:16:38 +03:00
|
|
|
private function getCachedPreview(ISimpleFolder $previewFolder, $width, $height, $crop) {
|
2016-08-04 20:41:04 +03:00
|
|
|
$path = $this->generatePath($width, $height, $crop);
|
|
|
|
|
2016-10-07 15:16:38 +03:00
|
|
|
return $previewFolder->getFile($path);
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the specific preview folder for this file
|
|
|
|
*
|
2016-10-16 17:48:11 +03:00
|
|
|
* @param File $file
|
2016-10-07 15:16:38 +03:00
|
|
|
* @return ISimpleFolder
|
2016-08-04 20:41:04 +03:00
|
|
|
*/
|
2016-10-16 17:48:11 +03:00
|
|
|
private function getPreviewFolder(File $file) {
|
2016-08-04 20:41:04 +03:00
|
|
|
try {
|
2016-10-16 17:48:11 +03:00
|
|
|
$folder = $this->appData->getFolder($file->getId());
|
2016-08-04 20:41:04 +03:00
|
|
|
} catch (NotFoundException $e) {
|
2016-10-16 17:48:11 +03:00
|
|
|
$folder = $this->appData->newFolder($file->getId());
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
|
2016-10-07 15:16:38 +03:00
|
|
|
return $folder;
|
2016-08-04 20:41:04 +03:00
|
|
|
}
|
|
|
|
}
|