nextcloud/lib/private/preview.php

769 lines
18 KiB
PHP
Raw Normal View History

<?php
/**
2013-04-25 13:18:45 +04:00
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
* 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-10 01:59:16 +04:00
*
2013-04-25 13:18:45 +04:00
* Thumbnails:
* structure of filename:
* /data/user/thumbnails/pathhash/x-y.png
*
2013-04-25 13:18:45 +04:00
*/
2013-05-29 14:33:24 +04:00
namespace OC;
2014-04-04 13:37:47 +04:00
use OC\Preview\Provider;
2013-08-19 14:16:55 +04:00
require_once 'preview/image.php';
require_once 'preview/movies.php';
require_once 'preview/mp3.php';
require_once 'preview/pdf.php';
require_once 'preview/svg.php';
require_once 'preview/txt.php';
require_once 'preview/unknown.php';
require_once 'preview/office.php';
2013-05-29 14:33:24 +04:00
class Preview {
2013-07-10 19:57:04 +04:00
//the thumbnail folder
2013-04-25 13:18:45 +04:00
const THUMBNAILS_FOLDER = 'thumbnails';
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
//config
2013-07-11 21:03:21 +04:00
private $maxScaleFactor;
private $configMaxX;
private $configMaxY;
2013-04-25 13:18:45 +04:00
//fileview object
2013-08-19 14:16:55 +04:00
private $fileView = null;
private $userView = null;
2013-05-10 01:59:16 +04:00
//vars
private $file;
private $maxX;
private $maxY;
2014-04-04 18:21:50 +04:00
private $scalingUp;
private $mimeType;
private $keepAspect = false;
2013-05-17 21:08:16 +04:00
//filemapper used for deleting previews
// index is path, value is fileinfo
static public $deleteFileMapper = array();
2013-09-05 01:45:11 +04:00
/**
2014-04-04 13:37:47 +04:00
* preview images object
*
2013-09-05 01:45:11 +04:00
* @var \OC_Image
*/
2013-05-10 01:59:16 +04:00
private $preview;
//preview providers
static private $providers = array();
static private $registeredProviders = array();
2014-02-27 16:15:18 +04:00
/**
* @var \OCP\Files\FileInfo
*/
protected $info;
2013-04-25 13:18:45 +04:00
/**
* @brief check if thumbnail or bigger version of thumbnail of file is cached
2013-07-11 21:21:37 +04:00
* @param string $user userid - if no user is given, OC_User::getUser will be used
* @param string $root path of root
* @param string $file The path to the file where you want a thumbnail from
* @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image
* @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image
2013-07-30 14:29:12 +04:00
* @param bool $scalingUp Disable/Enable upscaling of previews
2014-04-21 17:44:54 +04:00
* @throws \Exception
* @return mixed (bool / string)
2014-02-27 16:15:18 +04:00
* false if thumbnail does not exist
* path to thumbnail if thumbnail exists
*/
public function __construct($user = '', $root = '/', $file = '', $maxX = 1, $maxY = 1, $scalingUp = true) {
//init fileviews
2014-02-27 16:15:18 +04:00
if ($user === '') {
$user = \OC_User::getUser();
}
$this->fileView = new \OC\Files\View('/' . $user . '/' . $root);
$this->userView = new \OC\Files\View('/' . $user);
2013-05-10 01:59:16 +04:00
//set config
2013-07-11 21:03:21 +04:00
$this->configMaxX = \OC_Config::getValue('preview_max_x', null);
$this->configMaxY = \OC_Config::getValue('preview_max_y', null);
$this->maxScaleFactor = \OC_Config::getValue('preview_max_scale_factor', 2);
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
//save parameters
2013-07-10 19:57:04 +04:00
$this->setFile($file);
$this->setMaxX($maxX);
$this->setMaxY($maxY);
2013-07-30 14:29:12 +04:00
$this->setScalingUp($scalingUp);
2013-05-10 01:59:16 +04:00
2013-07-10 19:57:04 +04:00
$this->preview = null;
2013-05-10 01:59:16 +04:00
2013-07-10 19:57:04 +04:00
//check if there are preview backends
2014-02-27 16:15:18 +04:00
if (empty(self::$providers)) {
self::initProviders();
2013-07-10 19:57:04 +04:00
}
2013-06-13 11:52:39 +04:00
2014-02-27 16:15:18 +04:00
if (empty(self::$providers)) {
2013-07-10 19:57:04 +04:00
\OC_Log::write('core', 'No preview providers exist', \OC_Log::ERROR);
throw new \Exception('No preview providers');
2013-05-10 01:59:16 +04:00
}
}
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
/**
* @brief returns the path of the file you want a thumbnail from
* @return string
2014-02-27 16:15:18 +04:00
*/
public function getFile() {
2013-05-10 01:59:16 +04:00
return $this->file;
}
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
/**
* @brief returns the max width of the preview
* @return integer
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getMaxX() {
2013-05-10 01:59:16 +04:00
return $this->maxX;
}
/**
* @brief returns the max height of the preview
* @return integer
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getMaxY() {
2013-05-10 01:59:16 +04:00
return $this->maxY;
}
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
/**
* @brief returns whether or not scalingup is enabled
* @return bool
2014-02-27 16:15:18 +04:00
*/
2013-07-30 14:29:12 +04:00
public function getScalingUp() {
2014-04-04 18:21:50 +04:00
return $this->scalingUp;
2013-05-10 01:59:16 +04:00
}
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
/**
* @brief returns the name of the thumbnailfolder
* @return string
2014-02-27 16:15:18 +04:00
*/
2013-07-10 19:57:04 +04:00
public function getThumbnailsFolder() {
2013-05-10 01:59:16 +04:00
return self::THUMBNAILS_FOLDER;
}
/**
* @brief returns the max scale factor
* @return string
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getMaxScaleFactor() {
2013-07-11 21:03:21 +04:00
return $this->maxScaleFactor;
2013-05-10 01:59:16 +04:00
}
/**
* @brief returns the max width set in ownCloud's config
* @return string
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getConfigMaxX() {
2013-07-11 21:03:21 +04:00
return $this->configMaxX;
2013-05-10 01:59:16 +04:00
}
/**
* @brief returns the max height set in ownCloud's config
* @return string
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getConfigMaxY() {
2013-07-11 21:03:21 +04:00
return $this->configMaxY;
2013-05-10 01:59:16 +04:00
}
2013-05-17 21:08:16 +04:00
2014-04-21 17:44:54 +04:00
/**
* @return false|Files\FileInfo|\OCP\Files\FileInfo
*/
2014-02-27 16:15:18 +04:00
protected function getFileInfo() {
$absPath = $this->fileView->getAbsolutePath($this->file);
$absPath = Files\Filesystem::normalizePath($absPath);
if(array_key_exists($absPath, self::$deleteFileMapper)) {
$this->info = self::$deleteFileMapper[$absPath];
} else if (!$this->info) {
2014-02-27 16:15:18 +04:00
$this->info = $this->fileView->getFileInfo($this->file);
}
return $this->info;
}
2013-07-10 19:57:04 +04:00
/**
* @brief set the path of the file you want a thumbnail from
2013-07-11 21:21:37 +04:00
* @param string $file
2013-07-10 19:57:04 +04:00
* @return $this
2014-02-27 16:15:18 +04:00
*/
2013-07-10 19:57:04 +04:00
public function setFile($file) {
$this->file = $file;
2014-02-27 16:15:18 +04:00
$this->info = null;
if ($file !== '') {
$this->getFileInfo();
if($this->info !== null && $this->info !== false) {
2014-04-04 18:21:50 +04:00
$this->mimeType = $this->info->getMimetype();
}
}
2013-07-10 19:57:04 +04:00
return $this;
}
2013-11-28 22:05:43 +04:00
/**
2014-04-04 18:21:50 +04:00
* @brief set mime type explicitly
* @param string $mimeType
2013-11-28 22:05:43 +04:00
*/
2014-04-04 18:21:50 +04:00
public function setMimetype($mimeType) {
$this->mimeType = $mimeType;
}
2013-07-10 19:57:04 +04:00
/**
* @brief set the the max width of the preview
2013-07-11 21:21:37 +04:00
* @param int $maxX
2014-04-21 17:44:54 +04:00
* @throws \Exception
2013-07-10 19:57:04 +04:00
* @return $this
2014-02-27 16:15:18 +04:00
*/
public function setMaxX($maxX = 1) {
if ($maxX <= 0) {
2013-07-30 14:29:12 +04:00
throw new \Exception('Cannot set width of 0 or smaller!');
2013-07-10 19:57:04 +04:00
}
$configMaxX = $this->getConfigMaxX();
2014-02-27 16:15:18 +04:00
if (!is_null($configMaxX)) {
if ($maxX > $configMaxX) {
2013-07-10 19:57:04 +04:00
\OC_Log::write('core', 'maxX reduced from ' . $maxX . ' to ' . $configMaxX, \OC_Log::DEBUG);
$maxX = $configMaxX;
}
}
$this->maxX = $maxX;
return $this;
}
/**
* @brief set the the max height of the preview
2013-07-11 21:21:37 +04:00
* @param int $maxY
2014-04-21 17:44:54 +04:00
* @throws \Exception
2013-07-10 19:57:04 +04:00
* @return $this
2014-02-27 16:15:18 +04:00
*/
public function setMaxY($maxY = 1) {
if ($maxY <= 0) {
2013-07-30 14:29:12 +04:00
throw new \Exception('Cannot set height of 0 or smaller!');
2013-07-10 19:57:04 +04:00
}
$configMaxY = $this->getConfigMaxY();
2014-02-27 16:15:18 +04:00
if (!is_null($configMaxY)) {
if ($maxY > $configMaxY) {
2013-07-10 19:57:04 +04:00
\OC_Log::write('core', 'maxX reduced from ' . $maxY . ' to ' . $configMaxY, \OC_Log::DEBUG);
$maxY = $configMaxY;
}
}
$this->maxY = $maxY;
return $this;
}
/**
* @brief set whether or not scalingup is enabled
2013-07-30 14:29:12 +04:00
* @param bool $scalingUp
2013-07-10 19:57:04 +04:00
* @return $this
2014-02-27 16:15:18 +04:00
*/
2013-07-30 14:29:12 +04:00
public function setScalingup($scalingUp) {
2014-02-27 16:15:18 +04:00
if ($this->getMaxScaleFactor() === 1) {
2013-07-30 14:29:12 +04:00
$scalingUp = false;
2013-07-10 19:57:04 +04:00
}
2014-04-04 18:21:50 +04:00
$this->scalingUp = $scalingUp;
2013-07-10 19:57:04 +04:00
return $this;
}
public function setKeepAspect($keepAspect) {
$this->keepAspect = $keepAspect;
return $this;
}
2013-07-10 19:57:04 +04:00
/**
* @brief check if all parameters are valid
2013-07-11 21:21:37 +04:00
* @return bool
2014-02-27 16:15:18 +04:00
*/
2013-07-10 19:57:04 +04:00
public function isFileValid() {
$file = $this->getFile();
2014-02-27 16:15:18 +04:00
if ($file === '') {
2013-08-19 14:16:55 +04:00
\OC_Log::write('core', 'No filename passed', \OC_Log::DEBUG);
2013-07-10 19:57:04 +04:00
return false;
}
2014-02-27 16:15:18 +04:00
if (!$this->fileView->file_exists($file)) {
2013-08-19 14:16:55 +04:00
\OC_Log::write('core', 'File:"' . $file . '" not found', \OC_Log::DEBUG);
2013-07-10 19:57:04 +04:00
return false;
}
return true;
}
2013-05-10 01:59:16 +04:00
/**
* @brief deletes previews of a file with specific x and y
* @return bool
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function deletePreview() {
2013-07-10 19:57:04 +04:00
$file = $this->getFile();
2014-02-27 16:15:18 +04:00
$fileInfo = $this->getFileInfo($file);
if($fileInfo !== null && $fileInfo !== false) {
$fileId = $fileInfo->getId();
$previewPath = $this->buildCachePath($fileId);
return $this->userView->unlink($previewPath);
}
return false;
2013-05-10 01:59:16 +04:00
}
/**
* @brief deletes all previews of a file
* @return bool
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function deleteAllPreviews() {
2013-07-10 19:57:04 +04:00
$file = $this->getFile();
2013-05-10 01:59:16 +04:00
2014-02-27 16:15:18 +04:00
$fileInfo = $this->getFileInfo($file);
if($fileInfo !== null && $fileInfo !== false) {
$fileId = $fileInfo->getId();
$previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/';
$this->userView->deleteAll($previewPath);
return $this->userView->rmdir($previewPath);
}
return false;
2013-05-10 01:59:16 +04:00
}
/**
* @brief check if thumbnail or bigger version of thumbnail of file is cached
2014-04-02 20:32:32 +04:00
* @param int $fileId fileId of the original image
2014-04-02 19:59:39 +04:00
* @return string|false path to thumbnail if it exists or false
2014-02-27 16:15:18 +04:00
*/
2014-04-04 18:21:50 +04:00
public function isCached($fileId) {
2014-02-27 16:15:18 +04:00
if (is_null($fileId)) {
return false;
}
2013-05-10 01:59:16 +04:00
$preview = $this->buildCachePath($fileId);
2013-05-10 01:59:16 +04:00
2013-04-25 13:18:45 +04:00
//does a preview with the wanted height and width already exist?
if ($this->userView->file_exists($preview)) {
return $preview;
2013-04-25 13:18:45 +04:00
}
2013-05-10 01:59:16 +04:00
2014-04-02 20:32:32 +04:00
return $this->isCachedBigger($fileId);
2014-04-02 19:59:39 +04:00
}
/**
* @brief check if a bigger version of thumbnail of file is cached
2014-04-02 20:32:32 +04:00
* @param int $fileId fileId of the original image
2014-04-02 19:59:39 +04:00
* @return string|false path to bigger thumbnail if it exists or false
*/
2014-04-02 20:32:32 +04:00
private function isCachedBigger($fileId) {
2013-05-10 01:59:16 +04:00
2014-02-27 16:15:18 +04:00
if (is_null($fileId)) {
return false;
}
// in order to not loose quality we better generate aspect preserving previews from the original file
if ($this->keepAspect) {
return false;
}
2014-04-02 19:59:39 +04:00
$maxX = $this->getMaxX();
2014-04-02 20:32:32 +04:00
//array for usable cached thumbnails
$possibleThumbnails = $this->getPossibleThumbnails($fileId);
foreach ($possibleThumbnails as $width => $path) {
if ($width < $maxX) {
continue;
} else {
return $path;
}
2013-05-10 01:59:16 +04:00
}
2014-04-02 20:32:32 +04:00
return false;
}
2014-04-04 13:37:47 +04:00
2014-04-02 20:32:32 +04:00
/**
* @brief get possible bigger thumbnails of the given image
* @param int $fileId fileId of the original image
2014-05-11 21:13:51 +04:00
* @return array an array of paths to bigger thumbnails
2014-04-02 20:32:32 +04:00
*/
private function getPossibleThumbnails($fileId) {
2014-04-02 19:59:39 +04:00
if (is_null($fileId)) {
2014-04-02 20:32:32 +04:00
return array();
2013-04-25 13:18:45 +04:00
}
2013-05-10 01:59:16 +04:00
2014-04-02 19:59:39 +04:00
$previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/';
2014-04-02 20:32:32 +04:00
$wantedAspectRatio = (float) ($this->getMaxX() / $this->getMaxY());
2013-05-10 01:59:16 +04:00
2013-04-25 13:18:45 +04:00
//array for usable cached thumbnails
2013-07-30 14:29:12 +04:00
$possibleThumbnails = array();
2013-05-10 01:59:16 +04:00
2013-08-19 14:16:55 +04:00
$allThumbnails = $this->userView->getDirectoryContent($previewPath);
2014-02-27 16:15:18 +04:00
foreach ($allThumbnails as $thumbnail) {
$name = rtrim($thumbnail['name'], '.png');
2014-04-02 20:32:32 +04:00
list($x, $y, $aspectRatio) = $this->getDimensionsFromFilename($name);
2013-05-10 01:59:16 +04:00
if (abs($aspectRatio - $wantedAspectRatio) >= 0.000001
2014-04-02 20:32:32 +04:00
|| $this->unscalable($x, $y)
) {
2013-04-25 13:18:45 +04:00
continue;
}
2013-07-30 14:29:12 +04:00
$possibleThumbnails[$x] = $thumbnail['path'];
2013-04-25 13:18:45 +04:00
}
2013-05-10 01:59:16 +04:00
2013-07-30 14:29:12 +04:00
ksort($possibleThumbnails);
2013-05-10 01:59:16 +04:00
2014-04-02 20:32:32 +04:00
return $possibleThumbnails;
}
2013-05-10 01:59:16 +04:00
2014-04-21 17:44:54 +04:00
/**
* @param string $name
* @return array
*/
2014-04-02 20:32:32 +04:00
private function getDimensionsFromFilename($name) {
$size = explode('-', $name);
$x = (int) $size[0];
$y = (int) $size[1];
$aspectRatio = (float) ($x / $y);
2014-04-04 18:21:50 +04:00
return array($x, $y, $aspectRatio);
2014-04-02 20:32:32 +04:00
}
2013-05-10 01:59:16 +04:00
2014-04-21 17:44:54 +04:00
/**
* @param int $x
* @param int $y
* @return bool
*/
2014-04-02 20:32:32 +04:00
private function unscalable($x, $y) {
$maxX = $this->getMaxX();
$maxY = $this->getMaxY();
$scalingUp = $this->getScalingUp();
$maxScaleFactor = $this->getMaxScaleFactor();
if ($x < $maxX || $y < $maxY) {
if ($scalingUp) {
$scalefactor = $maxX / $x;
if ($scalefactor > $maxScaleFactor) {
return true;
}
2014-02-27 16:15:18 +04:00
} else {
2014-04-02 20:32:32 +04:00
return true;
2013-04-25 13:18:45 +04:00
}
}
2014-04-02 19:34:48 +04:00
return false;
2013-04-25 13:18:45 +04:00
}
2013-04-25 13:18:45 +04:00
/**
2013-05-10 01:59:16 +04:00
* @brief return a preview of a file
2013-07-30 14:29:12 +04:00
* @return \OC_Image
2014-02-27 16:15:18 +04:00
*/
2013-05-29 15:03:33 +04:00
public function getPreview() {
2014-02-27 16:15:18 +04:00
if (!is_null($this->preview) && $this->preview->valid()) {
2013-07-10 19:57:04 +04:00
return $this->preview;
}
$this->preview = null;
$file = $this->getFile();
$maxX = $this->getMaxX();
$maxY = $this->getMaxY();
2013-07-30 14:29:12 +04:00
$scalingUp = $this->getScalingUp();
2013-04-25 13:18:45 +04:00
2014-02-27 16:15:18 +04:00
$fileInfo = $this->getFileInfo($file);
if($fileInfo === null || $fileInfo === false) {
return new \OC_Image();
}
2014-02-27 16:15:18 +04:00
$fileId = $fileInfo->getId();
2013-05-10 01:59:16 +04:00
2014-04-02 20:32:32 +04:00
$cached = $this->isCached($fileId);
2014-02-27 16:15:18 +04:00
if ($cached) {
$stream = $this->userView->fopen($cached, 'r');
$image = new \OC_Image();
$image->loadFromFileHandle($stream);
2013-07-10 19:57:04 +04:00
$this->preview = $image->valid() ? $image : null;
$this->resizeAndCrop();
fclose($stream);
2013-07-10 19:57:04 +04:00
}
2013-05-17 21:08:16 +04:00
2014-02-27 16:15:18 +04:00
if (is_null($this->preview)) {
2013-06-26 12:57:37 +04:00
$preview = null;
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
foreach (self::$providers as $supportedMimeType => $provider) {
if (!preg_match($supportedMimeType, $this->mimeType)) {
2013-05-10 01:59:16 +04:00
continue;
}
2013-05-17 21:08:16 +04:00
2013-08-15 15:21:35 +04:00
\OC_Log::write('core', 'Generating preview for "' . $file . '" with "' . get_class($provider) . '"', \OC_Log::DEBUG);
2014-04-04 13:37:47 +04:00
/** @var $provider Provider */
2013-08-19 14:16:55 +04:00
$preview = $provider->getThumbnail($file, $maxX, $maxY, $scalingUp, $this->fileView);
2014-02-27 16:15:18 +04:00
if (!($preview instanceof \OC_Image)) {
2013-05-10 01:59:16 +04:00
continue;
}
2013-05-17 21:08:16 +04:00
2013-07-10 19:57:04 +04:00
$this->preview = $preview;
$this->resizeAndCrop();
2013-07-30 14:29:12 +04:00
$previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/';
$cachePath = $this->buildCachePath($fileId);
2013-07-10 19:57:04 +04:00
2014-02-27 16:15:18 +04:00
if ($this->userView->is_dir($this->getThumbnailsFolder() . '/') === false) {
2013-08-19 14:16:55 +04:00
$this->userView->mkdir($this->getThumbnailsFolder() . '/');
2013-05-10 01:59:16 +04:00
}
2013-05-17 21:08:16 +04:00
2014-02-27 16:15:18 +04:00
if ($this->userView->is_dir($previewPath) === false) {
2013-08-19 14:16:55 +04:00
$this->userView->mkdir($previewPath);
}
2013-07-10 15:38:42 +04:00
2013-08-19 14:16:55 +04:00
$this->userView->file_put_contents($cachePath, $preview->data());
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
break;
}
2013-07-10 19:57:04 +04:00
}
2013-06-26 12:57:37 +04:00
2014-02-27 16:15:18 +04:00
if (is_null($this->preview)) {
2013-07-10 19:57:04 +04:00
$this->preview = new \OC_Image();
2013-05-10 01:59:16 +04:00
}
2013-07-10 19:57:04 +04:00
2013-05-10 01:59:16 +04:00
return $this->preview;
2013-04-25 13:18:45 +04:00
}
/**
2013-07-10 19:57:04 +04:00
* @brief show preview
2013-05-10 01:59:16 +04:00
* @return void
2014-02-27 16:15:18 +04:00
*/
public function showPreview($mimeType = null) {
2013-07-10 19:57:04 +04:00
\OCP\Response::enableCaching(3600 * 24); // 24 hours
2014-02-27 16:15:18 +04:00
if (is_null($this->preview)) {
2013-07-10 19:57:04 +04:00
$this->getPreview();
2013-05-10 01:59:16 +04:00
}
$this->preview->show($mimeType);
}
2013-05-10 01:59:16 +04:00
/**
* @brief resize, crop and fix orientation
2013-07-30 14:29:12 +04:00
* @return void
2014-02-27 16:15:18 +04:00
*/
2013-07-10 19:57:04 +04:00
private function resizeAndCrop() {
2013-05-10 01:59:16 +04:00
$image = $this->preview;
2013-07-10 19:57:04 +04:00
$x = $this->getMaxX();
$y = $this->getMaxY();
2013-07-30 14:29:12 +04:00
$scalingUp = $this->getScalingUp();
2014-04-04 18:21:50 +04:00
$maxScaleFactor = $this->getMaxScaleFactor();
2013-05-10 01:59:16 +04:00
2014-02-27 16:15:18 +04:00
if (!($image instanceof \OC_Image)) {
2013-07-10 19:57:04 +04:00
\OC_Log::write('core', '$this->preview is not an instance of OC_Image', \OC_Log::DEBUG);
2013-05-10 01:59:16 +04:00
return;
}
2013-07-10 19:57:04 +04:00
$image->fixOrientation();
2014-04-04 18:21:50 +04:00
$realX = (int)$image->width();
$realY = (int)$image->height();
2013-05-10 01:59:16 +04:00
// compute $maxY using the aspect of the generated preview
if ($this->keepAspect) {
$y = $x / ($realX / $realY);
}
2014-04-04 18:21:50 +04:00
if ($x === $realX && $y === $realY) {
2013-07-10 19:57:04 +04:00
$this->preview = $image;
2013-08-19 14:16:55 +04:00
return;
2013-05-10 01:59:16 +04:00
}
2014-04-04 18:21:50 +04:00
$factorX = $x / $realX;
$factorY = $y / $realY;
2013-07-10 19:57:04 +04:00
2014-02-27 16:15:18 +04:00
if ($factorX >= $factorY) {
2013-05-10 01:59:16 +04:00
$factor = $factorX;
2014-02-27 16:15:18 +04:00
} else {
2013-05-10 01:59:16 +04:00
$factor = $factorY;
}
2013-07-10 19:57:04 +04:00
2014-02-27 16:15:18 +04:00
if ($scalingUp === false) {
if ($factor > 1) {
2013-07-10 19:57:04 +04:00
$factor = 1;
}
2013-05-10 01:59:16 +04:00
}
2013-07-10 19:57:04 +04:00
2014-04-04 18:21:50 +04:00
if (!is_null($maxScaleFactor)) {
if ($factor > $maxScaleFactor) {
\OC_Log::write('core', 'scale factor reduced from ' . $factor . ' to ' . $maxScaleFactor, \OC_Log::DEBUG);
$factor = $maxScaleFactor;
2013-04-25 13:18:45 +04:00
}
}
2013-05-10 01:59:16 +04:00
2014-04-04 18:21:50 +04:00
$newXSize = (int)($realX * $factor);
$newYSize = (int)($realY * $factor);
2013-07-10 19:57:04 +04:00
2014-04-04 18:21:50 +04:00
$image->preciseResize($newXSize, $newYSize);
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
if ($newXSize === $x && $newYSize === $y) {
2013-05-10 01:59:16 +04:00
$this->preview = $image;
return;
}
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
if ($newXSize >= $x && $newYSize >= $y) {
$cropX = floor(abs($x - $newXSize) * 0.5);
2013-07-10 19:57:04 +04:00
//don't crop previews on the Y axis, this sucks if it's a document.
2013-06-11 12:45:50 +04:00
//$cropY = floor(abs($y - $newYsize) * 0.5);
$cropY = 0;
2013-05-10 01:59:16 +04:00
$image->crop($cropX, $cropY, $x, $y);
2013-05-10 01:59:16 +04:00
$this->preview = $image;
return;
}
2013-05-17 21:08:16 +04:00
if (($newXSize < $x || $newYSize < $y) && $scalingUp) {
2014-04-04 18:21:50 +04:00
if ($newXSize > $x) {
$cropX = floor(($newXSize - $x) * 0.5);
$image->crop($cropX, 0, $x, $newYSize);
2013-04-25 13:18:45 +04:00
}
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
if ($newYSize > $y) {
$cropY = floor(($newYSize - $y) * 0.5);
$image->crop(0, $cropY, $newXSize, $y);
2013-04-25 13:18:45 +04:00
}
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
$newXSize = (int)$image->width();
$newYSize = (int)$image->height();
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
//create transparent background layer
2014-04-04 18:21:50 +04:00
$backgroundLayer = imagecreatetruecolor($x, $y);
$white = imagecolorallocate($backgroundLayer, 255, 255, 255);
imagefill($backgroundLayer, 0, 0, $white);
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
$image = $image->resource();
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
$mergeX = floor(abs($x - $newXSize) * 0.5);
$mergeY = floor(abs($y - $newYSize) * 0.5);
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
imagecopy($backgroundLayer, $image, $mergeX, $mergeY, 0, 0, $newXSize, $newYSize);
2013-05-17 21:08:16 +04:00
//$black = imagecolorallocate(0,0,0);
//imagecolortransparent($transparentlayer, $black);
2013-05-17 21:08:16 +04:00
2014-04-04 18:21:50 +04:00
$image = new \OC_Image($backgroundLayer);
2013-05-17 21:08:16 +04:00
2013-05-10 01:59:16 +04:00
$this->preview = $image;
return;
2013-04-25 13:18:45 +04:00
}
}
2013-04-25 13:18:45 +04:00
/**
* @brief register a new preview provider to be used
2013-07-11 21:21:37 +04:00
* @param array $options
2013-04-25 13:18:45 +04:00
* @return void
*/
2014-02-27 16:15:18 +04:00
public static function registerProvider($class, $options = array()) {
self::$registeredProviders[] = array('class' => $class, 'options' => $options);
2013-04-25 13:18:45 +04:00
}
2013-04-25 13:18:45 +04:00
/**
* @brief create instances of all the registered preview providers
* @return void
*/
private static function initProviders() {
2014-02-27 16:15:18 +04:00
if (!\OC_Config::getValue('enable_previews', true)) {
2013-08-29 18:13:16 +04:00
$provider = new Preview\Unknown(array());
2013-08-29 12:08:53 +04:00
self::$providers = array($provider->getMimeType() => $provider);
2013-08-24 01:05:44 +04:00
return;
}
2014-02-27 16:15:18 +04:00
if (count(self::$providers) > 0) {
2013-04-25 13:18:45 +04:00
return;
}
2013-05-17 21:08:16 +04:00
2014-02-27 16:15:18 +04:00
foreach (self::$registeredProviders as $provider) {
$class = $provider['class'];
$options = $provider['options'];
2013-05-17 21:08:16 +04:00
2014-04-04 13:37:47 +04:00
/** @var $object Provider */
2013-04-25 13:18:45 +04:00
$object = new $class($options);
2013-05-17 21:08:16 +04:00
2013-04-25 13:18:45 +04:00
self::$providers[$object->getMimeType()] = $object;
}
2013-05-17 21:08:16 +04:00
2013-04-25 13:18:45 +04:00
$keys = array_map('strlen', array_keys(self::$providers));
array_multisort($keys, SORT_DESC, self::$providers);
}
2013-05-17 21:08:16 +04:00
2013-05-29 15:03:33 +04:00
public static function post_write($args) {
self::post_delete($args, 'files/');
}
public static function prepare_delete_files($args) {
self::prepare_delete($args, 'files/');
}
public static function prepare_delete($args, $prefix='') {
$path = $args['path'];
2014-02-27 16:15:18 +04:00
if (substr($path, 0, 1) === '/') {
$path = substr($path, 1);
}
$view = new \OC\Files\View('/' . \OC_User::getUser() . '/' . $prefix);
$info = $view->getFileInfo($path);
\OC\Preview::$deleteFileMapper = array_merge(
\OC\Preview::$deleteFileMapper,
array(
Files\Filesystem::normalizePath($view->getAbsolutePath($path)) => $info,
)
);
}
public static function post_delete_files($args) {
self::post_delete($args, 'files/');
}
public static function post_delete($args, $prefix='') {
$path = Files\Filesystem::normalizePath($args['path']);
$preview = new Preview(\OC_User::getUser(), $prefix, $path);
$preview->deleteAllPreviews();
}
/**
2014-04-04 18:21:50 +04:00
* @param string $mimeType
2014-04-21 17:44:54 +04:00
* @return bool
*/
2014-04-04 18:21:50 +04:00
public static function isMimeSupported($mimeType) {
2014-02-27 16:15:18 +04:00
if (!\OC_Config::getValue('enable_previews', true)) {
2013-08-24 01:05:44 +04:00
return false;
}
//check if there are preview backends
2014-02-27 16:15:18 +04:00
if (empty(self::$providers)) {
self::initProviders();
}
//remove last element because it has the mimetype *
$providers = array_slice(self::$providers, 0, -1);
2014-04-04 18:21:50 +04:00
foreach ($providers as $supportedMimeType => $provider) {
if (preg_match($supportedMimeType, $mimeType)) {
return true;
}
}
return false;
}
/**
* @param $fileId
* @return string
*/
private function buildCachePath($fileId) {
$maxX = $this->getMaxX();
$maxY = $this->getMaxY();
$previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/';
$preview = $previewPath . $maxX . '-' . $maxY . '.png';
if ($this->keepAspect) {
$preview = $previewPath . $maxX . '-with-aspect.png';
return $preview;
}
return $preview;
}
2013-09-05 01:45:11 +04:00
}