Browse Source

Merge pull request #16526 from owncloud/enc_fix_versions_webdav_upload

remove part file extension before we read a filekey
tags/v8.1RC2
Vincent Petry 9 years ago
parent
commit
ce34edacfa

+ 2
- 1
lib/private/encryption/keys/storage.php View File

@@ -70,7 +70,8 @@ class Storage implements IStorage {
* @inheritdoc
*/
public function getFileKey($path, $keyId, $encryptionModuleId) {
$keyDir = $this->getFileKeyDir($encryptionModuleId, $path);
$realFile = $this->util->stripPartialFileExtension($path);
$keyDir = $this->getFileKeyDir($encryptionModuleId, $realFile);
return $this->getKey($keyDir . $keyId);
}


+ 3
- 1
tests/lib/encryption/keys/storage.php View File

@@ -76,7 +76,9 @@ class StorageTest extends TestCase {
$this->util->expects($this->any())
->method('getUidAndFilename')
->willReturn(array('user1', '/files/foo.txt'));
$this->util->expects($this->any())
// we need to strip away the part file extension in order to reuse a
// existing key if it exists, otherwise versions will break
$this->util->expects($this->once())
->method('stripPartialFileExtension')
->willReturnArgument(0);
$this->util->expects($this->any())

+ 20
- 0
tests/lib/encryption/utiltest.php View File

@@ -174,4 +174,24 @@ class UtilTest extends TestCase {
);
}

/**
* @dataProvider dataTestStripPartialFileExtension
*
* @param string $path
* @param string $expected
*/
public function testStripPartialFileExtension($path, $expected) {
$this->assertSame($expected,
$this->util->stripPartialFileExtension($path));
}

public function dataTestStripPartialFileExtension() {
return array(
array('/foo/test.txt', '/foo/test.txt'),
array('/foo/test.txt.part', '/foo/test.txt'),
array('/foo/test.txt.ocTransferId7567846853.part', '/foo/test.txt'),
array('/foo/test.txt.ocTransferId7567.part', '/foo/test.txt'),
);
}

}

Loading…
Cancel
Save