diff options
Diffstat (limited to 'lib/private/cache/fileglobalgc.php')
-rw-r--r-- | lib/private/cache/fileglobalgc.php | 49 |
1 files changed, 46 insertions, 3 deletions
diff --git a/lib/private/cache/fileglobalgc.php b/lib/private/cache/fileglobalgc.php index 9be031b2aec..c95154952de 100644 --- a/lib/private/cache/fileglobalgc.php +++ b/lib/private/cache/fileglobalgc.php @@ -21,8 +21,51 @@ */ namespace OC\Cache; -class FileGlobalGC extends \OC\BackgroundJob\Job{ - public function run($argument){ - FileGlobal::gc(); +use OC\BackgroundJob\Job; +use OCP\IConfig; + +class FileGlobalGC extends Job { + public function run($argument) { + $this->gc(\OC::$server->getConfig(), $this->getCacheDir()); + } + + protected function getCacheDir() { + return get_temp_dir() . '/owncloud-' . \OC_Util::getInstanceId() . '/'; + } + + /** + * @param string $cacheDir + * @param int $now + * @return string[] + */ + public function getExpiredPaths($cacheDir, $now) { + $files = scandir($cacheDir); + $files = array_filter($files, function ($file) { + return $file != '.' and $file != '..'; + }); + $paths = array_map(function ($file) use ($cacheDir) { + return $cacheDir . $file; + }, $files); + return array_values(array_filter($paths, function ($path) use ($now) { + return is_file($path) and (filemtime($path) < $now); + })); + } + + /** + * @param \OCP\IConfig $config + * @param string $cacheDir + */ + public function gc(IConfig $config, $cacheDir) { + $lastRun = $config->getAppValue('core', 'global_cache_gc_lastrun', 0); + $now = time(); + if (($now - $lastRun) < 300) { + // only do cleanup every 5 minutes + return; + } + $config->setAppValue('core', 'global_cache_gc_lastrun', $now); + if (!is_dir($cacheDir)) { + return; + } + array_walk($this->getExpiredPaths($cacheDir, $now), 'unlink'); } } |