summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2017-02-08 15:56:34 +0100
committerMorris Jobke <hey@morrisjobke.de>2017-03-16 23:45:03 -0600
commit7256940524de24dc754678401e1902848bb5b175 (patch)
treef15246621756b3c19f34b686a2cdd05939da4c2f
parent5683365a2cc605cbaf41290e4cdfde7028f9014a (diff)
downloadnextcloud-server-7256940524de24dc754678401e1902848bb5b175.tar.gz
nextcloud-server-7256940524de24dc754678401e1902848bb5b175.zip
Redirect unlink to rmdir (#27101)
Many API callers will call unlink even for directories and it can mess up with some wrappers like the encryption wrapper Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--lib/private/Files/View.php6
-rw-r--r--tests/lib/Files/ViewTest.php24
2 files changed, 29 insertions, 1 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index db21d400b39..6ffb5edff3e 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -692,7 +692,11 @@ class View {
if ($mount and $mount->getInternalPath($absolutePath) === '') {
return $this->removeMount($mount, $absolutePath);
}
- $result = $this->basicOperation('unlink', $path, array('delete'));
+ if ($this->is_dir($path)) {
+ $result = $this->basicOperation('rmdir', $path, ['delete']);
+ } else {
+ $result = $this->basicOperation('unlink', $path, ['delete']);
+ }
if (!$result && !$this->file_exists($path)) { //clear ghost files from the cache on delete
$storage = $mount->getStorage();
$internalPath = $mount->getInternalPath($absolutePath);
diff --git a/tests/lib/Files/ViewTest.php b/tests/lib/Files/ViewTest.php
index 8ec9619087c..4cdea59da0d 100644
--- a/tests/lib/Files/ViewTest.php
+++ b/tests/lib/Files/ViewTest.php
@@ -515,6 +515,30 @@ class ViewTest extends \Test\TestCase {
$this->assertFalse($rootView->file_exists('substorage/bar.txt'));
}
+ public function rmdirOrUnlinkDataProvider() {
+ return [['rmdir'], ['unlink']];
+ }
+
+ /**
+ * @dataProvider rmdirOrUnlinkDataProvider
+ */
+ public function testRmdir($method) {
+ $storage1 = $this->getTestStorage();
+ $storage2 = $this->getTestStorage();
+ Filesystem::mount($storage1, [], '/');
+
+ $rootView = new View('');
+ $rootView->mkdir('sub');
+ $rootView->mkdir('sub/deep');
+ $rootView->file_put_contents('/sub/deep/foo.txt', 'asd');
+
+ $this->assertTrue($rootView->file_exists('sub/deep/foo.txt'));
+
+ $this->assertTrue($rootView->$method('sub'));
+
+ $this->assertFalse($rootView->file_exists('sub'));
+ }
+
/**
* @medium
*/