Merge pull request #1320 from nextcloud/backport-1301-fix-required-permissions-for-webdav-move-and-copy

[stable10] Fix required permissions for webdav move and copy
This commit is contained in:
Morris Jobke 2016-09-08 12:13:18 +02:00 committed by GitHub
commit a9184287e6
2 changed files with 46 additions and 20 deletions

View File

@ -204,9 +204,18 @@ class ObjectTree extends \Sabre\DAV\Tree {
} }
$infoDestination = $this->fileView->getFileInfo(dirname($destinationPath)); $infoDestination = $this->fileView->getFileInfo(dirname($destinationPath));
$infoSource = $this->fileView->getFileInfo($sourcePath); if (dirname($destinationPath) === dirname($sourcePath)) {
$destinationPermission = $infoDestination && $infoDestination->isUpdateable(); $sourcePermission = $infoDestination && $infoDestination->isUpdateable();
$sourcePermission = $infoSource && $infoSource->isDeletable(); $destinationPermission = $sourcePermission;
} else {
$infoSource = $this->fileView->getFileInfo($sourcePath);
if ($this->fileView->file_exists($destinationPath)) {
$destinationPermission = $infoDestination && $infoDestination->isUpdateable();
} else {
$destinationPermission = $infoDestination && $infoDestination->isCreatable();
}
$sourcePermission = $infoSource && $infoSource->isDeletable();
}
if (!$destinationPermission || !$sourcePermission) { if (!$destinationPermission || !$sourcePermission) {
throw new Forbidden('No permissions to move object.'); throw new Forbidden('No permissions to move object.');
@ -298,7 +307,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.');
} }

View File

@ -34,7 +34,8 @@ use OC\Files\Storage\Temporary;
class TestDoubleFileView extends \OC\Files\View { class TestDoubleFileView extends \OC\Files\View {
public function __construct($updatables, $deletables, $canRename = true) { public function __construct($creatables, $updatables, $deletables, $canRename = true) {
$this->creatables = $creatables;
$this->updatables = $updatables; $this->updatables = $updatables;
$this->deletables = $deletables; $this->deletables = $deletables;
$this->canRename = $canRename; $this->canRename = $canRename;
@ -42,15 +43,15 @@ class TestDoubleFileView extends \OC\Files\View {
} }
public function isUpdatable($path) { public function isUpdatable($path) {
return $this->updatables[$path]; return !empty($this->updatables[$path]);
} }
public function isCreatable($path) { public function isCreatable($path) {
return $this->updatables[$path]; return !empty($this->creatables[$path]);
} }
public function isDeletable($path) { public function isDeletable($path) {
return $this->deletables[$path]; return !empty($this->deletables[$path]);
} }
public function rename($path1, $path2) { public function rename($path1, $path2) {
@ -63,7 +64,11 @@ class TestDoubleFileView extends \OC\Files\View {
public function getFileInfo($path, $includeMountPoints = true) { public function getFileInfo($path, $includeMountPoints = true) {
$objectTreeTest = new ObjectTreeTest(); $objectTreeTest = new ObjectTreeTest();
return $objectTreeTest->getFileInfoMock(); return $objectTreeTest->getFileInfoMock(
$this->isCreatable($path),
$this->isUpdatable($path),
$this->isDeletable($path)
);
} }
} }
@ -76,18 +81,22 @@ class TestDoubleFileView extends \OC\Files\View {
*/ */
class ObjectTreeTest extends \Test\TestCase { class ObjectTreeTest extends \Test\TestCase {
public function getFileInfoMock() { public function getFileInfoMock($create = true, $update = true, $delete = true) {
$mock = $this->getMockBuilder('\OCP\Files\FileInfo') $mock = $this->getMockBuilder('\OCP\Files\FileInfo')
->disableOriginalConstructor() ->disableOriginalConstructor()
->getMock(); ->getMock();
$mock $mock
->expects($this->any()) ->expects($this->any())
->method('isDeletable') ->method('isCreatable')
->willReturn(true); ->willReturn($create);
$mock $mock
->expects($this->any()) ->expects($this->any())
->method('isUpdateable') ->method('isUpdateable')
->willReturn(true); ->willReturn($update);
$mock
->expects($this->any())
->method('isDeletable')
->willReturn($delete);
return $mock; return $mock;
} }
@ -97,14 +106,14 @@ class ObjectTreeTest extends \Test\TestCase {
* @expectedException \Sabre\DAV\Exception\Forbidden * @expectedException \Sabre\DAV\Exception\Forbidden
*/ */
public function testMoveFailed($source, $destination, $updatables, $deletables) { public function testMoveFailed($source, $destination, $updatables, $deletables) {
$this->moveTest($source, $destination, $updatables, $deletables); $this->moveTest($source, $destination, $updatables, $updatables, $deletables, true);
} }
/** /**
* @dataProvider moveSuccessProvider * @dataProvider moveSuccessProvider
*/ */
public function testMoveSuccess($source, $destination, $updatables, $deletables) { public function testMoveSuccess($source, $destination, $updatables, $deletables) {
$this->moveTest($source, $destination, $updatables, $deletables); $this->moveTest($source, $destination, $updatables, $updatables, $deletables);
$this->assertTrue(true); $this->assertTrue(true);
} }
@ -113,7 +122,7 @@ class ObjectTreeTest extends \Test\TestCase {
* @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath * @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath
*/ */
public function testMoveFailedInvalidChars($source, $destination, $updatables, $deletables) { public function testMoveFailedInvalidChars($source, $destination, $updatables, $deletables) {
$this->moveTest($source, $destination, $updatables, $deletables); $this->moveTest($source, $destination, $updatables, $updatables, $deletables);
} }
function moveFailedInvalidCharsProvider() { function moveFailedInvalidCharsProvider() {
@ -144,10 +153,13 @@ class ObjectTreeTest extends \Test\TestCase {
/** /**
* @param $source * @param $source
* @param $destination * @param $destination
* @param $creatables
* @param $updatables * @param $updatables
* @param $deletables
* @param $throwsBeforeGetNode
*/ */
private function moveTest($source, $destination, $updatables, $deletables) { private function moveTest($source, $destination, $creatables, $updatables, $deletables, $throwsBeforeGetNode = false) {
$view = new TestDoubleFileView($updatables, $deletables); $view = new TestDoubleFileView($creatables, $updatables, $deletables);
$info = new FileInfo('', null, null, array(), null); $info = new FileInfo('', null, null, array(), null);
@ -157,7 +169,7 @@ class ObjectTreeTest extends \Test\TestCase {
->setConstructorArgs([$rootDir, $view]) ->setConstructorArgs([$rootDir, $view])
->getMock(); ->getMock();
$objectTree->expects($this->once()) $objectTree->expects($throwsBeforeGetNode ? $this->never() : $this->once())
->method('getNodeForPath') ->method('getNodeForPath')
->with($this->identicalTo($source)) ->with($this->identicalTo($source))
->will($this->returnValue(false)); ->will($this->returnValue(false));
@ -360,7 +372,7 @@ class ObjectTreeTest extends \Test\TestCase {
$updatables = array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false); $updatables = array('a' => true, 'a/b' => true, 'b' => true, 'b/b' => false);
$deletables = array('a/b' => true); $deletables = array('a/b' => true);
$view = new TestDoubleFileView($updatables, $deletables); $view = new TestDoubleFileView($updatables, $updatables, $deletables);
$info = new FileInfo('', null, null, array(), null); $info = new FileInfo('', null, null, array(), null);