diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-08-31 12:28:04 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-08-31 17:08:35 +0000 |
commit | 55ce30ad53ce1998fee06a75b02351fea53c7c96 (patch) | |
tree | 733f9fa80d43296f95dbb4c59c8a49ae2ca3015d /lib | |
parent | f909d2a39ad8c400a1e8bdef34dc3fd8b2ec6bd9 (diff) | |
download | nextcloud-server-55ce30ad53ce1998fee06a75b02351fea53c7c96.tar.gz nextcloud-server-55ce30ad53ce1998fee06a75b02351fea53c7c96.zip |
Only update the filecache entry once the file has been written to S3
If we already update before we have no way to revert if the upload
fails.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/ObjectStore/ObjectStoreStorage.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 1658c913910..bd5b2d47770 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -444,7 +444,13 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { $exists = $this->getCache()->inCache($path); $uploadPath = $exists ? $path : $path . '.part'; - $fileId = $this->getCache()->put($uploadPath, $stat); + + if ($exists) { + $fileId = $stat['fileid']; + } else { + $fileId = $this->getCache()->put($uploadPath, $stat); + } + $urn = $this->getURN($fileId); try { //upload to object storage @@ -459,6 +465,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { if (is_resource($countStream)) { fclose($countStream); } + $stat['size'] = $size; } else { $this->objectStore->writeObject($urn, $stream); } @@ -482,7 +489,9 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { throw $ex; // make this bubble up } - if (!$exists) { + if ($exists) { + $this->getCache()->update($fileId, $stat); + } else { if ($this->objectStore->objectExists($urn)) { $this->getCache()->move($uploadPath, $path); } else { |