Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2020-06-29 19:14:47 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-07-24 00:01:22 +0300
commitc567b1d6b221ea5ffd48c88b17e404d85f2bb19a (patch)
tree42486514de8d79ddadf99924488ef2b6484289bd /lib
parent80749680788c94d58ba1399ba2c723f471aaa849 (diff)
fix moving files from external storage to object store trashbin
having the "cache rename" after the "storage move" caused the target to get the fileid from the source file, without taking care that the object is stored under the original file id. By doing the "cache rename" first, we trigger the "update existing file" logic while moving the file to the object store and the object gets stored for the correct file id Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Storage/Common.php15
1 files changed, 6 insertions, 9 deletions
diff --git a/lib/private/Files/Storage/Common.php b/lib/private/Files/Storage/Common.php
index 93e13937f5c..a6297951818 100644
--- a/lib/private/Files/Storage/Common.php
+++ b/lib/private/Files/Storage/Common.php
@@ -620,18 +620,15 @@ abstract class Common implements Storage, ILockingStorage, IWriteStreamStorage {
}
} else {
$source = $sourceStorage->fopen($sourceInternalPath, 'r');
- // TODO: call fopen in a way that we execute again all storage wrappers
- // to avoid that we bypass storage wrappers which perform important actions
- // for this operation. Same is true for all other operations which
- // are not the same as the original one.Once this is fixed we also
- // need to adjust the encryption wrapper.
- $target = $this->fopen($targetInternalPath, 'w');
- [, $result] = \OC_Helper::streamCopy($source, $target);
+ if ($source) {
+ $result = $this->writeStream($targetInternalPath, $source) > 0;
+ } else {
+ $result = false;
+ }
+
if ($result and $preserveMtime) {
$this->touch($targetInternalPath, $sourceStorage->filemtime($sourceInternalPath));
}
- fclose($source);
- fclose($target);
if (!$result) {
// delete partially written target file