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:
authorMorris Jobke <hey@morrisjobke.de>2020-08-10 16:42:33 +0300
committerGitHub <noreply@github.com>2020-08-10 16:42:33 +0300
commitf626f4ddc2e0862dfeaae2bac18ca6c900c652ca (patch)
tree6af519ee4f4d040cb8c745660910b32cc81d48f4 /lib
parentf1c05b7b08055cbe04449eec5cd703ddab91c739 (diff)
parent8d9c41c3477e97e40a0ab23423cf1106192cb3a6 (diff)
Merge pull request #21982 from nextcloud/backport/21628/stable18
[stable18] fix moving files from external storage to object store trashbin
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Cache/Updater.php21
-rw-r--r--lib/private/Files/Storage/Common.php25
-rw-r--r--lib/private/Files/Storage/Local.php8
3 files changed, 36 insertions, 18 deletions
diff --git a/lib/private/Files/Cache/Updater.php b/lib/private/Files/Cache/Updater.php
index 59cff9b3a41..b5d8fd0054f 100644
--- a/lib/private/Files/Cache/Updater.php
+++ b/lib/private/Files/Cache/Updater.php
@@ -27,6 +27,7 @@
namespace OC\Files\Cache;
+use OC\Files\FileInfo;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\Cache\IUpdater;
use OCP\Files\Storage\IStorage;
@@ -187,7 +188,9 @@ class Updater implements IUpdater {
$sourceUpdater = $sourceStorage->getUpdater();
$sourcePropagator = $sourceStorage->getPropagator();
- if ($sourceCache->inCache($source)) {
+ $sourceInfo = $sourceCache->get($source);
+
+ if ($sourceInfo !== false) {
if ($this->cache->inCache($target)) {
$this->cache->remove($target);
}
@@ -197,13 +200,17 @@ class Updater implements IUpdater {
} else {
$this->cache->moveFromCache($sourceCache, $source, $target);
}
- }
- if (pathinfo($source, PATHINFO_EXTENSION) !== pathinfo($target, PATHINFO_EXTENSION)) {
- // handle mime type change
- $mimeType = $this->storage->getMimeType($target);
- $fileId = $this->cache->getId($target);
- $this->cache->update($fileId, ['mimetype' => $mimeType]);
+ $sourceExtension = pathinfo($source, PATHINFO_EXTENSION);
+ $targetExtension = pathinfo($target, PATHINFO_EXTENSION);
+ $targetIsTrash = preg_match("/d\d+/", $targetExtension);
+
+ if ($sourceExtension !== $targetExtension && $sourceInfo->getMimeType() !== FileInfo::MIMETYPE_FOLDER && !$targetIsTrash) {
+ // handle mime type change
+ $mimeType = $this->storage->getMimeType($target);
+ $fileId = $this->cache->getId($target);
+ $this->cache->update($fileId, ['mimetype' => $mimeType]);
+ }
}
if ($sourceCache instanceof Cache) {
diff --git a/lib/private/Files/Storage/Common.php b/lib/private/Files/Storage/Common.php
index 82ac49b9fdf..403864bbb1e 100644
--- a/lib/private/Files/Storage/Common.php
+++ b/lib/private/Files/Storage/Common.php
@@ -52,6 +52,7 @@ use OC\Files\Storage\Wrapper\Jail;
use OC\Files\Storage\Wrapper\Wrapper;
use OCP\Files\EmptyFileNameException;
use OCP\Files\FileNameTooLongException;
+use OCP\Files\GenericFileException;
use OCP\Files\InvalidCharacterInPathException;
use OCP\Files\InvalidDirectoryException;
use OCP\Files\InvalidPathException;
@@ -618,18 +619,19 @@ 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');
- list(, $result) = \OC_Helper::streamCopy($source, $target);
+ $result = false;
+ if ($source) {
+ try {
+ $this->writeStream($targetInternalPath, $source);
+ $result = true;
+ } catch (\Exception $e) {
+ \OC::$server->getLogger()->logException($e, ['level' => ILogger::WARN, 'message' => 'Failed to copy stream to storage']);
+ }
+ }
+
if ($result and $preserveMtime) {
$this->touch($targetInternalPath, $sourceStorage->filemtime($sourceInternalPath));
}
- fclose($source);
- fclose($target);
if (!$result) {
// delete partially written target file
@@ -855,10 +857,13 @@ abstract class Common implements Storage, ILockingStorage, IWriteStreamStorage {
public function writeStream(string $path, $stream, int $size = null): int {
$target = $this->fopen($path, 'w');
if (!$target) {
- return 0;
+ throw new GenericFileException("Failed to open $path for writing");
}
try {
[$count, $result] = \OC_Helper::streamCopy($stream, $target);
+ if (!$result) {
+ throw new GenericFileException("Failed to copy stream");
+ }
} finally {
fclose($target);
fclose($stream);
diff --git a/lib/private/Files/Storage/Local.php b/lib/private/Files/Storage/Local.php
index 13a3ca87097..5f86c5b75f8 100644
--- a/lib/private/Files/Storage/Local.php
+++ b/lib/private/Files/Storage/Local.php
@@ -43,6 +43,7 @@ namespace OC\Files\Storage;
use OC\Files\Filesystem;
use OC\Files\Storage\Wrapper\Jail;
use OCP\Files\ForbiddenException;
+use OCP\Files\GenericFileException;
use OCP\Files\Storage\IStorage;
use OCP\ILogger;
@@ -500,6 +501,11 @@ class Local extends \OC\Files\Storage\Common {
}
public function writeStream(string $path, $stream, int $size = null): int {
- return (int)file_put_contents($this->getSourcePath($path), $stream);
+ $result = file_put_contents($this->getSourcePath($path), $stream);
+ if ($result === false) {
+ throw new GenericFileException("Failed write steam to $path");
+ } else {
+ return $result;
+ }
}
}