2016-10-16 17:59:38 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-10-16 17:59:38 +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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-16 17:59:38 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2016-10-16 17:59:38 +03:00
|
|
|
namespace OCA\Files_Sharing\Controller;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\AppFramework\Http\FileDisplayResponse;
|
2018-05-23 11:50:44 +03:00
|
|
|
use OCP\AppFramework\PublicShareController;
|
2016-10-16 17:59:38 +03:00
|
|
|
use OCP\Constants;
|
|
|
|
use OCP\Files\Folder;
|
|
|
|
use OCP\Files\NotFoundException;
|
2016-10-18 11:36:57 +03:00
|
|
|
use OCP\IPreview;
|
2016-10-16 17:59:38 +03:00
|
|
|
use OCP\IRequest;
|
2018-05-23 11:50:44 +03:00
|
|
|
use OCP\ISession;
|
2016-10-16 17:59:38 +03:00
|
|
|
use OCP\Share\Exceptions\ShareNotFound;
|
|
|
|
use OCP\Share\IManager as ShareManager;
|
2018-05-23 11:50:44 +03:00
|
|
|
use OCP\Share\IShare;
|
2016-10-16 17:59:38 +03:00
|
|
|
|
2018-05-23 11:50:44 +03:00
|
|
|
class PublicPreviewController extends PublicShareController {
|
2016-10-16 17:59:38 +03:00
|
|
|
|
|
|
|
/** @var ShareManager */
|
|
|
|
private $shareManager;
|
|
|
|
|
2016-10-18 11:36:57 +03:00
|
|
|
/** @var IPreview */
|
2016-10-16 17:59:38 +03:00
|
|
|
private $previewManager;
|
|
|
|
|
2018-05-23 11:50:44 +03:00
|
|
|
/** @var IShare */
|
|
|
|
private $share;
|
|
|
|
|
|
|
|
public function __construct(string $appName,
|
2016-10-16 17:59:38 +03:00
|
|
|
IRequest $request,
|
|
|
|
ShareManager $shareManger,
|
2018-05-23 11:50:44 +03:00
|
|
|
ISession $session,
|
2016-10-18 11:36:57 +03:00
|
|
|
IPreview $previewManager) {
|
2018-05-23 11:50:44 +03:00
|
|
|
parent::__construct($appName, $request, $session);
|
2016-10-16 17:59:38 +03:00
|
|
|
|
|
|
|
$this->shareManager = $shareManger;
|
|
|
|
$this->previewManager = $previewManager;
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:50:44 +03:00
|
|
|
protected function getPasswordHash(): string {
|
|
|
|
return $this->share->getPassword();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isValidToken(): bool {
|
|
|
|
try {
|
|
|
|
$this->share = $this->shareManager->getShareByToken($this->getToken());
|
|
|
|
return true;
|
|
|
|
} catch (ShareNotFound $e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function isPasswordProtected(): bool {
|
|
|
|
return $this->share->getPassword() !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-16 17:59:38 +03:00
|
|
|
/**
|
|
|
|
* @PublicPage
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @param string $file
|
|
|
|
* @param int $x
|
|
|
|
* @param int $y
|
|
|
|
* @param bool $a
|
|
|
|
* @return DataResponse|FileDisplayResponse
|
|
|
|
*/
|
|
|
|
public function getPreview(
|
2018-05-23 11:50:44 +03:00
|
|
|
string $token,
|
|
|
|
string $file = '',
|
|
|
|
int $x = 32,
|
|
|
|
int $y = 32,
|
2016-10-16 17:59:38 +03:00
|
|
|
$a = false
|
|
|
|
) {
|
2018-05-23 11:50:44 +03:00
|
|
|
if ($token === '' || $x === 0 || $y === 0) {
|
2016-10-16 17:59:38 +03:00
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2018-05-23 11:50:44 +03:00
|
|
|
$share = $this->shareManager->getShareByToken($token);
|
2016-10-16 17:59:38 +03:00
|
|
|
} catch (ShareNotFound $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($share->getPermissions() & Constants::PERMISSION_READ) === 0) {
|
|
|
|
return new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
}
|
|
|
|
|
2016-10-18 11:36:57 +03:00
|
|
|
try {
|
|
|
|
$node = $share->getNode();
|
|
|
|
if ($node instanceof Folder) {
|
2016-10-16 17:59:38 +03:00
|
|
|
$file = $node->get($file);
|
2016-10-18 11:36:57 +03:00
|
|
|
} else {
|
|
|
|
$file = $node;
|
2016-10-16 17:59:38 +03:00
|
|
|
}
|
|
|
|
|
2016-10-18 11:36:57 +03:00
|
|
|
$f = $this->previewManager->getPreview($file, $x, $y, !$a);
|
2019-01-03 00:27:46 +03:00
|
|
|
$response = new FileDisplayResponse($f, Http::STATUS_OK, ['Content-Type' => $f->getMimeType()]);
|
|
|
|
$response->cacheFor(3600 * 24);
|
|
|
|
return $response;
|
2016-10-18 11:36:57 +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-18 11:36:57 +03:00
|
|
|
}
|
2016-10-16 17:59:38 +03:00
|
|
|
}
|
2017-09-21 12:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @PublicPage
|
|
|
|
* @NoCSRFRequired
|
2017-09-22 13:35:02 +03:00
|
|
|
* @NoSameSiteCookieRequired
|
2017-09-21 12:37:37 +03:00
|
|
|
*
|
|
|
|
* @param $token
|
|
|
|
* @return DataResponse|FileDisplayResponse
|
|
|
|
*/
|
|
|
|
public function directLink($token) {
|
|
|
|
// No token no image
|
|
|
|
if ($token === '') {
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No share no image
|
|
|
|
try {
|
|
|
|
$share = $this->shareManager->getShareByToken($token);
|
|
|
|
} catch (ShareNotFound $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No permissions no image
|
|
|
|
if (($share->getPermissions() & Constants::PERMISSION_READ) === 0) {
|
|
|
|
return new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Password protected shares have no direct link!
|
|
|
|
if ($share->getPassword() !== null) {
|
|
|
|
return new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$node = $share->getNode();
|
|
|
|
if ($node instanceof Folder) {
|
|
|
|
// Direct link only works for single files
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
$f = $this->previewManager->getPreview($node, -1, -1, false);
|
2019-01-03 00:27:46 +03:00
|
|
|
$response = new FileDisplayResponse($f, Http::STATUS_OK, ['Content-Type' => $f->getMimeType()]);
|
|
|
|
$response->cacheFor(3600 * 24);
|
|
|
|
return $response;
|
2017-09-21 12:37:37 +03:00
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
}
|
2016-10-16 17:59:38 +03:00
|
|
|
}
|