2016-10-17 09:42:01 +03:00
|
|
|
<?php
|
2018-05-23 15:25:51 +03:00
|
|
|
declare(strict_types=1);
|
2016-10-17 09:42:01 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-10-17 09:42:01 +03:00
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-09-19 20:00:58 +03:00
|
|
|
|
2016-10-17 09:42:01 +03:00
|
|
|
namespace OCA\Files_Trashbin\Controller;
|
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
use OCA\Files_Trashbin\Trash\ITrashManager;
|
2016-10-17 09:42:01 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2018-05-23 15:25:51 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2016-10-17 09:42:01 +03:00
|
|
|
use OCP\Files\Folder;
|
|
|
|
use OCP\Files\IMimeTypeDetector;
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\Files\NotFoundException;
|
|
|
|
use OCP\IPreview;
|
|
|
|
use OCP\IRequest;
|
2018-09-19 20:00:58 +03:00
|
|
|
use OCP\IUserSession;
|
2016-10-17 09:42:01 +03:00
|
|
|
|
|
|
|
class PreviewController extends Controller {
|
|
|
|
/** @var IRootFolder */
|
|
|
|
private $rootFolder;
|
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
/** @var ITrashManager */
|
|
|
|
private $trashManager;
|
|
|
|
|
|
|
|
/** @var IUserSession */
|
|
|
|
private $userSession;
|
2016-10-17 09:42:01 +03:00
|
|
|
|
|
|
|
/** @var IMimeTypeDetector */
|
|
|
|
private $mimeTypeDetector;
|
|
|
|
|
|
|
|
/** @var IPreview */
|
|
|
|
private $previewManager;
|
|
|
|
|
2018-05-23 15:25:51 +03:00
|
|
|
/** @var ITimeFactory */
|
|
|
|
private $time;
|
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
public function __construct(
|
|
|
|
string $appName,
|
|
|
|
IRequest $request,
|
|
|
|
IRootFolder $rootFolder,
|
|
|
|
ITrashManager $trashManager,
|
|
|
|
IUserSession $userSession,
|
|
|
|
IMimeTypeDetector $mimeTypeDetector,
|
|
|
|
IPreview $previewManager,
|
|
|
|
ITimeFactory $time
|
|
|
|
) {
|
2016-10-17 09:42:01 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
$this->trashManager = $trashManager;
|
2016-10-17 09:42:01 +03:00
|
|
|
$this->rootFolder = $rootFolder;
|
2018-09-19 20:00:58 +03:00
|
|
|
$this->userSession = $userSession;
|
2016-10-17 09:42:01 +03:00
|
|
|
$this->mimeTypeDetector = $mimeTypeDetector;
|
|
|
|
$this->previewManager = $previewManager;
|
2018-05-23 15:25:51 +03:00
|
|
|
$this->time = $time;
|
2016-10-17 09:42:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @return DataResponse|Http\FileDisplayResponse
|
|
|
|
*/
|
|
|
|
public function getPreview(
|
2018-05-23 15:25:51 +03:00
|
|
|
int $fileId,
|
2019-03-16 16:56:26 +03:00
|
|
|
int $x = 128,
|
|
|
|
int $y = 128
|
2016-10-17 09:42:01 +03:00
|
|
|
) {
|
|
|
|
|
|
|
|
if ($x === 0 || $y === 0) {
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2018-09-19 20:00:58 +03:00
|
|
|
$file = $this->trashManager->getTrashNodeById($this->userSession->getUser(), $fileId);
|
2018-10-08 17:42:22 +03:00
|
|
|
if ($file === null) {
|
2018-09-19 20:00:58 +03:00
|
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
2016-10-17 09:42:01 +03:00
|
|
|
}
|
2018-10-08 17:42:22 +03:00
|
|
|
if ($file instanceof Folder) {
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
2016-10-17 09:42:01 +03:00
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
$pathParts = pathinfo($file->getName());
|
2019-08-06 11:55:13 +03:00
|
|
|
$extension = $pathParts['extension'] ?? '';
|
2018-09-19 20:00:58 +03:00
|
|
|
$fileName = $pathParts['filename'];
|
2018-05-23 15:25:51 +03:00
|
|
|
/*
|
|
|
|
* Files in the root of the trashbin are timetamped.
|
|
|
|
* So we have to strip that in order to properly detect the mimetype of the file.
|
|
|
|
*/
|
2018-09-19 20:00:58 +03:00
|
|
|
if (preg_match('/d\d+/', $extension)) {
|
2018-05-23 15:25:51 +03:00
|
|
|
$mimeType = $this->mimeTypeDetector->detectPath($fileName);
|
|
|
|
} else {
|
2018-09-19 20:00:58 +03:00
|
|
|
$mimeType = $this->mimeTypeDetector->detectPath($file->getName());
|
2018-05-23 15:25:51 +03:00
|
|
|
}
|
2016-10-17 09:42:01 +03:00
|
|
|
|
2018-09-19 20:00:58 +03:00
|
|
|
$f = $this->previewManager->getPreview($file, $x, $y, true, IPreview::MODE_FILL, $mimeType);
|
2018-05-23 15:25:51 +03:00
|
|
|
$response = new Http\FileDisplayResponse($f, Http::STATUS_OK, ['Content-Type' => $f->getMimeType()]);
|
|
|
|
|
|
|
|
// Cache previews for 24H
|
|
|
|
$response->cacheFor(3600 * 24);
|
|
|
|
return $response;
|
2016-10-17 09:42:01 +03:00
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
2017-05-02 00:41:37 +03:00
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
2016-10-17 09:42:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|