зеркало из https://github.com/nextcloud/server.git
Move preview endpoint to controller
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Родитель
c8ff9fb00e
Коммит
02525fd98b
|
@ -0,0 +1,123 @@
|
||||||
|
<?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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace OC\Core\Controller;
|
||||||
|
|
||||||
|
use OC\PreviewManager;
|
||||||
|
use OCP\AppFramework\Controller;
|
||||||
|
use OCP\Files\File;
|
||||||
|
use OCP\AppFramework\Http;
|
||||||
|
use OCP\AppFramework\Http\DataResponse;
|
||||||
|
use OCP\Files\IAppData;
|
||||||
|
use OCP\Files\IRootFolder;
|
||||||
|
use OCP\Files\NotFoundException;
|
||||||
|
use OCP\IConfig;
|
||||||
|
use OCP\IRequest;
|
||||||
|
|
||||||
|
class PreviewController extends Controller {
|
||||||
|
|
||||||
|
/** @var string */
|
||||||
|
private $userId;
|
||||||
|
|
||||||
|
/** @var IRootFolder */
|
||||||
|
private $root;
|
||||||
|
|
||||||
|
/** @var IConfig */
|
||||||
|
private $config;
|
||||||
|
|
||||||
|
/** @var PreviewManager */
|
||||||
|
private $previewManager;
|
||||||
|
|
||||||
|
/** @var IAppData */
|
||||||
|
private $appData;
|
||||||
|
|
||||||
|
public function __construct($appName,
|
||||||
|
IRequest $request,
|
||||||
|
IRootFolder $root,
|
||||||
|
IConfig $config,
|
||||||
|
PreviewManager $previewManager,
|
||||||
|
IAppData $appData,
|
||||||
|
$userId
|
||||||
|
) {
|
||||||
|
parent::__construct($appName, $request);
|
||||||
|
|
||||||
|
$this->previewManager = $previewManager;
|
||||||
|
$this->root = $root;
|
||||||
|
$this->config = $config;
|
||||||
|
$this->appData = $appData;
|
||||||
|
$this->userId = $userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @NoAdminRequired
|
||||||
|
* @NoCSRFRequired
|
||||||
|
*
|
||||||
|
* @param string $file
|
||||||
|
* @param int $x
|
||||||
|
* @param int $y
|
||||||
|
* @param bool $a
|
||||||
|
* @param bool $forceIcon
|
||||||
|
* @param string $mode
|
||||||
|
* @return DataResponse|Http\FileDisplayResponse
|
||||||
|
*/
|
||||||
|
public function getPreview(
|
||||||
|
$file = '',
|
||||||
|
$x = 32,
|
||||||
|
$y = 32,
|
||||||
|
$a = false,
|
||||||
|
$forceIcon = true,
|
||||||
|
$mode = 'fill') {
|
||||||
|
|
||||||
|
if ($file === '') {
|
||||||
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($x === 0 || $y === 0) {
|
||||||
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$userFolder = $this->root->getUserFolder($this->userId);
|
||||||
|
$file = $userFolder->get($file);
|
||||||
|
} catch (NotFoundException $e) {
|
||||||
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!($file instanceof File) || (!$forceIcon && !$this->previewManager->isAvailable($file))) {
|
||||||
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
||||||
|
} else if (!$file->isReadable()) {
|
||||||
|
return new DataResponse([], Http::STATUS_FORBIDDEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
$preview = new \OC\Preview2(
|
||||||
|
$this->root,
|
||||||
|
$this->config,
|
||||||
|
$this->previewManager,
|
||||||
|
$file,
|
||||||
|
$this->appData
|
||||||
|
);
|
||||||
|
|
||||||
|
$f = $preview->getPreview($x, $y, !$a, $mode);
|
||||||
|
return new Http\FileDisplayResponse($f, Http::STATUS_OK, ['Content-Type' => $f->getMimeType()]);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,75 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
||||||
*
|
|
||||||
* @author Georg Ehrke <georg@owncloud.com>
|
|
||||||
* @author Joas Schilling <coding@schilljs.com>
|
|
||||||
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
||||||
* @author Morris Jobke <hey@morrisjobke.de>
|
|
||||||
* @author Robin Appelman <robin@icewind.nl>
|
|
||||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
||||||
*
|
|
||||||
* @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/>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
\OC_Util::checkLoggedIn();
|
|
||||||
\OC::$server->getSession()->close();
|
|
||||||
|
|
||||||
$file = array_key_exists('file', $_GET) ? (string)$_GET['file'] : '';
|
|
||||||
$maxX = array_key_exists('x', $_GET) ? (int)$_GET['x'] : '32';
|
|
||||||
$maxY = array_key_exists('y', $_GET) ? (int)$_GET['y'] : '32';
|
|
||||||
$scalingUp = array_key_exists('scalingup', $_GET) ? (bool)$_GET['scalingup'] : true;
|
|
||||||
$keepAspect = array_key_exists('a', $_GET) ? true : false;
|
|
||||||
$always = array_key_exists('forceIcon', $_GET) ? (bool)$_GET['forceIcon'] : true;
|
|
||||||
$mode = array_key_exists('mode', $_GET) ? $_GET['mode'] : 'fill';
|
|
||||||
|
|
||||||
if ($file === '') {
|
|
||||||
//400 Bad Request
|
|
||||||
\OC_Response::setStatus(400);
|
|
||||||
\OCP\Util::writeLog('core-preview', 'No file parameter was passed', \OCP\Util::DEBUG);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($maxX === 0 || $maxY === 0) {
|
|
||||||
//400 Bad Request
|
|
||||||
\OC_Response::setStatus(400);
|
|
||||||
\OCP\Util::writeLog('core-preview', 'x and/or y set to 0', \OCP\Util::DEBUG);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
$folder = \OC::$server->getUserFolder();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$file = $folder->get($file);
|
|
||||||
} catch (\OCP\Files\NotFoundException $e) {
|
|
||||||
return \OC_Response::setStatus(404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$file instanceof OCP\Files\File || !$always && !\OC::$server->getPreviewManager()->isAvailable($file)) {
|
|
||||||
\OC_Response::setStatus(404);
|
|
||||||
} else if (!$info->isReadable()) {
|
|
||||||
\OC_Response::setStatus(403);
|
|
||||||
} else {
|
|
||||||
$preview = new \OC\Preview2(
|
|
||||||
\OC::$server->getRootFolder(),
|
|
||||||
\OC::$server->getConfig(),
|
|
||||||
\OC::$server->getPreviewManager(),
|
|
||||||
$file
|
|
||||||
);
|
|
||||||
$image = $preview->getPreview($maxX, $maxY, !$keepAspect, $mode);
|
|
||||||
|
|
||||||
header('Content-Type: ' . $image->getMimeType());
|
|
||||||
echo $image->getContent();
|
|
||||||
}
|
|
|
@ -1,40 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
\OC_Util::checkLoggedIn();
|
|
||||||
\OC::$server->getSession()->close();
|
|
||||||
|
|
||||||
$file = array_key_exists('file', $_GET) ? (string)$_GET['file'] : '';
|
|
||||||
$maxX = array_key_exists('x', $_GET) ? (int)$_GET['x'] : '32';
|
|
||||||
$maxY = array_key_exists('y', $_GET) ? (int)$_GET['y'] : '32';
|
|
||||||
$keepAspect = array_key_exists('a', $_GET) ? true : false;
|
|
||||||
$always = array_key_exists('forceIcon', $_GET) ? (bool)$_GET['forceIcon'] : true;
|
|
||||||
$mode = array_key_exists('mode', $_GET) ? $_GET['mode'] : 'fill';
|
|
||||||
|
|
||||||
if ($file === '') {
|
|
||||||
//400 Bad Request
|
|
||||||
\OC_Response::setStatus(400);
|
|
||||||
\OCP\Util::writeLog('core-preview', 'No file parameter was passed', \OCP\Util::DEBUG);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($maxX === 0 || $maxY === 0) {
|
|
||||||
//400 Bad Request
|
|
||||||
\OC_Response::setStatus(400);
|
|
||||||
\OCP\Util::writeLog('core-preview', 'x and/or y set to 0', \OCP\Util::DEBUG);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
$userFolder = \OC::$server->getUserFolder();
|
|
||||||
$file = $userFolder->get($file);
|
|
||||||
|
|
||||||
$p = new \OC\Preview2(\OC::$server->getRootFolder(),
|
|
||||||
\OC::$server->getConfig(),
|
|
||||||
\OC::$server->getPreviewManager(),
|
|
||||||
$file,
|
|
||||||
\OC::$server->getAppDataDir('preview'));
|
|
||||||
|
|
||||||
$image = $p->getPreview($maxX, $maxY, !$keepAspect, $mode);
|
|
||||||
|
|
||||||
header('Content-Type: ' . $image->getMimeType());
|
|
||||||
echo $image->getContent();
|
|
||||||
|
|
|
@ -52,6 +52,8 @@ $application->registerRoutes($this, [
|
||||||
['name' => 'TwoFactorChallenge#showChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'GET'],
|
['name' => 'TwoFactorChallenge#showChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'GET'],
|
||||||
['name' => 'TwoFactorChallenge#solveChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'POST'],
|
['name' => 'TwoFactorChallenge#solveChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'POST'],
|
||||||
['name' => 'OCJS#getConfig', 'url' => '/core/js/oc.js', 'verb' => 'GET'],
|
['name' => 'OCJS#getConfig', 'url' => '/core/js/oc.js', 'verb' => 'GET'],
|
||||||
|
['name' => 'Preview#getPreview', 'url' => '/core/preview', 'verb' => 'GET'],
|
||||||
|
['name' => 'Preview#getPreview', 'url' => '/core/preview.png', 'verb' => 'GET'],
|
||||||
],
|
],
|
||||||
'ocs' => [
|
'ocs' => [
|
||||||
['root' => '/cloud', 'name' => 'OCS#getCapabilities', 'url' => '/capabilities', 'verb' => 'GET'],
|
['root' => '/cloud', 'name' => 'OCS#getCapabilities', 'url' => '/capabilities', 'verb' => 'GET'],
|
||||||
|
@ -68,12 +70,6 @@ $application->registerRoutes($this, [
|
||||||
$this->create('search_ajax_search', '/core/search')
|
$this->create('search_ajax_search', '/core/search')
|
||||||
->actionInclude('core/search/ajax/search.php');
|
->actionInclude('core/search/ajax/search.php');
|
||||||
// Routing
|
// Routing
|
||||||
$this->create('core_ajax_preview', '/core/preview')
|
|
||||||
->actionInclude('core/ajax/preview2.php');
|
|
||||||
$this->create('core_ajax_preview2', '/core/preview2')
|
|
||||||
->actionInclude('core/ajax/preview2.php');
|
|
||||||
$this->create('core_ajax_preview', '/core/preview.png')
|
|
||||||
->actionInclude('core/ajax/preview2.php');
|
|
||||||
$this->create('core_ajax_update', '/core/ajax/update.php')
|
$this->create('core_ajax_update', '/core/ajax/update.php')
|
||||||
->actionInclude('core/ajax/update.php');
|
->actionInclude('core/ajax/update.php');
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,13 @@ class Preview2 {
|
||||||
/** @var IAppData */
|
/** @var IAppData */
|
||||||
private $appData;
|
private $appData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param IRootFolder $rootFolder
|
||||||
|
* @param IConfig $config
|
||||||
|
* @param IPreview $previewManager
|
||||||
|
* @param File $file
|
||||||
|
* @param IAppData $appData
|
||||||
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
IRootFolder $rootFolder,
|
IRootFolder $rootFolder,
|
||||||
IConfig $config,
|
IConfig $config,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче