Prevent archieved download on secure view

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-02-07 12:45:29 +01:00 committed by backportbot[bot]
parent f60fcbdb7c
commit 2212b2a534
1 changed files with 4 additions and 1 deletions

View File

@ -523,11 +523,14 @@ class ShareController extends AuthPublicShareController {
}
}
if (!$this->validateShare($share)) {
throw new NotFoundException();
}
if ($share->getHideDownload()) {
return new NotFoundResponse();
}
$userFolder = $this->rootFolder->getUserFolder($share->getShareOwner());
$originalSharePath = $userFolder->getRelativePath($share->getNode()->getPath());