nextcloud/apps/files_trashbin/lib/backgroundjob/expiretrash.php

129 lines
3.2 KiB
PHP
Raw Normal View History

2015-08-11 22:21:32 +03:00
<?php
/**
2015-10-05 21:54:56 +03:00
* @author Lukas Reschke <lukas@owncloud.com>
2015-08-11 22:21:32 +03:00
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCA\Files_Trashbin\BackgroundJob;
2015-09-11 00:24:19 +03:00
use OCP\IConfig;
2015-08-11 22:21:32 +03:00
use OCP\IUserManager;
use OCA\Files_Trashbin\AppInfo\Application;
use OCA\Files_Trashbin\Expiration;
use OCA\Files_Trashbin\Helper;
use OCA\Files_Trashbin\Trashbin;
class ExpireTrash extends \OC\BackgroundJob\TimedJob {
const ITEMS_PER_SESSION = 1000;
/**
* @var Expiration
*/
private $expiration;
/**
2015-09-11 00:24:19 +03:00
* @var IConfig
2015-08-11 22:21:32 +03:00
*/
2015-09-11 00:24:19 +03:00
private $config;
2015-08-11 22:21:32 +03:00
/**
* @var IUserManager
*/
private $userManager;
2015-09-11 00:24:19 +03:00
const USERS_PER_SESSION = 1000;
2015-08-11 22:21:32 +03:00
2015-09-15 15:28:04 +03:00
/**
* @param IConfig|null $config
* @param IUserManager|null $userManager
* @param Expiration|null $expiration
*/
public function __construct(IConfig $config = null,
IUserManager $userManager = null,
Expiration $expiration = null) {
2015-08-11 22:21:32 +03:00
// Run once per 30 minutes
$this->setInterval(60 * 30);
2015-09-11 00:24:19 +03:00
if (is_null($expiration) || is_null($userManager) || is_null($config)) {
2015-08-11 22:21:32 +03:00
$this->fixDIForJobs();
} else {
2015-09-11 00:24:19 +03:00
$this->config = $config;
2015-08-11 22:21:32 +03:00
$this->userManager = $userManager;
$this->expiration = $expiration;
}
}
protected function fixDIForJobs() {
$application = new Application();
2015-09-11 00:24:19 +03:00
$this->config = \OC::$server->getConfig();
2015-08-11 22:21:32 +03:00
$this->userManager = \OC::$server->getUserManager();
$this->expiration = $application->getContainer()->query('Expiration');
}
2015-09-15 15:28:04 +03:00
/**
* @param $argument
* @throws \Exception
*/
2015-08-11 22:21:32 +03:00
protected function run($argument) {
$maxAge = $this->expiration->getMaxAgeAsTimestamp();
if (!$maxAge) {
return;
}
2015-09-11 00:24:19 +03:00
$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);
2015-08-11 22:21:32 +03:00
foreach ($users as $user) {
$uid = $user->getUID();
if (!$this->setupFS($uid)) {
continue;
}
$dirContent = Helper::getTrashFiles('/', $uid, 'mtime');
Trashbin::deleteExpiredFiles($dirContent, $uid);
}
2015-09-11 00:24:19 +03:00
2015-08-11 22:21:32 +03:00
\OC_Util::tearDownFS();
}
/**
* Act on behalf on trash item owner
* @param string $user
* @return boolean
*/
private function setupFS($user){
if (!$this->userManager->userExists($user)) {
return false;
}
\OC_Util::tearDownFS();
\OC_Util::setupFS($user);
return true;
}
}