Only require CREATE permissions when the file does not exist yet
This commit is contained in:
parent
8c4e5a923a
commit
14299e44e2
|
@ -205,7 +205,11 @@ class ObjectTree extends \Sabre\DAV\Tree {
|
||||||
|
|
||||||
$infoDestination = $this->fileView->getFileInfo(dirname($destinationPath));
|
$infoDestination = $this->fileView->getFileInfo(dirname($destinationPath));
|
||||||
$infoSource = $this->fileView->getFileInfo($sourcePath);
|
$infoSource = $this->fileView->getFileInfo($sourcePath);
|
||||||
$destinationPermission = $infoDestination && $infoDestination->isUpdateable();
|
if ($this->fileView->file_exists($destinationPath)) {
|
||||||
|
$destinationPermission = $infoDestination && $infoDestination->isUpdateable();
|
||||||
|
} else {
|
||||||
|
$destinationPermission = $infoDestination && $infoDestination->isCreatable();
|
||||||
|
}
|
||||||
$sourcePermission = $infoSource && $infoSource->isDeletable();
|
$sourcePermission = $infoSource && $infoSource->isDeletable();
|
||||||
|
|
||||||
if (!$destinationPermission || !$sourcePermission) {
|
if (!$destinationPermission || !$sourcePermission) {
|
||||||
|
@ -298,7 +302,12 @@ class ObjectTree extends \Sabre\DAV\Tree {
|
||||||
|
|
||||||
|
|
||||||
$info = $this->fileView->getFileInfo(dirname($destination));
|
$info = $this->fileView->getFileInfo(dirname($destination));
|
||||||
if ($info && !$info->isUpdateable()) {
|
if ($this->fileView->file_exists($destination)) {
|
||||||
|
$destinationPermission = $info && $info->isUpdateable();
|
||||||
|
} else {
|
||||||
|
$destinationPermission = $info && $info->isCreatable();
|
||||||
|
}
|
||||||
|
if (!$destinationPermission) {
|
||||||
throw new Forbidden('No permissions to copy object.');
|
throw new Forbidden('No permissions to copy object.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue