summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2016-04-21 14:26:41 +0200
committerBjörn Schießle <schiessle@owncloud.com>2016-04-21 14:26:41 +0200
commit80959ad95ac75783babf2a224a7af044a858fa08 (patch)
treed1a68e1eb152a3d02082534b28487546cae8ba55 /apps/files_trashbin
parente673ff0f330425ac37697e2ce2f262888289b406 (diff)
parent9ebae0bdeb2882dbe356f7bd691492ac0c55c1fa (diff)
downloadnextcloud-server-80959ad95ac75783babf2a224a7af044a858fa08.tar.gz
nextcloud-server-80959ad95ac75783babf2a224a7af044a858fa08.zip
Merge pull request #24111 from owncloud/chunk-users-in-background-jobs
Chunk the users correctly in the trashbin and versions background job
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/backgroundjob/expiretrash.php51
-rw-r--r--apps/files_trashbin/tests/backgroundjob/expiretrash.php1
2 files changed, 12 insertions, 40 deletions
diff --git a/apps/files_trashbin/lib/backgroundjob/expiretrash.php b/apps/files_trashbin/lib/backgroundjob/expiretrash.php
index 4ee0658840b..8a4e2d41fec 100644
--- a/apps/files_trashbin/lib/backgroundjob/expiretrash.php
+++ b/apps/files_trashbin/lib/backgroundjob/expiretrash.php
@@ -23,6 +23,7 @@
namespace OCA\Files_Trashbin\BackgroundJob;
use OCP\IConfig;
+use OCP\IUser;
use OCP\IUserManager;
use OCA\Files_Trashbin\AppInfo\Application;
use OCA\Files_Trashbin\Expiration;
@@ -31,40 +32,28 @@ use OCA\Files_Trashbin\Trashbin;
class ExpireTrash extends \OC\BackgroundJob\TimedJob {
- const ITEMS_PER_SESSION = 1000;
-
/**
* @var Expiration
*/
private $expiration;
-
- /**
- * @var IConfig
- */
- private $config;
/**
* @var IUserManager
*/
private $userManager;
-
- const USERS_PER_SESSION = 1000;
/**
- * @param IConfig|null $config
* @param IUserManager|null $userManager
* @param Expiration|null $expiration
*/
- public function __construct(IConfig $config = null,
- IUserManager $userManager = null,
+ public function __construct(IUserManager $userManager = null,
Expiration $expiration = null) {
// Run once per 30 minutes
$this->setInterval(60 * 30);
- if (is_null($expiration) || is_null($userManager) || is_null($config)) {
+ if (is_null($expiration) || is_null($userManager)) {
$this->fixDIForJobs();
} else {
- $this->config = $config;
$this->userManager = $userManager;
$this->expiration = $expiration;
}
@@ -72,7 +61,6 @@ class ExpireTrash extends \OC\BackgroundJob\TimedJob {
protected function fixDIForJobs() {
$application = new Application();
- $this->config = \OC::$server->getConfig();
$this->userManager = \OC::$server->getUserManager();
$this->expiration = $application->getContainer()->query('Expiration');
}
@@ -86,26 +74,15 @@ class ExpireTrash extends \OC\BackgroundJob\TimedJob {
if (!$maxAge) {
return;
}
-
- $offset = $this->config->getAppValue('files_trashbin', 'cronjob_user_offset', 0);
- $users = $this->userManager->search('', self::USERS_PER_SESSION, $offset);
- if (!count($users)) {
- // No users found, reset offset and retry
- $offset = 0;
- $users = $this->userManager->search('', self::USERS_PER_SESSION);
- }
-
- $offset += self::USERS_PER_SESSION;
- $this->config->setAppValue('files_trashbin', 'cronjob_user_offset', $offset);
-
- foreach ($users as $user) {
+
+ $this->userManager->callForAllUsers(function(IUser $user) {
$uid = $user->getUID();
if (!$this->setupFS($uid)) {
- continue;
+ return;
}
$dirContent = Helper::getTrashFiles('/', $uid, 'mtime');
Trashbin::deleteExpiredFiles($dirContent, $uid);
- }
+ });
\OC_Util::tearDownFS();
}
@@ -115,20 +92,16 @@ class ExpireTrash extends \OC\BackgroundJob\TimedJob {
* @param string $user
* @return boolean
*/
- private function setupFS($user){
- if (!$this->userManager->userExists($user)) {
- return false;
- }
+ protected function setupFS($user) {
+ \OC_Util::tearDownFS();
+ \OC_Util::setupFS($user);
- //Check if this user has a trashbin directory
+ // Check if this user has a trashbin directory
$view = new \OC\Files\View('/' . $user);
- if (!$view->is_dir('/files_trashbin/files')){
+ if (!$view->is_dir('/files_trashbin/files')) {
return false;
}
- \OC_Util::tearDownFS();
- \OC_Util::setupFS($user);
-
return true;
}
}
diff --git a/apps/files_trashbin/tests/backgroundjob/expiretrash.php b/apps/files_trashbin/tests/backgroundjob/expiretrash.php
index 79fc91884fc..c98a555c929 100644
--- a/apps/files_trashbin/tests/backgroundjob/expiretrash.php
+++ b/apps/files_trashbin/tests/backgroundjob/expiretrash.php
@@ -26,7 +26,6 @@ use \OCA\Files_Trashbin\BackgroundJob\ExpireTrash;
class ExpireTrash_Test extends \Test\TestCase {
public function testConstructAndRun() {
$backgroundJob = new ExpireTrash(
- $this->getMock('OCP\IConfig'),
$this->getMock('OCP\IUserManager'),
$this->getMockBuilder('OCA\Files_Trashbin\Expiration')->disableOriginalConstructor()->getMock()
);