Skip to content
Snippets Groups Projects
Commit 1757d016 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #14640 from owncloud/rescanversionsonlyonce

Only rescan versions once in trashbin
parents 9a9633f8 7432c73f
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,13 @@ class Trashbin { ...@@ -32,6 +32,13 @@ class Trashbin {
// unit: percentage; 50% of available disk space/quota // unit: percentage; 50% of available disk space/quota
const DEFAULTMAXSIZE = 50; const DEFAULTMAXSIZE = 50;
/**
* Whether versions have already be rescanned during this PHP request
*
* @var bool
*/
private static $scannedVersions = false;
public static function getUidAndFilename($filename) { public static function getUidAndFilename($filename) {
$uid = \OC\Files\Filesystem::getOwner($filename); $uid = \OC\Files\Filesystem::getOwner($filename);
\OC\Files\Filesystem::initMountPoints($uid); \OC\Files\Filesystem::initMountPoints($uid);
...@@ -825,9 +832,12 @@ class Trashbin { ...@@ -825,9 +832,12 @@ class Trashbin {
$versions = array(); $versions = array();
//force rescan of versions, local storage may not have updated the cache //force rescan of versions, local storage may not have updated the cache
/** @var \OC\Files\Storage\Storage $storage */ if (!self::$scannedVersions) {
list($storage, ) = $view->resolvePath('/'); /** @var \OC\Files\Storage\Storage $storage */
$storage->getScanner()->scan('files_trashbin'); list($storage, ) = $view->resolvePath('/');
$storage->getScanner()->scan('files_trashbin/versions');
self::$scannedVersions = true;
}
if ($timestamp) { if ($timestamp) {
// fetch for old versions // fetch for old versions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment