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
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-04-22 15:59:15 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2022-04-22 22:29:15 +0300
commit7b604c151681383e2f03a259b5edcc935511ef35 (patch)
treee7a7eb0af7e41936b63825176f259401a03d3787
parentad722411d3b0da85e2c2748864ed9cd046ccf853 (diff)
use and cache root storage info if a share can't be resolved
as is a broken share will never be cached Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--lib/private/legacy/OC_Helper.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/lib/private/legacy/OC_Helper.php b/lib/private/legacy/OC_Helper.php
index 68fb4311ef8..0d1903007c2 100644
--- a/lib/private/legacy/OC_Helper.php
+++ b/lib/private/legacy/OC_Helper.php
@@ -48,6 +48,7 @@ use OC\Files\Filesystem;
use OCP\Files\Mount\IMountPoint;
use OCP\ICacheFactory;
use OCP\IUser;
+use Psr\Log\LoggerInterface;
use Symfony\Component\Process\ExecutableFinder;
/**
@@ -518,7 +519,6 @@ class OC_Helper {
$sourceStorage = $storage;
if ($storage->instanceOfStorage('\OCA\Files_Sharing\SharedStorage')) {
$includeExtStorage = false;
- $sourceStorage = $storage->getSourceStorage();
$internalPath = $storage->getUnjailedPath($rootInfo->getInternalPath());
} else {
$internalPath = $rootInfo->getInternalPath();
@@ -544,7 +544,19 @@ class OC_Helper {
/** @var \OC\Files\Storage\Wrapper\Quota $storage */
$quota = $sourceStorage->getQuota();
}
- $free = $sourceStorage->free_space($internalPath);
+ try {
+ $free = $sourceStorage->free_space($internalPath);
+ } catch (\Exception $e) {
+ if ($path === "") {
+ throw $e;
+ }
+ /** @var LoggerInterface $logger */
+ $logger = \OC::$server->get(LoggerInterface::class);
+ $logger->warning("Error while getting quota info, using root quota", ['exception' => $e]);
+ $rootInfo = self::getStorageInfo("");
+ $memcache->set($cacheKey, $rootInfo, 5 * 60);
+ return $rootInfo;
+ }
if ($free >= 0) {
$total = $free + $used;
} else {