summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-04-19 14:03:39 +0200
committerRoeland Jago Douma <rullzer@owncloud.com>2016-04-19 14:04:00 +0200
commitb53d6598f10c97318fbf065369f5b097eb134e28 (patch)
treee8386af78d80efb4ca3e66df70d162bcf9903aec /lib/private
parentf27d7cbf996a80b1dc1087f5275291f9d938faac (diff)
downloadnextcloud-server-b53d6598f10c97318fbf065369f5b097eb134e28.tar.gz
nextcloud-server-b53d6598f10c97318fbf065369f5b097eb134e28.zip
Move moveFromCache to CacheJail
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/files/cache/wrapper/cachejail.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/private/files/cache/wrapper/cachejail.php b/lib/private/files/cache/wrapper/cachejail.php
index 868e63cdf81..88b0f23a1fc 100644
--- a/lib/private/files/cache/wrapper/cachejail.php
+++ b/lib/private/files/cache/wrapper/cachejail.php
@@ -281,4 +281,20 @@ class CacheJail extends CacheWrapper {
$path = $this->cache->getPathById($id);
return $this->getJailedPath($path);
}
+
+ /**
+ * Move a file or folder in the cache
+ *
+ * Note that this should make sure the entries are removed from the source cache
+ *
+ * @param \OCP\Files\Cache\ICache $sourceCache
+ * @param string $sourcePath
+ * @param string $targetPath
+ */
+ public function moveFromCache(\OCP\Files\Cache\ICache $sourceCache, $sourcePath, $targetPath) {
+ if ($sourceCache === $this) {
+ return $this->move($sourcePath, $targetPath);
+ }
+ return $this->cache->moveFromCache($sourceCache, $sourcePath, $targetPath);
+ }
}