diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-03-20 08:45:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 08:45:15 +0100 |
commit | 010b075c2f8c272bb360c84b9c5d477776c9d758 (patch) | |
tree | 952d25593168661e3d555ecb64bd1e692b99c15c /apps | |
parent | 61a02b89c5b69d3c6f1d1a9c511526892b82fe60 (diff) | |
parent | 6edb93fc4a3e7cc143f29f49556a19563dd87c80 (diff) | |
download | nextcloud-server-010b075c2f8c272bb360c84b9c5d477776c9d758.tar.gz nextcloud-server-010b075c2f8c272bb360c84b9c5d477776c9d758.zip |
Merge pull request #20032 from nextcloud/bugfix/19878/allow-video-player-on-hide-download
Allow the video player on the hide download
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareController.php | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareController.php b/apps/files_sharing/lib/Controller/ShareController.php index 3feb98f7f02..620aaf42c69 100644 --- a/apps/files_sharing/lib/Controller/ShareController.php +++ b/apps/files_sharing/lib/Controller/ShareController.php @@ -55,6 +55,7 @@ use OCP\AppFramework\Http\Template\PublicTemplateResponse; use OCP\AppFramework\Http\Template\SimpleMenuAction; use OCP\AppFramework\Http\TemplateResponse; use OCP\Defaults; +use OCP\Files\Folder; use OCP\Files\IRootFolder; use OCP\Files\NotFoundException; use OCP\IConfig; @@ -582,16 +583,16 @@ class ShareController extends AuthPublicShareController { // Single file download $this->singleFileDownloaded($share, $share->getNode()); } else { - if ($share->getHideDownload()) { + try { + if (!empty($files_list)) { + $this->fileListDownloaded($share, $files_list, $node); + } else { + // The folder is downloaded + $this->singleFileDownloaded($share, $share->getNode()); + } + } catch (NotFoundException $e) { return new NotFoundResponse(); } - - if (!empty($files_list)) { - $this->fileListDownloaded($share, $files_list, $node); - } else { - // The folder is downloaded - $this->singleFileDownloaded($share, $share->getNode()); - } } } @@ -643,8 +644,13 @@ class ShareController extends AuthPublicShareController { * @param Share\IShare $share * @param array $files_list * @param \OCP\Files\Folder $node + * @throws NotFoundException when trying to download a folder or multiple files of a "hide download" share */ protected function fileListDownloaded(Share\IShare $share, array $files_list, \OCP\Files\Folder $node) { + if ($share->getHideDownload() && count($files_list) > 1) { + throw new NotFoundException('Downloading more than 1 file'); + } + foreach ($files_list as $file) { $subNode = $node->get($file); $this->singleFileDownloaded($share, $subNode); @@ -656,8 +662,12 @@ class ShareController extends AuthPublicShareController { * create activity if a single file was downloaded from a link share * * @param Share\IShare $share + * @throws NotFoundException when trying to download a folder of a "hide download" share */ protected function singleFileDownloaded(Share\IShare $share, \OCP\Files\Node $node) { + if ($share->getHideDownload() && $node instanceof Folder) { + throw new NotFoundException('Downloading a folder'); + } $fileId = $node->getId(); |