Skip to content
Snippets Groups Projects
Commit 3c0be7d1 authored by Robin Appelman's avatar Robin Appelman
Browse files

only lock the parent folders

parent d6f56ea6
No related branches found
No related tags found
No related merge requests found
...@@ -632,7 +632,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage { ...@@ -632,7 +632,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
// lock the parent folders of the owner when locking the share as recipient // lock the parent folders of the owner when locking the share as recipient
if ($path === '') { if ($path === '') {
$sourcePath = $this->ownerView->getPath($this->share['file_source']); $sourcePath = $this->ownerView->getPath($this->share['file_source']);
$this->ownerView->lockFile($sourcePath, ILockingProvider::LOCK_SHARED, true); $this->ownerView->lockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true);
} }
} }
...@@ -648,7 +648,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage { ...@@ -648,7 +648,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
// unlock the parent folders of the owner when unlocking the share as recipient // unlock the parent folders of the owner when unlocking the share as recipient
if ($path === '') { if ($path === '') {
$sourcePath = $this->ownerView->getPath($this->share['file_source']); $sourcePath = $this->ownerView->getPath($this->share['file_source']);
$this->ownerView->unlockFile($sourcePath, ILockingProvider::LOCK_SHARED, true); $this->ownerView->unlockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true);
} }
} }
......
...@@ -87,4 +87,15 @@ class Locking extends TestCase { ...@@ -87,4 +87,15 @@ class Locking extends TestCase {
$this->assertTrue(Filesystem::rename('/foo', '/asd')); $this->assertTrue(Filesystem::rename('/foo', '/asd'));
} }
public function testChangeLock() {
Filesystem::initMountPoints($this->recipientUid);
$recipientView = new View('/' . $this->recipientUid . '/files');
$recipientView->lockFile('bar.txt', ILockingProvider::LOCK_SHARED);
$recipientView->changeLock('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
$recipientView->unlockFile('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
$this->assertTrue(true);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment