2013-10-02 17:23:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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-10-02 17:23:51 +04:00
|
|
|
*/
|
|
|
|
\OC_Util::checkLoggedIn();
|
2013-10-11 19:06:43 +04:00
|
|
|
|
2013-10-02 17:23:51 +04:00
|
|
|
if(!\OC_App::isEnabled('files_versions')){
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : '';
|
2013-10-02 18:34:05 +04:00
|
|
|
$maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : 44;
|
|
|
|
$maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : 44;
|
2013-10-02 17:23:51 +04:00
|
|
|
$version = array_key_exists('version', $_GET) ? $_GET['version'] : '';
|
|
|
|
$scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true;
|
|
|
|
|
|
|
|
if($file === '' && $version === '') {
|
|
|
|
\OC_Response::setStatus(400); //400 Bad Request
|
2015-04-09 13:36:10 +03:00
|
|
|
\OCP\Util::writeLog('versions-preview', 'No file parameter was passed', \OCP\Util::DEBUG);
|
2013-10-02 17:23:51 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($maxX === 0 || $maxY === 0) {
|
|
|
|
\OC_Response::setStatus(400); //400 Bad Request
|
2015-04-09 13:36:10 +03:00
|
|
|
\OCP\Util::writeLog('versions-preview', 'x and/or y set to 0', \OCP\Util::DEBUG);
|
2013-10-02 17:23:51 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2014-01-21 16:50:56 +04:00
|
|
|
try {
|
|
|
|
list($user, $file) = \OCA\Files_Versions\Storage::getUidAndFilename($file);
|
2013-11-28 21:59:38 +04:00
|
|
|
$preview = new \OC\Preview($user, 'files_versions', $file.'.v'.$version);
|
2015-12-17 19:07:48 +03:00
|
|
|
$mimetype = \OC::$server->getMimeTypeDetector()->detectPath($file);
|
2013-11-28 21:59:38 +04:00
|
|
|
$preview->setMimetype($mimetype);
|
2013-10-02 17:23:51 +04:00
|
|
|
$preview->setMaxX($maxX);
|
|
|
|
$preview->setMaxY($maxY);
|
|
|
|
$preview->setScalingUp($scalingUp);
|
|
|
|
|
|
|
|
$preview->showPreview();
|
2015-09-01 20:29:55 +03:00
|
|
|
} catch (\OCP\Files\NotFoundException $e) {
|
|
|
|
\OC_Response::setStatus(404);
|
|
|
|
\OCP\Util::writeLog('core', $e->getmessage(), \OCP\Util::DEBUG);
|
|
|
|
} catch (\Exception $e) {
|
2013-10-02 17:23:51 +04:00
|
|
|
\OC_Response::setStatus(500);
|
2015-04-09 13:36:10 +03:00
|
|
|
\OCP\Util::writeLog('core', $e->getmessage(), \OCP\Util::DEBUG);
|
2013-10-02 18:34:05 +04:00
|
|
|
}
|