diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-21 19:22:58 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-21 19:22:58 +0200 |
commit | dbe316f3c5b27f15f34ac8534f47dae491ef8e6b (patch) | |
tree | c4118882a2aa9ce5d4f0ae39721f49c0634a7b18 /lib/private/Repair/DropOldJobs.php | |
parent | e673ff0f330425ac37697e2ce2f262888289b406 (diff) | |
download | nextcloud-server-dbe316f3c5b27f15f34ac8534f47dae491ef8e6b.tar.gz nextcloud-server-dbe316f3c5b27f15f34ac8534f47dae491ef8e6b.zip |
Move \OC\Repair to PSR-4
Diffstat (limited to 'lib/private/Repair/DropOldJobs.php')
-rw-r--r-- | lib/private/Repair/DropOldJobs.php | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/lib/private/Repair/DropOldJobs.php b/lib/private/Repair/DropOldJobs.php new file mode 100644 index 00000000000..594af83e511 --- /dev/null +++ b/lib/private/Repair/DropOldJobs.php @@ -0,0 +1,80 @@ +<?php +/** + * @author Arthur Schiwon <blizzz@owncloud.com> + * @author Joas Schilling <nickvergessen@owncloud.com> + * + * @copyright Copyright (c) 2016, 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 OC\Repair; + +use OC\Hooks\BasicEmitter; +use OC\RepairStep; +use OCP\BackgroundJob\IJobList; + +class DropOldJobs extends BasicEmitter implements RepairStep { + + /** @var IJobList */ + protected $jobList; + + /** + * @param IJobList $jobList + */ + public function __construct(IJobList $jobList) { + $this->jobList = $jobList; + } + + /** + * Returns the step's name + * + * @return string + */ + public function getName() { + return 'Drop old background jobs'; + } + + /** + * Run repair step. + * Must throw exception on error. + * + * @throws \Exception in case of failure + */ + public function run() { + $oldJobs = $this->oldJobs(); + foreach($oldJobs as $job) { + if($this->jobList->has($job['class'], $job['arguments'])) { + $this->jobList->remove($job['class'], $job['arguments']); + } + } + } + + /** + * returns a list of old jobs as an associative array with keys 'class' and + * 'arguments'. + * + * @return array + */ + public function oldJobs() { + return [ + ['class' => 'OC_Cache_FileGlobalGC', 'arguments' => null], + ['class' => 'OC\Cache\FileGlobalGC', 'arguments' => null], + ['class' => 'OCA\Files\BackgroundJob\DeleteOrphanedTagsJob', 'arguments' => null], + ]; + } + + +} |